* {
    box-sizing: border-box;
}
.neon {
    text-shadow: 0 1px 1px #f05323;
}
.lang-shdow:hover {
    box-shadow: 0 0 1px 1px #fff;
}
.text-blue {
    color: #1b334b;
}
.text-orange {
    color: #f05323;
}
header {
    overflow: hidden;
    position: relative;
    /* background: linear-gradient(to right, #1b334b 40%, #f05323); */
    /* background: linear-gradient(45deg, #1b334b 40%, #6a11cb 60%); */
    /* background: linear-gradient(45deg, #f05323 30%, #cd0057 70%); */
    /* background: linear-gradient(-45deg, #f05323, #cd0057, #1b334b); */
    background: linear-gradient(to right bottom,rgba(41,8,48,0.95) 0,rgba(114,183,227,0.95) 50%,rgba(82,65,143,0.95) 100%);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    background-blend-mode: screen;
}

  @keyframes gradient {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
.navbar-toggler {
    box-shadow: 0 0 1px 2px #fff;
}
.custom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
}
.btn-hero {
    box-shadow: -5px -5px 5px rgba(255, 255, 255, 0.2), 5px 5px 5px rgba(0, 0, 0, 0.1);
    color: #cd0057;
    border-radius: 10px;
    text-transform: uppercase;
    z-index: 999999;
}
.btn-hero:hover {
    color: #1b334b;
    box-shadow: -7px -17px 17px rgba(255, 255, 255, 0.2), 17px 17px 17px rgba(0, 0, 0, 0.1);
}
.btn-hero:hover {
    background-color: #fff;
    background-position: right center;
}
.nav-item-custom {
    position: relative;
}
.nav-item-custom::after {
    position: absolute;
    content: "";
    background: linear-gradient(to left, #f05323, #cd0057);
    width: 0;
    left: 0;
    height: 3px;
    bottom: 0;
    transition: width 0.5s ease-in;
}
.nav-item-custom:hover::after {
    width: 100%;
}
.bg-custom {
    background: 0 0;
    transition: 0.75s ease;
}
.bg-custom.scrolled {
    background: #1b334b;
}
.custom-btn-grad {
    background-image: linear-gradient(to bottom right, #f05323, #cd0057);
    flex: 1 1 auto;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: #fff;
    box-shadow: 0 0 20px #eee;
    border-radius: 10px;
}
.custom-btn-grad:hover {
    background-image: linear-gradient(to bottom right, #cd0057, #f05323);
    color: #fff;
}
.text-gradient {
    background: -webkit-linear-gradient(#cd0057, #f05323);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
    .txt-size {
        font-size: 50px;
    }
}
.footer1 {
    background-color: #1b334b;
}

/* FAQ */


.faq {
    border-bottom: 1px solid #ddd;
}
.faq:last-child {
    border-bottom: none;
}
.faq-header {
    padding: 15px 20px;
    cursor: pointer;
    /* background: #f7f7f7; */
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-header:hover {
    background: #eaeaea;
}
.faq-header h2 {
    margin: 0;
    font-size: 1rem;
    color: #333;
}
.faq-header .toggle-icon {
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: #fff;
    padding: 0 20px;
}
.faq-content p {
    margin: 15px 0;
    line-height: 1.6;
}
.faq.active .faq-content {
    max-height: 1000px; /* Ensures content is fully visible */
    padding: 15px 20px;
}
.faq.active .faq-header .toggle-icon {
    transform: rotate(180deg);
}
@media (max-width: 600px) {

    .faq-header h2 {
        font-size: 0.9rem;
    }
    .faq-content p {
        font-size: 0.9rem;
    }
}

.last{
    margin-bottom: 7rem;
}