html,
body {
    font-family: "Nunito", sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e3e6f3 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: none;
}

.header::before {
    display: none;
}

/* Modern Glassmorphism Navbar Design */
.navbar-custom {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 20px !important;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.37),
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    margin: 15px auto !important;
    max-width: 95% !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: visible !important;
}

.navbar-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
    z-index: -1;
}

.navbar-custom:hover {
    transform: translateY(-2px) !important;
    box-shadow:
        0 12px 40px rgba(31, 38, 135, 0.45),
        0 8px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.navbar-custom .navbar-brand.logo {
    color: #2c3e50 !important;
    font-size: 2.8rem !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.navbar-custom .navbar-brand.logo:hover {
    transform: scale(1.05) !important;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2) !important;
}

.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 600 !important;
    border-radius: 15px !important;
    padding: 12px 20px !important;
    margin: 0 5px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    position: relative !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #667eea !important;
    background: rgba(255, 255, 255, 0.25) !important;
    box-shadow:
        0 4px 15px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    transform: translateY(-2px) !important;
    border: 1px solid rgba(102, 126, 234, 0.3) !important;
}

.navbar-nav .nav-link i {
    font-size: 1.1em !important;
    transition: transform 0.3s ease !important;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.2) !important;
}

.navbar-nav .dropdown-menu {
    position: fixed !important;
    z-index: 99999 !important;
    left: unset !important;
    right: unset !important;
    top: 70px !important;
    /* Adjust if needed */
    min-width: 220px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 20px !important;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.37),
        0 4px 16px rgba(0, 0, 0, 0.1) !important;
    padding: 10px 0 !important;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-top: 10px !important;
    position: absolute !important;
    z-index: 99999 !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.dropdown-item {
    border-radius: 12px !important;
    margin: 2px 8px !important;
    padding: 12px 16px !important;
    transition: all 0.3s ease !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    color: #2c3e50 !important;
    position: relative !important;
    overflow: hidden !important;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2) !important;
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-item:hover {
    background: transparent !important;
    color: #fff !important;
    transform: translateX(5px) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3) !important;
}

.dropdown-item:hover::before {
    width: 100%;
}

.btn-trial {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #fff !important;
    border-radius: 20px !important;
    font-weight: 700 !important;
    border: none !important;
    padding: 12px 24px !important;
    box-shadow:
        0 4px 15px rgba(102, 126, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
}

.btn-trial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-trial:hover::before {
    left: 100%;
}

.btn-trial:hover,
.btn-trial:focus {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow:
        0 8px 25px rgba(102, 126, 234, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

/* Flag icon styles */
#selectedFlag,
.dropdown-item img {
    border-radius: 50% !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

#selectedFlag:hover,
.dropdown-item img:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

/* Navbar toggler for mobile */
.navbar-toggler {
    border: none !important;
    padding: 8px !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease !important;
}

.navbar-toggler:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05) !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3) !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 62, 80, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 24px !important;
    height: 24px !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-custom {
        margin: 10px !important;
        border-radius: 15px !important;
    }

    .navbar-nav .nav-link {
        padding: 15px 20px !important;
        margin: 5px 0 !important;
        border-radius: 12px !important;
    }

    .btn-trial {
        margin-top: 10px !important;
        width: 100% !important;
    }

    .navbar-nav {
        padding: 15px 0 !important;
    }
}

@media (max-width: 575.98px) {
    .navbar-custom {
        margin: 5px !important;
        border-radius: 12px !important;
    }

    .navbar-brand.logo {
        font-size: 2rem !important;
    }

    .navbar-nav .nav-link {
        padding: 12px 16px !important;
    }
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: black;
    background-color: white !important;
}

.logo {
    color: white;
    font-size: 50px;
    font-weight: 800 !important;
    padding: 0;
}

.logo:hover {
    color: white;
}

.navbar-nav .nav-item {
    margin-right: 25px;
}

.nav-item .dropdown-menu {
    background-color: white;
}

.nav-item .dropdown-item {
    color: #333;
}

.cdimg {
    width: 200px !important;
}

.cdimg3 {
    width: 150px !important;
}

.cdimg2 {
    width: 100px !important;
}

.t1 {
    font-size: 50px;
    font-weight: 700;
}

.cd {
    height: 380px;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 24px solid;
    outline: 3px solid white;
    outline-offset: -18px;
    border-image: linear-gradient(to bottom right, #667eea, #764ba2) 1;
}

.card.cd {
    position: relative;
}

.swiper {
    width: 300px;
    height: 400px;

}

.swiper-slide {
    background-position: center;
    background-size: cover;
}

.swiper-slide img {
    display: block;
    width: 100%;
}

.cb {
    font-weight: 800;
    position: absolute;
    Bottom: 50px;
    text-align: center;
}

.crd {
    border: none;
    padding: 40px;
}

.btn1 {
    background-color: #333333;
    color: white;
    padding: 10px;
    width: 120px;
}

.btn1:hover {
    background-color: #797979;
    color: white;
    padding: 10px;
    width: 120px;
}

.btn2 {
    background-color: #282828 !important;
    color: white !important;
    padding: 10px;
    width: 130px;
    border: 1px solid #282828 !important;
}

.btn2:hover {
    background-color: #6e6e6e;
    box-shadow: 0 0 8px rgba(70, 70, 70, 0.8);
    color: white;
}

.t2 {
    font-size: 40px;
    font-weight: 700;
    color: black;
}

.accordion-button {
    color: white !important;

}

.accordion-button::after {
    content: none;
}

.accordion-button::before {
    content: '\002B';
    font-size: 1.2rem;
    position: absolute;
    right: 20px;
    font-size: 25px;
    color: white !important;

}

.accordion-button:not(.collapsed)::before {
    content: '\2212';
    color: white !important;


}

.accordion-button {
    color: white !important;
    background: linear-gradient(to right, #DE6262, #FFB88C) !important;
    margin: 15px 0px;
    padding: 25px 15px;
    border-radius: 0px !important;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.2) !important;

}

.accordion-item {
    background: transparent !important;
    border: none !important;
}

.accordion-button:focus {
    z-index: 0;
    outline: 0;
    box-shadow: none;
}

.accordion-body ul li a {
    color: black;
    text-decoration: none;
}


.accordion-body ul li a:hover {
    text-decoration: underline;
}



.t3 {
    font-size: 80px;
    font-weight: 700;
}





.VIpgJd-ZVi9od-ORHb-OEVmcd {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget-icon {
    display: none !important;
}

.goog-te-menu-frame {
    display: none !important;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.goog-te-banner-frame {
    display: none !important;
}

.goog-tooltip {
    display: none !important;
}

.goog-tooltip:hover {
    display: none !important;
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}


.goog-te-combo {
    display: none !important;
}

.img1 {
    width: 400px;
    float: right;
}

.img2 {
    width: 400px;
    float: left;
}


@media screen and (max-width: 767px) {
    .img1 {
        width: 400px;
        float: none;
        margin: 0px 0px 20px 0px !important;
    }

    .img2 {
        width: 400px;
        float: none;
        margin: 0px 0px 20px 0px !important;
    }

    .crd {
        padding: 20px !important;
    }


}

/* Footer Styles */
.footer {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* border-radius: px 0 0; */
    box-shadow: 0 -8px 32px rgba(102, 126, 234, 0.40), 0 2px 8px rgba(0, 0, 0, 0.20);
    border-top: 2px solid rgba(102, 126, 234, 0.20);
    margin-top: 80px;
    padding: 48px 0 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    z-index: 0;
    pointer-events: none;
}

.footer h1,
.footer h5 {
    color: #667eea !important;
    font-weight: 800;
    letter-spacing: 1px;
    z-index: 1;
    position: relative;
}

.footer .text-white-50,
.footer p,
.footer ul li a {
    color: #2c3e50cc !important;
    font-weight: 500;
    z-index: 1;
    position: relative;
}

.footer .input-group .form-control {
    background: rgba(255, 255, 255, 0.7);
    border: 1.5px solid #667eea33;
    border-radius: 18px 0 0 18px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    color: #2c3e50;
    font-weight: 600;
    padding: 12px 16px;
    transition: border 0.2s, box-shadow 0.2s;
}

.footer .input-group .form-control:focus {
    border: 1.5px solid #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    outline: none;
}

.footer .input-group .btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 0 18px 18px 0;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.10);
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    padding: 12px 20px;
}

.footer .input-group .btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.10);
    color: #667eea;
    font-size: 1.4rem;
    margin-right: 10px;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    position: relative;
    z-index: 1;
}

.footer .social-icons a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.18);
}

.footer-bottom {
    background: rgba(102, 126, 234, 0.10);
    /* border-radius: 0 0 32px 32px; */
    box-shadow: 0 -2px 8px rgba(102, 126, 234, 0.06);
    margin-top: 32px;
    padding: 18px 0 8px 0;
    position: relative;
    z-index: 1;
}

.footer .hover-effect:hover {
    color: #667eea !important;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .footer {
        border-radius: 18px 18px 0 0;
        padding: 32px 0 0 0;
    }

    .footer-bottom {
        border-radius: 0 0 18px 18px;
        margin-top: 18px;
        padding: 12px 0 6px 0;
    }
}

.container,
.row,
nav,
.navbar-custom {
    overflow: visible !important;
    z-index: auto !important;
}

.container,
.row,
.card,
section,
main,
.card-body,
.accordion,
.accordion-item {
    position: static !important;
    z-index: auto !important;
}

/* Modern FAQ Design */
.custom-faq {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(102, 126, 234, 0.10), 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 25px;
    border: 1px solid rgba(102, 126, 234, 0.10);
    overflow: hidden;
    padding: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 18px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.faq-btn {
    background: transparent !important;
    border: none !important;
    color: #2c3e50 !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    padding: 20px 25px !important;
    border-radius: 18px !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.faq-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.faq-btn:hover::before {
    left: 100%;
}

.faq-btn:hover {
    color: #667eea !important;
    background: rgba(102, 126, 234, 0.05) !important;
    transform: translateX(5px);
}

.faq-btn:not(.collapsed) {
    color: #667eea !important;
    background: rgba(102, 126, 234, 0.1) !important;
    box-shadow: inset 0 2px 8px rgba(102, 126, 234, 0.1);
}

.faq-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.faq-btn:not(.collapsed) i {
    transform: scale(1.1);
}

.faq-body {
    background: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(102, 126, 234, 0.1);
    padding: 20px 25px !important;
    color: #2c3e50 !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
    position: relative;
}

.faq-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    border-radius: 0 2px 2px 0;
}

/* FAQ Animation */
.accordion-collapse {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.accordion-collapse.show {
    animation: slideDownFAQ 0.4s ease-out;
}

@keyframes slideDownFAQ {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .custom-faq {
        padding: 15px;
        border-radius: 20px;
    }

    .faq-btn {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .faq-body {
        padding: 15px 20px !important;
    }
}