:root {
    --primary-color: #085ba6;
    /* Deep Blue from reference */
    --secondary-color: #085ba6;
    /* Bright Purple from reference */
    --accent-color: #11b198;
    /* Keeping green as accent */
    --text-dark: #140342;
    --text-light: #6b7280;
    --white: #ffffff;
    --bg-gradient: linear-gradient(135deg, #2b2d72 0%, #4925ce 100%);
}

html {
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Custom Header Styling */
.landing-header {
    padding: 10px 0;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.header-cta {
    white-space: nowrap;
    gap: 5px;
}

.landing-logo img {
    max-width: 210px;
}

.landing-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

.landing-nav ul li a {
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0px;
    white-space: nowrap;
}

.landing-nav ul li a:hover,
.landing-nav ul li a.active {
    color: var(--secondary-color);
}

.landing-nav ul li a.active {
    position: relative;
}

.header-cta .btn-phone {
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.header-cta .btn-phone:hover {
    background: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 191, 66, 0.3);
}

.btn-register {
    background: #10b298;
    /* Orange for contrast */
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 13px;
    transition: 0.3s;
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn-register:hover {
    background: #e85a2b;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 90, 43, 0.3);
}

/* Mobile Menu Toggler */
.landing-mobile-toggler {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    background: #f8fbff;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    border: 1px solid #eee;
}

.mobile-toggler:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .landing-nav ul {
        gap: 10px;
    }

    .landing-nav ul li a {
        font-size: 11px;
    }

    .header-cta .btn-phone span {
        display: none;
    }

    .header-cta .btn-phone {
        padding: 8px 12px;
    }

    .landing-logo img {
        max-width: 140px;
    }
}

@media (max-width: 991px) {
    .landing-nav {
        display: none;
    }

    .landing-mobile-toggler {
        display: flex;
    }
}

/* Mobile Menu Refined */
.landing-mobile-menu {
    position: fixed;
    right: -350px;
    top: 0;
    width: 310px;
    max-width: 100%;
    height: 100%;
    background: #0a0a2e;
    /* Deeper dark */
    z-index: 999999;
    transition: all 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    visibility: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.landing-menu-visible .landing-mobile-menu {
    right: 0;
    visibility: visible;
}

.landing-mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
}

.landing-menu-visible .landing-mobile-menu .menu-backdrop {
    visibility: visible;
    opacity: 1;
}

.landing-mobile-menu .menu-box {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    z-index: 5;
}

.landing-mobile-menu .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 10;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
}

.landing-mobile-menu .close-btn:hover {
    background: var(--secondary-color);
}

.landing-mobile-menu .navigation {
    margin-top: 0px;
    padding: 0 20px;
}

.landing-mobile-menu .navigation li {
    margin-bottom: 5px;
}

.landing-mobile-menu .navigation li a {
    display: block;
    padding: 5px 15px;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0px;
    transition: 0.3s;
    border-radius: 8px;
}

nav.menu-box img {
    width: 170px !important;
}

.landing-mobile-menu .navigation li a:hover,
.landing-mobile-menu .navigation li a.active {
    background: var(--secondary-color);
    color: #fff;
}

.landing-mobile-menu .nav-logo {
    padding: 30px 25px;
}

.mobile-menu .nav-logo img {
    max-width: 180px;
}

.landing-mobile-menu .contact-info {
    padding: 30px 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.landing-mobile-menu .contact-info h4 {
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 800;
}

.landing-mobile-menu .contact-info ul li {
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-mobile-menu .contact-info ul li a {
    color: #e0e0e0;
    text-decoration: none !important;
    font-size: 14px;
    transition: 0.3s;
}

.landing-mobile-menu .contact-info ul li a:hover {
    color: var(--secondary-color);
}

.landing-mobile-menu .social-links {
    padding: 0 35px 30px;
    display: flex;
    gap: 15px;
}

.landing-mobile-menu .social-links li a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
    text-decoration: none !important;
}

.landing-mobile-menu .social-links li a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Section General Styles */
section {
    padding: 80px 0;
    position: relative;
}

.grid-bg {
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.section-title {
    margin-bottom: 60px;
    text-align: center;
}

.section-title h2 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.section-title p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SECTION 1: HERO */
.hero-section {
    background: #fff;
    padding: 40px 0 40px;
    position: relative;
}

.hero-content h1 {
    font-size: 55px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #2a2626;
    font-weight: 400;
}

.hero-content span.highlight {
    font-size: 94% !important;
}

.highlight {
    color: var(--secondary-color);
    font-weight: 600;
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 45px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* PRICING SECTION */
.pricing-sectionsin,
.contact-expert-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: #bfbfbf !important;
    background-image: url(../images/partners/linebackground.webp);
    background-position: center;
    background-repeat: repeat;
    border-top: 1px solid #f3efef;
    border-bottom: 1px solid #f3efef;
}

.pricing-sectionsin h2 {
    font-size: 45px;
    color: #140342;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

.pricing-sectionsin .pricing-description {
    font-size: 19px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.pricing-highlight-card {
    background: linear-gradient(135deg, #140342 0%, #2e3589 100%);
    padding: 50px 45px;
    border-radius: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(20, 3, 66, 0.25);
}

.pricing-highlight-card .card-circle {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pricing-highlight-card .offer-badge {
    background: var(--secondary-color);
    color: #fff;
    display: inline-block;
    padding: 6px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pricing-highlight-card h3 {
    color: #fff !important;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-highlight-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    margin-bottom: 30px;
}

.pricing-highlight-card .claim-btn {
    padding: 18px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* REGISTRATION SECTION */
.form-section,
section#testimonials,
.faq-section {
    padding: 80px 0;
    background: #fff;
    background-image: url(../images/partners/background.png);
    background-position: center;
    background-repeat: repeat;
}

.registration-container-card {
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.registration-info-side {
    background: linear-gradient(135deg, #140342 0%, #2e3589 100%);
    color: #fff;
    padding: 40px 40px !important;
}

.registration-info-side h2 {
    font-weight: 600;
    font-size: 36px;
    color: #fff !important;
    margin-bottom: 25px;
    line-height: 1.2;
}

.registration-info-side p {
    opacity: 0.85;
    font-size: 17px;
    margin-bottom: 40px;
    color: #fff;
    line-height: 1.2;
}

.registration-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.registration-feature-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
}

.registration-feature-item i {
    color: white;
    font-size: 20px;
}

.registration-feature-item span {
    font-weight: 600;
    font-size: 16px;
}

.registration-form-side {
    padding: 40px 60px !important;
    background: #fff;
}

.registration-form-side h3 {
    color: #140342;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
}

.registration-form-side p.mb-4 {
    color: #666;
    font-size: 16px;
    margin-bottom: 35px !important;
}

.registration-form-side label {
    font-size: 12px;
    font-weight: 700;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block;
    line-height: 1;
}

.form-group {
    margin-bottom: 10px !important;
}

.registration-form-side .modern-input {
    outline: none;
    border: 1px solid #f1f3f5 !important;
    border-radius: 5px !important;
    padding: 10px !important;
    height: 50px !important;
    margin: 0px !important;
    line-height: 20px !important;
}

small.cin {
    line-height: 1 !important;
    font-size: 12px;
}

.registration-form-side textarea.modern-input {
    height: 120px !important;
}

.registration-submit-btn {
    padding: 13px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    height: 55px !important;
    border: none !important;
}

.registration-form-side .alert {
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Floating Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-icon {
    animation: float 4s ease-in-out infinite;
}

.team-block-one .inner-box .image-box img {
    width: 90% !important;
}

/* SECTION 2: PARTNERS */
.partners-section {
    background: #fdfdfd;
    border-top: 1px solid #f1f3f5;
    border-bottom: 1px solid #f1f3f5;
    padding: 50px 0;
}

/* ABOUT SECTION */
.about-master-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(8, 91, 166, 0.05);
}

.about-image-wrapper {
    height: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text-content {
    padding: 30px 30px 50px 30px;
}

@media (max-width: 991px) {
    .about-text-content {
        padding: 20px;
    }

    .about-master-card {
        border-radius: 25px;
    }
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logos span {
    font-size: 28px;
    font-weight: 900;
    color: #d1d5db;
    transition: 0.3s;
}

.partner-logos span:hover {
    color: var(--primary-color);
}

/* REGISTRATION FORM CONTAINER (Old version, kept for compatibility if needed) */
.registration-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 30px 100px rgba(43, 45, 114, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-info {
    background: var(--bg-gradient);
    color: #fff;
    padding: 60px;
    width: 40%;
}

.form-wrapper {
    padding: 60px;
    width: 60%;
}

/* STUDENT SUCCESS WALL - 3D PERSPECTIVE STYLE */
.success-wall-wrapper {
    perspective: 1500px;
    overflow: hidden;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    position: relative;
}

.success-wall-container {
    display: flex;
    gap: 20px;
    transform: rotateY(-25deg) rotateX(10deg) skewY(5deg);
    transform-style: preserve-3d;
    padding: 50px;
    transition: 0.5s ease;
}

.success-column {
    display: flex;
    flex-direction: column;
    width: 180px;
    padding: 0;
    margin: 0;
}

.col-left {
    animation: scroll-up 100s linear infinite;
}

.col-mid {
    animation: scroll-down 50s linear infinite;
    margin-top: -100px;
}

.col-right {
    animation: scroll-up 90s linear infinite;
}

@keyframes scroll-up {
    0% {
        transform: translateZ(0) translateY(0);
    }

    100% {
        transform: translateZ(0) translateY(-50%);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateZ(0) translateY(-50%);
    }

    100% {
        transform: translateZ(0) translateY(0);
    }
}

.student-card {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.student-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.student-card-info {
    padding: 12px;
    text-align: center;
    background: #fff;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.student-card-info h6 {
    font-size: 14px;
    margin-bottom: 0px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1;
}

.student-card-info p {
    font-size: 11px;
    color: var(--accent-color);
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
}

.modern-input {
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 20px;
    border: 2px solid #f1f3f5;
    border-radius: 12px;
    transition: 0.3s;
    background: #f8f9fa;
    font-weight: 500;
}

.modern-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    background: #fff;
    box-shadow: 0 5px 15px rgba(73, 37, 206, 0.1);
}

.border-radius-20 {
    border-radius: 20px;
}

.color-primary {
    color: var(--primary-color);
}

.max-width-800 {
    max-width: 800px;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 32px;
        font-weight: bold;
    }

    .hero-content .btn-box {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 10px;
    }

    .rating-box.mt-5 {
        margin: 14px 0px !important;
    }

    .hero-content .btn-box a {
        font-size: 12px !important;
        padding: 6px 9px !important;
        width: 50%;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 23px;
        font-size: 16px;
    }

    .hero-btns {
        justify-content: center;
    }

    .registration-container-card {
        flex-direction: column;
    }

    .registration-info-side,
    .registration-form-side {
        width: 100%;
        padding: 50px 30px !important;
    }

    .success-wall-wrapper {
        height: 400px;
        margin-top: 20px;
        perspective: none;
    }

    .pricing-sectionsin h2 {
        font-size: 28px !important;
    }

    .success-wall-container {
        transform: none;
        padding: 20px;
        gap: 10px;
    }

    .success-column {
        width: 33.33%;
        gap: 10px;
    }

    .col-mid {
        margin-top: -30px;
    }
}

/* RATING BOX REDESIGN */
.rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar-group img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -18px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stars {
    color: #ffb400;
    font-size: 15px;
    display: flex;
    gap: 2px;
}

.star-partial {
    position: relative;
    display: inline-block;
    color: #e0e0e0;
}

.star-partial::after {
    content: "\f005";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 90%;
    overflow: hidden;
    color: #ffb400;
}

.rating-text {
    font-size: 16px;
    color: #2a2626;
    line-height: 1;
}

.rating-score {
    font-size: 18px;
    font-weight: 800;
    margin-right: 5px;
}

.rating-count {
    color: #666;
    font-size: 14px;
}

section#about {
    background: #142d54;
    padding: 80px 0px;
}

/* Custom Dots for Testimonial Carousel */
.three-item-carousel .owl-dots {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.three-item-carousel .owl-dots .owl-dot {
    outline: none;
}

.three-item-carousel .owl-dots .owl-dot span {
    width: 10px !important;
    height: 10px !important;
    background: #d1d5db;
    border-radius: 50%;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.three-item-carousel .owl-dots .owl-dot.active span {
    background: var(--primary-color);
}

/* WHY CHOOSE SECTION REDESIGN */
.why-choose-section {
    padding: 80px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(8, 91, 166, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.why-choose-content h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.google-brand img {
    width: 150px !important;
}

.why-choose-content p {
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefit-card-wrapper {
    border-radius: 30px;
    padding: 45px;
    box-shadow: 0 40px 80px rgba(8, 91, 166, 0.1);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(8, 91, 166, 0.05);
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, #140342 0%, #2e3589 100%);
    color: #fff;
}

.benefit-card-wrapper:hover {
    transform: translateY(-5px);
}

.benefit-card-wrapper h4 {
    font-size: 26px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: #f8fbff;
    border-radius: 5px;
    transition: 0.3s;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: #fff;
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(17, 177, 152, 0.1);
}

.feature-item i {
    font-size: 18px;
    color: var(--accent-color);
    width: 35px;
    height: 35px;
    background: rgba(17, 177, 152, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 991px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .pricing-highlight-card,
    .registration-info-side,
    .registration-form-side {
        border-radius: 10px !important;
        padding: 20px !important;
    }

    .benefit-card-wrapper {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .benefit-card-wrapper h4 {
        font-size: 22px;
        text-align: center;
    }
}

.text-secondary {
    color: #10b298 !important;
    letter-spacing: 0px !important;
    font-weight: 500 !important;
}

/* REVIEW & HUB COMBINED SECTION */
.review-hub-section {
    padding: 80px 0;
    position: relative;
    background: #142d54;
    /* Very dark background */
}

.review-card-box {
    background: #fff;
    border-radius: 25px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    color: var(--text-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card-box .google-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-box .rating-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.review-card-box .rating-value .score {
    font-size: 60px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.review-card-box .stars {
    color: #ffb400;
    font-size: 24px;
}

.review-card-box .review-stats {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #4b5563;
    line-height: 1.4;
}

.review-card-box .excellent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0fdf4;
    color: #16a34a;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #dcfce7;
}

.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 15px;
    margin-top: 25px;
    transition: 0.3s;
    border-bottom: 2px solid transparent;
}

.view-reviews-btn:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
    gap: 15px;
}

.hub-text-content {
    border-left: 2px solid rgba(255, 255, 255, 0.05);
}

.hub-text-content h2 {
    font-size: 42px;
    line-height: 1.2;
}

.hub-text-content p {
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .review-hub-section {
        padding: 70px 0;
    }

    .hub-text-content {
        border-left: none;
        padding-left: 0 !important;
        margin-top: 60px;
        text-align: center;
    }

    .review-card-box {
        max-width: 420px;
        margin: 0 auto;
        padding: 35px 25px;
    }

    .hub-text-content h2 {
        font-size: 32px;
    }

    .hub-text-content p {
        font-size: 17px;
    }
}

/* CONTACT EXPERT SECTION */
.contact-method-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 9px 15px;
    border-radius: 20px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fcfcfc;
    border: 1px solid #f4f4f4;
}

.contact-method-item:hover {
    background: #f8fbff;
    transform: translateX(10px);
}

.contact-method-item .icon-box {
    width: 65px;
    height: 65px;
    background: #f1f3f5;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-method-item:hover .icon-box {
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
}

.contact-method-item .text-box h6 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 5px;
}

.contact-method-item .text-box h4 a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 24px;
    font-weight: 800;
    transition: 0.3s;
}

.contact-method-item .text-box h4 a:hover {
    color: var(--primary-color);
}

.contact-method-item .text-box p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.5;
}

.waitlist-cta-card {
    background: linear-gradient(135deg, #140342 0%, #2e3589 100%);
    padding: 55px 45px;
    border-radius: 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(20, 3, 66, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.waitlist-cta-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.waitlist-cta-card h3 {
    color: #fff !important;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.waitlist-cta-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 17px;
    margin-bottom: 35px;
}

.batch-info-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(17, 177, 152, 0.15);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 35px;
    border: 1px solid rgba(17, 177, 152, 0.3);
}

.batch-info-tag i {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .contact-expert-section {
        padding: 70px 0;
    }

    .contact-info-content {
        margin-bottom: 60px;
        text-align: center;
    }

    .contact-method-item {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .contact-method-item:hover {
        transform: translateY(-5px);
    }

    .waitlist-cta-card {
        padding: 45px 30px;
    }

    .waitlist-cta-card h3 {
        font-size: 28px;
    }
}

/* FAQ SECTION REDESIGN */


.faq-image-wrapper img {
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    background: white;
    padding: 0px 0px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.accordion-item {
    background: #fff;
    border-radius: 15px;
    border: 1px solid #f1f3f5;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.accordion-header h5 {
    font-size: 17px;
    margin-bottom: 0;
    color: var(--text-dark);
    font-weight: 700;
}

.accordion-header i {
    font-size: 15px;
    color: var(--primary-color);
    transition: 0.4s;
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
}

.accordion-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    padding-bottom: 25px;
}

.accordion-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(8, 91, 166, 0.08);
}

.accordion-item.active .accordion-header {
    background: #f8fbff;
}

.accordion-item.active .accordion-body {
    max-height: 1000px;
    transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.accordion-item.active .accordion-header i {
    transform: rotate(135deg);
    color: var(--secondary-color);
}

@media (max-width: 991px) {
    .faq-section {
        padding: 70px 0;
    }

    .faq-image-wrapper {
        margin-bottom: 50px;
        text-align: center;
    }

    .faq-content-wrapper {
        padding-left: 0 !important;
    }

    .accordion-header {
        padding: 18px 20px;
    }

    .accordion-header h5 {
        font-size: 15px;
    }
}

/* TEAM STYLE TWO PATTERN */
.team-style-two .pattern-layer {
    background-image: url(../images/logobackground.webp);
}

/* CONTACT INFO CONTENT */
.contact-info-content p {
    font-size: 18px;
    line-height: 1.6;
}



.landing-footer {
    padding: 80px 0 50px;
    background: #0a0a2e;
    /* Deep dark blue matching mobile menu */
    color: #cbd5e0;
    position: relative;
    overflow: hidden;
}

.landing-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
}

.landing-footer .footer-logo img {
    filter: brightness(0) invert(1);
    /* Make logo white for dark theme */
    max-width: 200px;
    transition: 0.3s;
}

.landing-footer .footer-logo img:hover {
    transform: scale(1.02);
}

.footer-nav a {
    color: #a0aec0;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.social-links-footer a {
    font-size: 20px;
    color: #a0aec0 !important;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.social-links-footer a:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-5px);
}

.footer-bottom-text {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    margin-top: 30px;
    font-size: 13px;
}

/* REGISTRATION MODAL STYLES */
.registration-modal {
    border-radius: 20px;
    overflow: hidden;
}

.modern-close {
    font-size: 30px;
    color: #140342;
    opacity: 0.5;
    transition: 0.3s;
    outline: none !important;
}

.modern-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.registration-modal .modern-input {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 20px;
    height: auto;
    font-size: 15px;
    transition: 0.3s;
}

.registration-modal .modern-input:focus {
    background: #fff;
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(114, 191, 66, 0.1);
}

.registration-modal .theme-btn-two {
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.registration-modal .theme-btn-two:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(114, 191, 66, 0.3);
}

.registration-modal .form-loader-overlay {
    border-radius: 20px;
}

/* FORM LOADER STYLES */
.registration-form-wrapper {
    position: relative;
}

.form-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-content p {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pt-0 {
    padding-top: 0px !important;
}