/* ============================================
   KODEESWARI - EXACT DESIGN MATCH
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Geom:ital,wght@0,300..900;1,300..900&family=Inter:wght@400;700;800&display=swap');
@import url('webfonts/stylesheet.css');

:root {
    --purple: #5a2a5c;
    /* primary dark purple */
    --purple-mid: #5e1f60;
    --purple-light: #fdc1ff;
    /* hero/section bg tint */
    --gold: #f5a800;
    /* golden yellow */
    --gold-dark: #d9940a;
    --text-dark: #2a2a2a;
    --text-body: #000;
    --text-light: #666666;
    --white: #ffffff;
    --bg-cream: #fdf8f4;
    /* hero background */
    --bg-section: #faf7fc;
    /* features section bg */
    --border-r: 20px;
    --font: 'Geom', sans-serif;
    --font-title: 'Altersan', sans-serif;
    --font-secondary: 'Altersan-Regular', sans-serif;
    --font-count: 'Inter', sans-serif;
    --shadow: 0 8px 32px rgba(92, 45, 126, 0.10);
}

/* Currency Styling */
.currency-wrap {
    display: inline-flex;
    align-items: baseline;
}

.rupee-sign {
    font-family: var(--font-count);
    /* Using Inter for better ₹ symbol support */
    margin-right: 3px;
    font-weight: 400;
    /* Lighter weight for the symbol looks more elegant */
}

.count-val {
    font-family: var(--font-count);
    font-weight: 700;
    /* Balanced with Altersan bold */
    letter-spacing: -0.5px;
}


/* ==================== RESET ==================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
}

body.loader-active {
    overflow: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6,
.features-heading {
    font-family: var(--font-title);
}

a {
    text-decoration: none !important;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== PAGE LOADER ==================== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    overflow: hidden;
}

.loader-curtain {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--purple);
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.loader-curtain.top {
    top: 0;
}

.loader-curtain.bottom {
    bottom: 0;
}

.loader-content {
    position: relative;
    z-index: 2;
    margin: auto;
    text-align: center;
    transition: opacity 0.5s ease;
}

.loader-logo img {
    width: 280px;
    height: auto;
    margin-bottom: 30px;
    /* Invert logo if it's dark on purple, but based on header it's likely a white version is needed or the purple is the brand color. 
       Let's assume the logo should be visible. */
    filter: brightness(0) invert(1);
    /* Since it's on purple, make it white */
}

.loader-progress {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.4s ease;
}

/* Loaded State */
.page-loader.loaded {
    pointer-events: none;
}

.page-loader.loaded .loader-content {
    opacity: 0;
}

.page-loader.loaded .loader-curtain.top {
    transform: translateY(-100%);
}

.page-loader.loaded .loader-curtain.bottom {
    transform: translateY(100%);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translate(0, 0) scale(1) !important;
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-down {
    transform: translateY(-60px);
}

.reveal-left {
    transform: translateX(-60px);
}

.reveal-right {
    transform: translateX(60px);
}

.reveal-scale {
    transform: scale(0.85);
}

/* Delay Utilities */
.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}


/* ==================== HEADER ==================== */
.main-header {
    background: url(../images/header-curve.png) no-repeat center center;
    background-size: cover;
    padding: 8px 0 80px;
    position: sticky;
    top: 0;
    z-index: 100;
    background-size: 110%;
    background-repeat: no-repeat;
    background-position: bottom center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.site-logo {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: var(--purple);
    text-transform: uppercase;
    line-height: 1;
    width: 300px;
}

.site-logo span {
    font-style: italic;
    font-weight: 900;
    color: var(--purple);
    font-size: 1.4rem;
}

/* Nav */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

.mobile-only {
    display: none;
}

.main-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-body);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.25s;
    padding: 4px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--purple);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--purple);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a.active {
    background: var(--purple);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 20px;
}

.main-nav a.active:hover {
    color: var(--white);
}

.main-nav a.active::after {
    display: none;
}

/* Submenu Styles */
.main-nav .has-submenu {
    position: relative;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.main-nav .submenu {
    position: absolute;
    top: 45%;
    left: 70px;
    transform: translateX(-50%);
    background: transparent;
    padding: 10px 0;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
    z-index: 99;
}

.main-nav .has-submenu:hover .submenu {
    display: flex;
}

.main-nav .submenu li {
    width: 100%;
    text-align: left;
}

.main-nav .submenu a {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: transparent;
    color: var(--purple);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.main-nav .submenu a::after {
    display: none;
}

.main-nav .submenu a:hover,
.main-nav .submenu a.active {
    background: #a980a3;
    color: var(--white);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    font-family: var(--font);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
    border-radius: 50px;
}

.btn-primary {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    padding: 10px 15px;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--purple-mid);
    border-color: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 45, 126, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--purple);
    border-color: var(--purple);
    padding: 10px 15px;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--purple);
    border-color: var(--gold);
    padding: 4px 25px;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 18px rgba(245, 168, 0, 0.4);
    border-radius: 15px;
}

.btn-gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 168, 0, 0.5);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* subtle wave/curve at bottom */
.hero-section::after {
    content: '';
    display: block;
    height: 60px;
    background: var(--white);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    margin-top: 0;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 40px;
    padding-top: 50px;
}

.hero-content {
    animation: fadeUp 0.9s ease-out both;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.22;
    color: var(--text-body);
    margin-bottom: 6px;
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.4;
    padding-right: 200px;
}

.hero-desc {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-body);
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

/* Hero image side */
.hero-image-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    animation: fadeLeft 0.9s ease-out 0.2s both;
}

/* The big circle behind the woman */
.hero-image-wrap::before {
    content: none;
    position: absolute;
    width: 360px;
    height: 360px;
    background: #e8d8c8;
    border-radius: 50%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.hero-image-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-wrap img {
    position: relative;
    z-index: 1;
    max-height: 480px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
    padding: 70px 0 60px;
    text-align: center;
    background: var(--white);
}

.features-heading {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease-out both;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 36px;
    margin-bottom: 36px;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.25s, transform 0.25s;
}

.feature-chip:hover {
    color: var(--purple-mid);
    transform: translateY(-2px);
}

.diamond {
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.features-tagline {
    font-size: 2.5rem;
    font-weight: bold;
    font-style: normal;
    color: var(--purple);
}

/* ==================== ABOUT SECTION ==================== */
.about-section {
    padding: 50px 0 70px;
    background: var(--white);
}

.about-card {
    background: #f7f7f7 url(../images/triangle-shape.png) no-repeat bottom center;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    animation: fadeUp 0.9s ease-out both;
    background-size: 100%;
    background-position: 140px -38px;
}

/* Purple right panel with concave scooped-in left curve */
.about-card::after {
    content: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 48%;
    height: 100%;
    background: var(--purple);
    border-radius: 50% 0 0 50% / 50% 0 0 50%;
    z-index: 0;
}

.about-text {
    padding: 40px;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.5;
}

/* About image area */
.about-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    padding: 20px 40px 0 0;
}

/* No manual dashed circle needed because the asset PNG includes it */
.about-image-wrap::before {
    content: none;
}

.about-image-wrap img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

/* Fallback placeholder */
.about-placeholder {
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    border: 3px dashed rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-align: center;
    font-weight: 600;
    padding: 20px;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 40px 0 80px;
    background: var(--white);
}

.cta-wrapper {
    position: relative;
    display: block;
    width: 80%;
    margin: 0 auto;
}

/* Yellow shadow/bar underneath */
.cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 99%;
    height: 100px;
    background: var(--gold);
    border-radius: 60px;
    z-index: 0;
}

.cta-box {
    background: var(--purple);
    border-radius: 35px;
    padding: 30px 40px 45px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.9s ease-out both;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 28px;
}

/* ==================== FOOTER ==================== */
.main-footer {
    background: var(--purple);
    color: var(--white);
    text-align: center;
    padding: 64px 0 28px;
    position: relative;
    margin-top: 60px;
}

/* Decorative circles top-right */
.footer-circles {
    position: absolute;
    top: -40px;
    right: 0px;
    width: 110px;
    height: 110px;
}

.footer-circles .c-light {
    position: absolute;
    top: -70px;
    right: 0;
    width: 220px;
    height: 220px;
    background: #e8dacf;
    border-radius: 50%;
    z-index: 1;
}

.footer-circles .c-gold {
    position: absolute;
    top: -15px;
    right: 150px;
    width: 120px;
    height: 120px;
    background: var(--gold);
    border-radius: 50%;
    z-index: 2;
}

/* Left small orange dot */
.footer-dot-left {
    position: absolute;
    top: 50%;
    left: -30px;
    width: 58px;
    height: 58px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.85;
}

.footer-logo-badge {
    display: inline-block;
    background: var(--white);
    color: var(--purple);
    font-size: 1.3rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 16px;
    border-radius: 30px;
    margin-bottom: 28px;
}

.footer-logo-badge img {
    width: 280px;
}

.footer-logo-badge span {
    font-style: italic;
}

.footer-contact {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--white);
    display: flex;
    grid-gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.whatsup-contact {
        display: flex;
    color: #fff;
    grid-gap: 10px;
    align-items: center;
}
.whatsup-contact img {width: 40px;
    vertical-align: middle;
    display: flex;
    max-width: max-content;}

.footer-address {
    font-size: 1.6rem;
    line-height: 1.6;
}

.footer-copy {
    font-size: 1.6rem;
    padding-top: 12px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: transform 0.3s ease;
}

.footer-social a img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer-social a:hover {
    transform: translateY(-4px);
}

/* ==================== SUCCESS STORIES ==================== */
.success-page {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 50px;
    text-align: left;
}

.testimonials-swiper {
    padding-top: 20px;
    padding-bottom: 60px !important;
    margin-bottom: 50px;
    overflow: hidden;
}

.testimonial-card {
    background: #d3c2ce;
    width: 100%;
    padding: 40px 40px 50px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transform: scale(0.85);
    color: white;
    transition: all 0.4s ease;
    box-sizing: border-box;
    opacity: 0.5;
    z-index: 1;
}

.swiper-slide-active .testimonial-card {
    background: var(--purple);
    z-index: 20;
    transform: scale(1);
    box-shadow: 0 30px 60px rgba(90, 42, 92, 0.4);
    opacity: 1;
}

.swiper-slide-active .testimonial-card .testim-info h4 {
    color: var(--gold);
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 20%;
    transform: translateX(-50%);
    border-width: 45px 45px 0;
    border-style: solid;
    border-color: #d3c2ce transparent transparent transparent;
    transition: all 0.4s ease;
}

.swiper-slide-active .testimonial-card::after {
    border-color: var(--purple) transparent transparent transparent;
}

.testim-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.testim-avatar {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.testim-info h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 3px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.testim-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.testim-stars {
    color: #e2e2e2;
    font-size: 2rem;
    letter-spacing: 5px;
}

.testim-stars span {
    color: var(--gold);
}

.testim-body p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Swiper Overrides */
.swiper-button-next,
.swiper-button-prev {
    color: var(--purple) !important;
}

.swiper-pagination-bullet-active {
    background: var(--purple) !important;
}

.success-cta-banner {
    background: var(--purple);
    border-radius: 60px;
    /* More rounded as per design */
    padding: 85px 50px;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.success-cta-banner h3 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    /* No lines by the title in latest design */
}

.btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.btn-wrapper::before,
.btn-wrapper::after {
    content: '';
    height: 2px;
    background: var(--gold);
    flex-grow: 1;
}

.btn-wrapper::before {
    margin-right: -15px;
}

.btn-wrapper::after {
    margin-left: -15px;
}

.cta-btn {
    font-size: 2.2rem;
    padding: 10px 60px;
    border-radius: 15px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--white) !important;
    background: #f1a400;
    /* Matching the exact orange-yellow */
    box-shadow: 0 4px 15px rgba(245, 168, 0, 0.4);
    z-index: 2;
}

.arrows {
    color: var(--gold);
    font-size: 2.4rem;
    letter-spacing: -6px;
    margin: 0 20px;
    display: flex;
    align-items: center;
    line-height: 1;
}

/* Use the double triangles if possible in HTML, or style them here */
.arrows {
    font-family: 'Inter', sans-serif;
}

/* ==================== IMAGE FALLBACK ==================== */
.hero-placeholder {
    width: 320px;
    height: 320px;
    background: rgba(92, 45, 126, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image-wrap::before {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 820px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        padding-bottom: 20px;
    }

    .hero-buttons {
        align-items: center;
    }

    .hero-image-wrap {
        padding-bottom: 0;
    }

    .hero-image-wrap::before {
        width: 260px;
        height: 260px;
    }

    .hero-image-wrap img {
        max-height: 300px;
    }

    .about-card {
        grid-template-columns: 1fr;
    }

    .about-card::after {
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        border-radius: 0 0 24px 24px;
    }

    .about-image-wrap {
        padding: 40px 20px;
    }

    .about-text {
        padding: 28px 28px 0;
    }
}

@media (max-width: 600px) {
    .main-nav ul {
        gap: 14px;
    }

    .main-nav a {
        font-size: 0.72rem;
    }

    .hero-content h1 {
        font-size: 1.75rem;
    }

    .features-heading {
        font-size: 1.2rem;
    }

    .cta-box h2 {
        font-size: 1.05rem;
    }

    .features-grid {
        gap: 10px 20px;
        margin-bottom: 18px;
    }

    .footer-social {
        gap: 15px;
        margin-top: 20px;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        flex-direction: column;
        gap: 14px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 16px;
    }

    .btn-primary,
    .btn-outline {
        font-size: 0.72rem;
        padding: 11px 18px;
    }
}

/* ==================== JOIN US PAGE ==================== */

/* --- Hero --- */
.join-hero {
    padding: 60px 0 0;
    background: var(--white);
}

.join-hero-title {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 12px;
    text-align: left;
}

.join-hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
}

/* --- Tier Cards Grid --- */
.join-tiers-section {
    padding: 20px 0 70px;
    background: var(--white);
}

.join-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 95%;
    margin: 0 auto;
}

.join-tier-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.join-tier-card:hover {
    transform: translateY(-6px);
}

.tier-badge {
    background: var(--purple);
    color: var(--gold);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    padding: 12px 20px;
    text-align: center;
    border-radius: 60px;
    margin: 0 auto 25px;
    width: fit-content;
    min-width: 280px;
}

.tier-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f8f8f8;
    border-radius: 25px;
    min-height: 280px;
}

.tier-desc {
    font-size: 1.25rem;
    color: var(--purple);
    line-height: 1.6;
    margin-bottom: 25px;
    flex: 1;
}

.tier-tagline {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1.3;
    margin-top: auto;
}

/* --- Join Form Section --- */
.join-form-section {
    background: linear-gradient(135deg, #f8f3fc 0%, #fff8f0 100%);
    padding: 80px 0;
}

.join-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}

/* Left: copy */
.join-form-left h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1.25;
    margin-bottom: 18px;
}

.join-form-left h2 span {
    color: var(--gold);
}

.join-form-left>p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 28px;
}

.join-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.join-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-dot {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Right: form card */
.join-form-right {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(90, 42, 92, 0.10);
}

.join-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 16px;
    border: 1.5px solid #e0d5e8;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-body);
    background: #faf8fc;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(90, 42, 92, 0.08);
    background: var(--white);
}

.btn-join-submit {
    background: var(--purple);
    color: var(--white);
    font-family: var(--font);
    font-size: 1.1rem;
    font-weight: 700;
    padding: 14px 32px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    letter-spacing: 0.4px;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
}

.btn-join-submit span {
    font-size: 1.3rem;
    transition: transform 0.25s;
}

.btn-join-submit:hover {
    background: var(--purple-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(90, 42, 92, 0.25);
}

.btn-join-submit:hover span {
    transform: translateX(4px);
}

/* Form messages */
.form-error-msg {
    background: #fde8e8;
    color: #c0392b;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.form-success-msg {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success-msg h3 {
    font-size: 1.8rem;
    color: var(--purple);
    margin-bottom: 12px;
}

.form-success-msg p {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* --- Bottom CTA --- */

.join-bottom-cta {
    padding: 0 0 80px 0;
    background: var(--white);
}

.join-cta-box {
    background: var(--purple);
    border-radius: 35px;
    padding: 0;
    color: var(--white);
    position: relative;
    overflow: visible;
}

/* Remove old ::before, use inline yellow bar for new layout */
.join-cta-box h3 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

@media (max-width: 900px) {
    .join-cta-box>div {
        flex-direction: column !important;
        padding: 30px 0 30px 0 !important;
    }

    .join-cta-box h3 {
        font-size: 1.3rem;
        padding: 0 0 18px 0;
    }

    .join-cta-box a.btn.cta-btn {
        font-size: 1.1rem !important;
        padding: 10px 18px !important;
    }

    .join-cta-box span[style*='font-size: 1.3rem'] {
        font-size: 0.9rem !important;
        padding: 4px 12px !important;
        margin-right: 8px !important;
    }
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .join-tiers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .join-tier-card {
        max-width: 100%;
    }

    .join-tiers-section {
        padding: 0;
    }

    .join-form-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .join-hero {
        padding: 20px 0;
    }

    .join-hero-title {
        font-size: 1.8rem;
    }

    .section-how-standard,
    .section-how-wavy {
        padding: 0;
    }

    .how-box-premium {
        padding: 30px;
    }

    .section-how-wavy {
        background: #2e3a6a;
    }

    .how-title-xl {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .how-labels-wrap {
        text-align: center;
    }

    .how-subtitle-lg {
        font-size: 1.3rem;
    }

    .how-tagline-lg {
        font-size: 1.1rem;
    }

    .how-paragraph-lg {
        font-size: 1.1rem;
        text-align: center;
    }

    .how-list-horizontal {
        justify-content: center;
        gap: 15px 30px;
    }

    .how-list-item {
        font-size: 1.1rem;
    }

    .how-summary-highlight {
        text-align: center;
        font-size: 1.1rem;
    }

    .how-summary-purple {
        font-size: 1.4rem;
        text-align: center;
    }

    .how-standard-inner.centered-grid,
    .how-standard-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .how-standard-image,
    .how-wavy-image {
        margin-top: 30px;
    }

    .how-image-circle {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .join-form-right {
        padding: 28px 20px;
    }

    .join-hero-title {
        font-size: 1.6rem;
    }
}

/* ==================== HOW WE HELP SECTIONS ==================== */
.section-how-standard,
.section-how-wavy {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* --- Type 1: Standard (Light) --- */
.section-how-standard {
    background: var(--white);
}

.how-standard-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.how-reverse .how-standard-inner {
    direction: rtl;
}

.how-reverse .how-standard-inner>* {
    direction: ltr;
}

.how-standard-text {
    background: #fefbf3;
    padding: 50px;
    border-radius: 40px;
}

.how-standard-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 15px;
    line-height: 1.2;
}

.how-standard-labels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
}

.how-standard-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--purple);
}

.how-standard-tagline {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--purple);
}

.how-body-standard {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-body);
}

.how-body-standard p {
    margin-bottom: 15px;
}

.how-bullets-standard {
    list-style: none;
    margin: 18px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 45px;
}

.how-bullets-standard li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.3rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-weight: 500;
}

.how-bold-standard {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-body);
    margin: 20px 0 10px 0;
}

/* --- Type 2: Wavy (Dark) --- */
.section-how-wavy {
    /* background-image: url(../images/big-wave-shape.png); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 70px 0;
    color: var(--white);
    position: relative;
    background-color: #2e3a6a;
    /* Uniform dark background */
}

.how-wavy-inner {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 60px;
    align-items: center;
}

.how-wavy-title {
    font-family: var(--font-title);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.how-wavy-labels {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.how-wavy-subtitle {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

.how-wavy-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.9;
}

.how-bullets-wavy {
    list-style: none;
    margin: 22px 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 45px;
}

.how-bullets-wavy li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.35rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.how-bold-wavy {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    margin: 35px 0 15px 0;
}

/* --- Refined Premium Typography Classes --- */
.how-box-premium {
    background: #fefbf3;
    padding: 60px;
    border-radius: 40px;
}

.how-title-xl {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: var(--font-title);
    font-weight: 800;
}

.how-text-maroon {
    color: #5a2a5c !important;
}

.how-text-black {
    color: #000 !important;
}

.how-labels-wrap {
    margin-bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.how-subtitle-lg {
    font-size: 1.6rem;
    font-weight: 700;
}

.how-tagline-lg {
    font-size: 1.35rem;
    font-weight: 700;
}

.how-paragraph-lg {
    font-size: 1.35rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.how-paragraph-lg:last-of-type {
    margin-bottom: 0;
}

.how-list-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    margin: 35px 0;
}

.how-list-horizontal .how-list-item {
    color: inherit;
    font-weight: 700;
    font-size: 1.3rem;
}

.long-term-section .how-standard-inner {
    grid-template-columns: 1fr max-content;
}

.long-term-section .how-standard-text {
    background-color: transparent;
    padding: 0;
}

.long-term-section .how-list-horizontal .how-list-item {
    color: var(--purple);
}

.how-summary-highlight {
    margin-top: 40px;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.5;
}

.how-summary-purple {
    font-size: 1.8rem;
    margin-top: 30px;
    line-height: 1.3;
}

.section-how-standard.white-bg {
    background: var(--white);
    padding: 20px 0;
    margin-top: 50px;
}

.how-image-circle img,
.how-standard-image {
    display: block;
}

.long-term-section .how-standard-inner {
    /* grid-template-columns: 1fr; */
}

.long-term-section .how-list-horizontal .how-list-item {
    text-align: left;
}

.how-full-width-item {
    width: 100%;
}

/* --- New Premium Layouts --- */
.how-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.how-item-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 20px;
    transition: transform 0.3s, background 0.3s;
}

.section-how-standard .how-item-card {
    background: var(--white);
    border: 1px solid rgba(90, 42, 92, 0.1);
    box-shadow: 0 4px 15px rgba(90, 42, 92, 0.05);
}

.how-item-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.section-how-standard .how-item-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(90, 42, 92, 0.1);
}

.how-card-text {
    font-size: 1.15rem;
    line-height: 1.5;
    color: inherit;
    font-weight: 500;
}

.how-no-bullets-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}

.how-no-bullets-item {
    font-size: 1.25rem;
    line-height: 1.6;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: 4px 15px 15px 4px;
    font-weight: 500;
}

.section-how-standard .how-no-bullets-item {
    background: #fdfaf0;
    border-left-color: var(--purple);
    color: var(--text-dark);
}

.how-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
    margin: 30px 0;
}

.how-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
}

.orange-dot {
    width: 14px;
    height: 14px;
    background: #f5a800;
    /* Bright orange */
    border-radius: 50%;
    flex-shrink: 0;
}

.how-wavy-image img,
.how-standard-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.how-image-circle {
    border-radius: 50%;
    overflow: hidden;
    width: 440px;
    height: 440px;
}

.how-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-standard-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 90%);
    z-index: 2;
    pointer-events: none;
}

.how-wavy-image img,
.how-standard-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* animation: floatImg 4s ease-in-out infinite; */
}

.how-wavy-image::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 22px;
    width: 50px;
    height: 165px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgb(46 58 106) 85%);
    z-index: 0;
    pointer-events: none;
}

.how-wavy-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 150px;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, rgb(46 58 106) 85%);
    z-index: 0;
    pointer-events: none;
}

/* Specific circle masks for images from image reference */
.how-img-circle {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    width: 320px;
    height: 320px;
    border: 10px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-how-standard .how-img-circle {
    background: #e8dacf;
    border: none;
}

@keyframes floatImg {

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

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

.how-img-placeholder {
    width: 340px;
    height: 340px;
    background: rgba(90, 42, 92, 0.08);
    border-radius: 50%;
}

/* --- Responsive --- */
@media (max-width: 900px) {

    .how-standard-inner,
    .how-wavy-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .how-reverse .how-standard-inner {
        direction: ltr;
    }

    .how-standard-image,
    .how-wavy-image {
        order: -1;
    }

    .how-wavy-image::after {
        right: 10px;
        width: 60px;
        height: 60px;
    }
}

/* CTA image banner */
.join-cta-image-section {
    padding: 70px 0 70px;
    background: var(--white);
}

.join-cta-image {
    display: block;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(90, 42, 92, 0.12);
}

.centered-grid {
    grid-template-columns: 1fr !important;
}

.flex-end {
    justify-content: flex-end !important;
}

.rounded-24 {
    border-radius: 24px !important;
}

.opacity-7 {
    opacity: 0.7 !important;
}

/* ==================== ABOUT US PAGE ==================== */
.about-page {
    padding: 0;
    overflow-x: hidden;
}

/* Core Belief Section */
.core-belief-section {
    padding: 20px 0;
    background: var(--white);
}

.core-belief-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    color: var(--white);
}

.core-belief-content {
    padding: 30px 60px;
    background: var(--purple);
    border-radius: 70px;
}

.section-title-white {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 0px;
}

.belief-text p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
}

.belief-conclusion {
    font-weight: 700 !important;
    margin-top: 30px;
}

.core-belief-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 50px 0px;
}

.image-frame {
    position: absolute;
    left: -10px;
}

.core-belief-image::before {
    content: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #e8dacf;
    border-radius: 50%;
    z-index: 0;
}

.core-belief-image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

/* Values Section */
.values-section {
    background-image: url(../images/wave-shape.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0;
    color: var(--white);
}

.values-wave-top,
.values-wave-bottom {
    position: absolute;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.values-wave-top {
    top: 0;
}

.values-wave-bottom {
    bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.values-image {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 8px;
}

.values-image::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgb(46 58 106) 100%);
    z-index: 2;
    pointer-events: none;
}

.circle-bg {
    position: relative;
    width: 400px;
    height: 400px;
    max-width: 100%;
    aspect-ratio: 1/1;
    background: #e8dacf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-bg img {
    max-width: 90%;
    border-radius: 20px;
}

.section-title-alt {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
    line-height: 1.2;
}

.values-content {
    padding-top: 40px;
}


.values-subtitle {
    font-family: var(--font-secondary);
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.values-list {
    list-style: none;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    width: fit-content;
}

.play-icon {
    width: 40px;
}

.valuses-txt {
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    color: #1e2a4a;
}

/* Trust & Transparency Section */
.trust-section {
    padding: 0;
    background: var(--white);
    margin-bottom: 30px;
}

.section-title-purple {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 26px;
    text-align: left;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: center;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.trust-number {
    width: 40px;
    height: 40px;
}

.trust-image {
    display: flex;
    justify-content: flex-end;
}

.shaking-hands-wrap {
    position: relative;
}

.shaking-hands-wrap:before,
.shaking-hands-wrap:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    z-index: -1;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.shaking-hands-wrap:before {
    left: -50px;
}

.shaking-hands-wrap:after {
    right: -50px;
}

.shaking-hands-wrap img {
    /* max-width: 450px; */
}

/* Responsive */
@media (max-width: 991px) {
    .core-belief-card {
        grid-template-columns: 1fr;
    }

    .values-grid,
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-section {
        padding: 60px 0;
        background-size: 100% 100%;
    }

    .section-title-alt {
        font-size: 2rem;
        text-align: center;
    }

    .values-subtitle {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .values-content {
        padding-top: 0;
    }

    .values-list li {
        width: 100%;
        font-size: 1.1rem;
        gap: 15px;
    }

    .core-belief-image,
    .values-image,
    .trust-image {
        order: -1;
        margin-bottom: 20px;
        padding: 0;
    }

    .circle-bg {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
}

/* Our Framework Section */
.framework-section {
    padding: 0;
    background: var(--white);
}

.framework-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: end;
}

.purple-list li {
    background: transparent;
    color: var(--text-dark);
    padding: 0;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.purple-list .play-icon {
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 25px solid var(--gold);
}

.framework-slogan {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--purple);
    margin-top: 40px;
}

/* Framework Visuals */
.framework-visual {
    display: flex;
    justify-content: center;
}

.framework-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.step-line {
    position: absolute;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: var(--gold);
    z-index: 0;
}

.step-item {
    background: var(--purple);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    width: max-content;
    text-align: center;
    margin-bottom: 10px;
}

.step-item:last-of-type {
    margin-bottom: 0;
}

/* Founder's Note Section (Dynamic) */
.founder-section {
    padding: 100px 0;
    background: #fff;
}

.founder-card-dynamic {
    display: grid;
    background: var(--purple);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
    box-shadow: 0 15px 45px rgba(90, 42, 92, 0.08);
    grid-template-columns: 6fr 6fr;
    grid-gap: 60px;
}

.founder-card-dynamic::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    width: 88%;
    height: 78%;
    background: var(--gold);
    clip-path: polygon(0 0, 48% 0, 52% 72%, 100% 72%, 100% 100%, 0 100%);
    z-index: 0;
    transform: translateX(-50%);
}

.founder-img-area {
    flex: 0 0 50%;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    left: 45px;
}

.found-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    height: 83%;
    margin-top: -38px;
}

.found-img-wrapper img {
    width: 440px;
    height: 100%;
    border-radius: 15px;
    box-shadow: -15px 15px 0 0 #1b264b;
    position: relative;
    z-index: 2;
    display: block;
    object-fit: cover;
}

.found-play-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: pulsePlay 2s infinite;
}

.found-play-btn:hover {
    transform: scale(1.1);
    background-color: var(--gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.found-play-btn:hover::after {
    border-left-color: var(--white);
}

@keyframes pulsePlay {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.found-play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid var(--text-dark);
    margin-left: 5px;
}

.founder-info-area {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 60px 0 60px 0;
}

.founder-info-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 20px;
}

.founder-name-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 8px 0;
    text-transform: uppercase;
    font-family: var(--font);
    letter-spacing: 0.5px;
}

.founder-deg-new {
    font-size: 1.55rem;
    color: var(--white);
    margin: 0;
    font-weight: 500;
}

.founder-info-bottom {
    display: flex;
    align-items: center;
    height: max-content;
    padding-top: 0;
    position: relative;
    right: 80px;
    left: auto;
    top: -6%;
}

.founder-social-new {
    display: flex;
    gap: 15px;
    align-items: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.founder-social-new a {
    width: 55px;
    height: 55px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

.founder-social-new a:hover {
    transform: translateY(-3px);
}

.founder-social-new a.social-in {
    color: #0A66C2;
    background-color: #0A66C2;
}

.founder-social-new a.social-x {
    color: #000;
    background-color: #000;
    font-style: normal;
}

.founder-social-new a.social-fb {
    color: #1877F2;
    background-color: #1877F2;
}

.founder-social-new a.social-ig {
    color: #fff;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.founder-social-new a.social-yt {
    color: #FF0000;
    background-color: #FF0000;
}

.founder-social-line {
    flex: 1;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.line-part {
    height: 3px;
    background: var(--white);
    width: 80px;
    border-radius: 2px;
}

.line-part.flex-grow {
    flex: 1;
}

.founder-social-dots {
    display: flex;
    gap: 8px;
    margin: 0 15px;
}

.founder-social-dots span {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .founder-card-dynamic {
        flex-direction: column;
        min-height: auto;
    }

    .founder-card-dynamic::before {
        clip-path: polygon(0 0, 100% 0, 100% 45%, 0 55%);
    }

    .founder-img-area {
        padding: 40px 20px;
    }

    .found-img-wrapper img {
        box-shadow: -10px 10px 0 0 #1b264b;
    }

    .founder-info-area {
        padding: 0 30px 40px 30px;
    }

    .founder-info-bottom {
        flex-direction: column;
        align-items: flex-start;
        height: auto;
        padding-top: 30px;
    }

    .founder-social-line {
        margin-left: 0;
        margin-top: 25px;
        width: 100%;
    }
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .framework-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .framework-visual {
        order: -1;
    }
}

/* ==================== BLOGS LISTING ==================== */
.blogs-page-header {
    padding: 60px 0 30px;
}

.blogs-page-header h1 {
    color: var(--purple);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-title);
}

.blogs-list {
    padding-bottom: 80px;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    position: relative;
}

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

/* Author Tags */
.blog-author-tag {
    display: inline-block;
    background: #f0e6f2;
    color: var(--purple);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.blog-author-tag:hover {
    background: var(--purple);
    color: var(--white);
}

.blog-author-tag.single-tag {
    margin-bottom: 0;
}

.blogs-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.clear-filter-btn {
    display: inline-block;
    color: var(--purple);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    border: 2px solid var(--purple);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.clear-filter-btn:hover {
    background: var(--purple);
    color: var(--white);
    transform: translateX(-5px);
}

.blog-single-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.meta-sep {
    color: #ccc;
    font-weight: 300;
}

.blog-img-wrap {
    position: relative;
    padding-top: 60%;
    background: #eee;
}

.blog-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--purple);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 2;
}

.blog-content-wrap {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-content-wrap h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-secondary);
}

.blog-content-wrap p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-read-more {
    display: block;
    width: 100%;
    background: var(--purple-mid);
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-read-more:hover {
    background: var(--purple);
    color: #fff;
}

.view-all-card {
    border-radius: 12px;
    border: 2px dashed #d1d1d1;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    box-shadow: none;
}

.view-all-card a {
    background: var(--purple-mid);
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.view-all-card a:hover {
    background: var(--purple);
    color: #fff;
}

/* ==================== BLOG SINGLE ==================== */
.blog-single-header {
    padding: 60px 0 30px;
    text-align: center;
}

.blog-single-header-cnt {
    max-width: 900px;
}

.blog-single-badge {
    background: var(--purple-light);
    color: var(--purple);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: inline-block;
}

.blog-single-header h1 {
    color: var(--purple);
    font-size: 2.8rem;
    font-weight: 800;
    font-family: var(--font-title);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-single-date {
    color: #666;
    font-size: 1rem;
}

.blog-single-image {
    padding: 0 0 40px;
}

.blog-single-image-cnt {
    max-width: 1000px;
}

.blog-single-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.blog-single-content {
    padding-bottom: 80px;
}

.blog-single-content-cnt {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-body h2 {
    color: var(--purple);
    margin: 30px 0 15px;
    font-size: 1.8rem;
    font-family: var(--font-title);
}

.content-body h3 {
    color: var(--purple-mid);
    margin: 25px 0 10px;
    font-size: 1.5rem;
    font-family: var(--font-title);
}

.content-body p {
    margin-bottom: 20px;
}

.content-body ul,
.content-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 10px;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

.content-body blockquote {
    border-left: 5px solid var(--purple);
    padding-left: 20px;
    color: #555;
    font-style: italic;
    background: #fdfdfd;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
}

.blog-back-wrap {
    margin-top: 50px;
    text-align: center;
}

.blog-back-btn {
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 30px;
}

/* ==================== RELATED BLOGS ==================== */
.related-blogs {
    padding: 40px 0 80px;
    background: var(--bg-section);
}

.related-blogs h2 {
    color: var(--purple);
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--font-title);
    margin-bottom: 30px;
    text-align: center;
}

/* ==================== VIDEOS LISTING ==================== */
.videos-page-header {
    padding: 60px 0 30px;
}

.videos-page-header h1 {
    color: var(--purple);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-title);
}

.videos-list {
    padding-bottom: 80px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--purple);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    position: relative;
    aspect-ratio: 16 / 9;
}

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

.video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, transform 0.3s;
}

.play-btn-overlay:hover {
    background: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-icon-tri {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid var(--purple);
    margin-left: 4px;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.video-card.placeholder-card {
    background: var(--purple);
}

/* ==================== WEBINARS LISTING ==================== */
.webinars-page-header {
    padding: 60px 0 10px;
}

.webinars-page-header h1 {
    color: var(--purple);
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-title);
    margin-bottom: 5px;
}

.webinars-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

.webinars-list {
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.container-relative {
    position: relative;
    padding-top: 50px;
}

.webinars-bg-curve {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 120%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' viewBox='0 0 1000 150' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,75 Q250,0 500,75 T1000,75' fill='none' stroke='%23f5a800' stroke-width='4' stroke-dasharray='10,15'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    z-index: 0;
    transform: translateY(-50%);
}

.webinars-grid {
    display: flex;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.webinar-card {
    min-width: 380px;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    background: #f1f1f1;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    position: relative;
    aspect-ratio: 16 / 15;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.webinar-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
}

.webinar-wrap iframe {
    width: 100%;
}

.webinar-thumbnail-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.webinar-details-box {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    background: #fff;
}

.webinar-details-box h3 {
    color: var(--purple);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-title);
    line-height: 1.2;
}

.webinar-date {
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 15px;
}

.webinar-details-box p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    flex-grow: 1;
}

.webinar-details-box .btn {
    text-transform: uppercase;
    font-size: 0.9rem;
    align-self: flex-start;
}

.webinar-card.placeholder-card {
    background: #f1f1f1;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* ==================== MOBILE MENU TOGGLE ==================== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--purple);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ==================== RESPONSIVENESS ==================== */
@media (max-width: 1400px) {
    .container {
        max-width: 1180px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-subtitle {
        padding-right: 100px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .main-header {
        padding: 20px 0 60px;
    }

    .site-logo {
        width: 220px;
    }

    .site-logo img {
        max-width: 200px;
    }

    .main-nav ul {
        gap: 0;
        padding-top: 80px;
        padding-left: 40px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .main-nav a {
        font-size: 16px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        padding-right: 20px;
        font-size: 1.1rem;
    }

    .hero-desc {
        font-size: 1.25rem;
    }

    .features-heading {
        font-size: 2.2rem;
    }

    .features-tagline {
        font-size: 2.1rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .footer-contact,
    .footer-address,
    .footer-copy {
        font-size: 1.3rem;
    }

    .hero-image-wrap img {
        max-height: 400px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .features-heading {
        font-size: 1.6rem;
    }

    .features-tagline {
        font-size: 1.5rem;
    }

    .feature-chip {
        font-size: 0.95rem;
        gap: 8px;
    }

    .about-text h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .cta-box {
        padding: 25px;
    }

    .about-text p {
        font-size: 1.05rem;
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .btn-gold {
        font-size: 1.2rem;
    }

    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-logo-badge img {
        width: 220px;
    }
}

@media (max-width: 1024px) {
    .container {
        max-width: 100%;
    }

    .main-header {
        padding: 15px 0;
        background: var(--white);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-bottom: 1px solid #e5e5e5;
    }

    .header-inner {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
    }

    .main-nav {
        display: flex;
        align-items: center;
    }

    .menu-toggle {
        display: flex !important;
        margin-left: auto;
    }

    .site-logo {
        flex-shrink: 0;
        width: auto;
    }

    .site-logo img {
        max-width: 180px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: left;
        margin: 10px 0;
    }

    .main-nav .submenu {
        position: static;
        width: 90%;
        margin: 0 auto;
        display: flex;
        transform: none;
        box-shadow: none;
        text-align: center;
        background: transparent;
        border-radius: 12px;
    }

    .main-nav .submenu li {
        margin: 0;
    }

    .mobile-only {
        display: block;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        grid-gap: 0;
        padding-top: 18px;
    }

    .hero-image-wrap {
        margin-top: 15px;
    }

    .hero-subtitle {
        padding-right: 0;
    }

    .hero-buttons {
        align-items: center;
    }

    .about-card {
        grid-template-columns: 1fr;
        text-align: center;
        background-position: center bottom;
        padding-bottom: 30px;
    }

    .about-image-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .site-logo img {
        max-width: 140px;
    }

    .nav-links {
        width: 85%;
    }

    .hero-section h1 {
        font-size: 1.95rem;
    }

    .hero-desc {
        font-size: 1.1rem;
    }

    .features-heading {
        font-size: 1.6rem;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .features-tagline {
        font-size: 1.4rem;
    }

    .feature-chip {
        font-size: 1rem;
    }

    .cta-wrapper {
        width: 100%;
    }

    .cta-box h2 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .btn-gold {
        font-size: 1.1rem;
        padding: 10px 20px;
    }

    .blogs-grid,
    .videos-grid,
    .webinars-grid {
        grid-template-columns: 1fr;
    }

    .footer-contact,
    .footer-address,
    .footer-copy {
        font-size: 1rem;
    }

    .footer-logo-badge img {
        width: 180px;
    }

    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    /* About Us Page Resets */
    .core-belief-card,
    .values-grid,
    .trust-grid,
    .framework-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0px;
    }

    .core-belief-content {
        padding: 40px 30px;
        border-radius: 40px;
    }

    .section-title-white {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .image-frame {
        position: static;
        transform: none;
        display: block;
        margin: 0 auto;
    }

    .values-section {
        background-size: cover;
        padding: 60px 0;
        background: #2e3a6a;
    }

    .section-title-alt {
        font-size: 1.8rem;
    }

    .values-subtitle {
        font-size: 1.6rem;
    }

    .circle-bg {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .values-image::after {
        display: none;
    }

    .values-list li {
        font-size: 1.1rem;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
    }

    .play-icon img {
        width: 25px;
        height: 25px;
    }

    .trust-section {
        padding: 20px 0 0;
        background: var(--white);
        margin-bottom: 0;
    }

    .valuses-txt {
        padding: 8px 15px;
    }

    .section-title-purple {
        font-size: 1.8rem;
        text-align: left;
        margin-bottom: 10px;
    }

    .trust-image {
        justify-content: center;
    }

    .shaking-hands-wrap img {
        max-width: 100%;
    }

    .framework-grid {
        align-items: center;
    }

    .framework-visual {
        width: 100%;
        margin: 30px 0;
    }

    .purple-list {
        text-align: left;
    }

    .framework-slogan {
        font-size: 1.5rem;
        text-align: center;
    }

    .founder-card-dynamic {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 40px;
        display: block;
    }

    .founder-card-dynamic::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        width: 100%;
        height: 50%;
        top: 0;
    }

    .founder-img-area {
        flex: 0 0 100%;
        padding: 40px 20px 20px;
        left: 5px;
    }

    .founder-info-area {
        flex: 0 0 100%;
        padding: 0 20px;
        text-align: center;
    }

    .founder-name-new {
        font-size: 1.8rem;
    }

    .founder-deg-new {
        font-size: 1.25rem;
    }

    .founder-info-bottom {
        position: static;
        flex-direction: column;
        gap: 20px;
        margin-top: 0;
        align-items: center;
        width: 100%;
        padding-top: 0;
    }

    .founder-social-new {
        background: #fff;
        padding: 10px;
    }

    .founder-social-line {
        display: none;
    }

    .founder-section {
        padding: 60px 0 10px;
    }

    .blog-single-header-cnt h1 {
        font-size: 1.8rem;
    }

    .blog-single-image-cnt img {
        border-radius: 12px;
    }

    .blog-single-content-cnt {
        padding: 0 15px;
    }

    .content-body {
        font-size: 1.1rem;
    }

    .features-section {
        padding: 0;
    }

    .about-card {
        background-image: none;
    }

    .footer-circles .c-light {
        top: 0;
        right: 0;
        width: 90px;
        height: 90px;
    }

    .footer-circles .c-gold {
        top: 16px;
        right: 60px;
        width: 50px;
        height: 50px;
    }

    .about-section {
        padding: 18px 0;
    }

    .cta-section {
        padding: 0px 0 30px;
    }

    .webinars-page-header h1 {
        font-size: 1.8rem;
    }

    .trust-list li {
        text-align: left;
    }

    .long-term-section .how-standard-inner {
        grid-template-columns: 1fr;
    }

    .how-image-circle {
        width: 300px;
        height: 300px;
    }

    .how-standard-image {
        margin-top: 0;
    }

    .founder-social-new a {
        width: 40px;
        height: 40px;
    }
    .webinar-card {min-width: 290px;
    max-width: 290px;}
}

@media screen and (max-width: 1300px) {
    .circle-bg {
        width: 300px;
        height: 300px;
    }
}

.success-page {
    padding: 40px 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: left;
}

.testimonials-swiper {
    padding-bottom: 70px !important;
    /* Increased to give space for dots */
    margin-bottom: 30px;
}

.testimonial-card {
    padding: 20px 20px 30px;
    transform: none !important;
    opacity: 1 !important;
    margin-bottom: 30px;
    /* Space for the triangle */
}

.testimonial-card::after {
    bottom: -25px;
    /* Slightly adjusted */
    border-width: 25px 25px 0;
    left: 50%;
}

.swiper-pagination {
    bottom: 0 !important;
    /* Ensure dots are at the very bottom of the padded container */
}

.swiper-button-next,
.swiper-button-prev {
    display: none !important;
    /* Hide arrows on mobile */
}

.success-cta-banner {
    padding: 30px 15px;
    margin-top: 40px;
}

.success-cta-banner h3 {
    font-size: 1.25rem;
    margin-bottom: 25px;
    gap: 12px;
}

.success-cta-banner h3::before {
    width: 30px;
    height: 2px;
}

.btn-wrapper::before,
.btn-wrapper::after {
    display: block;
    height: 2px;
}

.arrows {
    font-size: 1.8rem;
    display: flex;
    letter-spacing: -4px;
}

.cta-btn {
    font-size: 1.1rem;
    padding: 12px 24px;
    width: auto;
    max-width: none;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.close-video-modal {
    position: absolute;
    top: -45px;
    right: 0;
    color: #fff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
}

.close-video-modal:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .close-video-modal {
        top: -40px;
        right: 10px;
    }
}

/* Form Modal Styles */
.form-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-modal.active {
    display: flex;
    opacity: 1;
}

.form-modal-content {
    position: relative;
    width: 95%;
    max-width: 600px;
    height: 85vh;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-modal.active .form-modal-content {
    transform: scale(1);
}

.form-container {
    width: 100%;
    height: 100%;
}

.form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-form-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 10;
    transition: all 0.3s ease;
}

.close-form-modal:hover {
    background: var(--purple);
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .form-modal-content {
        width: 92%;
        height: 75vh;
        border-radius: 20px;
    }
}

.swiper-slide.swiper-slide-active {z-index: 9;}

@media (max-width: 1300px) {
    .founder-img-area {left: 85px;}
    .founder-info-area {left: 80px;}
    .founder-info-bottom{right: 50px;}
}