@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Teachers:ital,wght@0,400..800;1,400..800&display=swap');

:root {
    /* Brand Colors - Redesigned for White Mode */
    --color-gold-primary: #C5A028;
    /* Slightly darker for better visibility on white */
    --color-gold-light: #F4C430;
    --color-gold-dark: #8A6210;

    --color-bg-body: #ffffff;
    --color-bg-light: #f8f9fa;
    /* Light gray for sections */
    --color-bg-card: #ffffff;
    --color-bg-dark: #1a1a1a;
    /* For footer/dark sections */

    --color-text-main: #2c3e50;
    /* Deep slate for body text */
    --color-text-heading: #1a1a1a;
    /* Near black for headings */
    --color-text-muted: #00000;
    --color-text-light: #ffffff;
    /* For text on dark backgrounds */

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #D4AF37, #F4C430, #aa771c);
    --gradient-gold-text: linear-gradient(135deg, #B38728, #AA771C);
    /* Darker gradient for text */
    --gradient-light: linear-gradient(145deg, #ffffff, #f0f0f0);

    /* Typography */
    --font-main: 'Outfit', 'Inter', sans-serif;
    --font-heading: 'Teachers', serif;
    --title-color: var(--color-text-heading);

    /* Spacing */
    --spacing-container: 1200px;
    --spacing-section: 5rem;

    /* Effects */
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 5px 15px rgba(212, 175, 55, 0.2);
    --radius-std: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Global Heading Styles */
/* Global Heading Styles */
.h1,
h1,
.h2,
h2 {
    font-family: var(--font-heading);
    color: var(--title-color);
    font-weight: 500;
    font-size: 35px;
    line-height: 47px;
    margin: 0 0 15px;
    clear: both;
}

@media (min-width: 1200px) {

    .h2,
    h2 {
        font-size: 2rem;
    }
}

.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
    font-family: var(--font-heading);
    color: var(--title-color);
    text-transform: none;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 15px;
    clear: both;
}



.text-gold {
    color: var(--color-gold-primary);
    /* Fallback */
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background: var(--gradient-gold);
    color: #fff;
    font-weight: 600;
    border-radius: var(--radius-std);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.section-padding {
    padding: var(--spacing-section) 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--color-text-heading);
    text-transform: none;
    letter-spacing: 2px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold-primary);
    margin: 20px auto 0;
    border-radius: 10px;
}

.section-title-alt {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--color-text-heading);
    margin-bottom: 40px;
    line-height: 1;
}

/* Page Header & Breadcrumbs */
.page-header {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
    /* Offset for fixed navbar + top bar */
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
}

.header-pattern::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 40, 0.15) 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--color-gold-primary);
    /* Gold title */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #61ad31;
    /* Teal color matching the design */
    padding: 10px 30px;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(26, 188, 156, 0.3);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
    font-weight: 600;
}

.breadcrumb a:hover {
    opacity: 0.9;
    color: white;
}

.breadcrumb span {
    color: white;
    opacity: 0.9;
}

.breadcrumb .separator {
    font-size: 0.8rem;
    margin-top: 2px;
}

/* Main Header (Navbar) adjustment */
.main-header {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    /* Translucent white */
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navigation */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

/* 
.logo-main {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
}

.logo-sub {
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    margin-top: 2px;
    margin-left: 2px;
} 
*/

.logo-main {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 2rem;
}

.logo-sub {
    font-family: var(--font-main);
    font-size: 0.7rem;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    margin-top: 2px;
    margin-left: 2px;
}

.nav-links ul {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text-heading);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold-primary);
}

.btn-nav {
    padding: 10px 25px;
    border: 1px solid var(--color-gold-primary);
    border-radius: 50px;
    /* Pill shape for modern feel */
    color: var(--color-gold-primary) !important;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-nav:hover {
    background: var(--color-gold-primary);
    color: #fff !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    padding: 15px 0;
    border-radius: var(--radius-std);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    flex-direction: column !important;
    gap: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: var(--color-text-main);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: var(--color-bg-light);
    color: var(--color-gold-primary);
    padding-left: 30px;
}

/* Mobile Menu Button */
.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 0;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--color-text-heading);
    transition: all 0.3s ease;
    display: block;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.close-menu {
    display: none;
}

/* Hero Section - Light Mode */
.hero-slider {
    height: 90vh;
    /* Slightly smaller than 100vh for cleaner look */
    width: 100%;
    position: relative;
    margin-top: 120px;
    /* Offset for fixed header + top bar */
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left align for professional look */
    text-align: left;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=2070&auto=format&fit=crop');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=2070&auto=format&fit=crop');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?q=80&w=2070&auto=format&fit=crop');
}

.slide-4 {
    background-image: url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?q=80&w=2070&auto=format&fit=crop');
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.2) 100%);
    /* Dark gradient overlay */
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: 10%;
    color: white;
    /* Ensure text is white */
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: white;
    /* Hero heading white */
    line-height: 1.2;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* Swiper Nav */
.swiper-button-next,
.swiper-button-prev {
    color: var(--color-text-heading) !important;
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.5rem;
}

/* News Marquee - Clean Look */
.news-marquee {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.marquee-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    padding-left: 100%;
}

.marquee-content span {
    margin-right: 50px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Cards (General) */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mn-card {
    background: var(--color-bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mn-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--color-gold-light);
}

.mn-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-gold-primary);
}

.mn-card h3 {
    margin-bottom: 15px;
    color: var(--color-text-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: -0.5px;
}

.mn-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.blog-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--color-gold-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--color-text-heading);
    font-weight: 700;
    line-height: 1.4;
}

.blog-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: var(--color-text-heading);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--color-gold-primary);
}

/* Footer - Redesigned Full Width 5-Column */
.main-footer {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 80px 0 30px;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 60px;
    max-width: 100% !important;
    padding: 0 40px;
}

.footer-col h3 {
    color: var(--color-gold-primary);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-gold-primary);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0a0;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.contact-info-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
    color: #555;
}

/* Why Choose Us & Other New Sections */
.features-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.more-about-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    padding-top: 20px;
}

.equal-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    padding-bottom: 40px;
}

.equal-img-wrapper {
    position: relative;
}

.equal-img-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.equal-img-wrapper.second-img {
    margin-top: 40px;
    /* Offset for dynamic look */
}

.floating-badge-mini {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px 20px;
    border-radius: var(--radius-std);
    box-shadow: var(--shadow-hover);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.badge-info strong {
    font-size: 1.1rem;
    color: var(--color-gold-dark);
}

.badge-info span {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-gold-primary);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Redesigned Why Choose Us Section */

.redesigned-why-choose {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
}

.features-layout-alt {
    display: flex;
    align-items: center;
    gap: 60px;
}

.features-content-left {
    flex: 1.2;
}

.section-title-alt {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-text-heading);
    margin-bottom: 40px;
    line-height: 1.2;
}

.feature-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-card-white {
    background: white;
    padding: 30px 25px;
    border-radius: var(--radius-std);
    box-shadow: 0 10px 30px rgba(197, 160, 40, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(197, 160, 40, 0.1);
}

.card-icon-blue {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 40, 0.05);
    color: #C5A028;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card-white h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card-white p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.features-image-right {
    flex: 1;
    position: relative;
}

.large-rounded-img {
    width: 100%;
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 2;
}

.decorative-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: 20%;
    background: radial-gradient(circle, rgba(197, 160, 40, 0.03) 0%, transparent 70%);
    z-index: 1;
}

@media (max-width: 1200px) {
    .section-title-alt {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .features-layout-alt {
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 576px) {
    .feature-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-box {
    background: #f8faff;
    padding: 25px;
    border-radius: var(--radius-std);
    border-left: 4px solid var(--color-gold-primary);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: #fff;
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.feature-box .icon-circle {
    width: 40px;
    height: 40px;
    background: var(--color-gold-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-text-heading);
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* More About Images Wrapper Styles */
.more-about-images-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.main-about-img {
    grid-column: 1 / -1;
    margin-bottom: 30px;
}

.secondary-about-img {
    position: absolute;
    bottom: -40px;
    left: -20px;
    width: 65%;
    z-index: 2;
}

.secondary-about-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-std);
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--color-gold-primary);
}

.stat-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
}

.stat-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Work Process Section - Diamond Styles */
.process-grid-alt {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-top: 60px;
}

.process-step-alt {
    flex: 1;
    text-align: center;
    max-width: 320px;
}

.step-media {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 40px;
}

.diamond-img {
    width: 100%;
    height: 100%;
    transform: rotate(45deg);
    overflow: hidden;
    border-radius: 40px;
    box-shadow: var(--shadow-hover);
    border: 5px solid white;
}

.diamond-img img {
    width: 140%;
    height: 140%;
    object-fit: cover;
    transform: rotate(-45deg) translate(-15%, -15%);
}

.step-icon {
    position: absolute;
    top: -15px;
    left: 15px;
    width: 65px;
    height: 65px;
    background: #C5A028;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    border: 4px solid white;
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.3);
}

.step-info h3 {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-text-heading);
}

.step-info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    padding: 0 10px;
}

.step-divider {
    flex: 0.4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .process-grid-alt {
        flex-direction: column;
        gap: 80px;
    }

    .step-divider {
        display: none;
    }
}

/* Mobile Responsive */

@media (max-width: 992px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        display: flex;
        overflow-y: auto;
    }

    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--color-text-heading);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: color 0.3s;
    }

    .close-menu:hover {
        color: var(--color-gold-primary);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links a {
        color: var(--color-text-heading);
        font-size: 1.2rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding-left: 0;
        display: none;
        border: none;
        margin-top: 10px;
        padding: 10px 0 10px 15px;
        border-left: 2px solid var(--color-gold-light);
    }

    .dropdown>a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown>a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.8rem;
        transition: transform 0.3s;
        margin-left: 10px;
    }

    .dropdown.active>a::after {
        transform: rotate(180deg);
    }

    .nav-links li {
        width: 100%;
        margin-bottom: 5px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .more-about-grid,
    .equal-images-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .equal-img-wrapper.second-img {
        margin-top: 0;
    }

    .equal-img-wrapper img {
        height: 300px;
    }
}

@media (max-width: 992px) {
    .slide-content {
        margin-left: 5%;
        margin-right: 5%;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-light);
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Promo Offer Banner */
.offer-banner {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    /* Deep Navy Overlay */
    z-index: 1;
}

.banner-container {
    position: relative;
    z-index: 2;
}

.white-tag {
    color: #4facfe !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.banner-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 25px;
    color: white;
}

.highlight-red {
    color: #61ad31;
    /* Changed to Green */
}

.banner-desc {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.8;
    line-height: 1.7;
}

.banner-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.blue-btn {
    background: #2563eb !important;
    border: none;
}

.outline-btn {
    background: transparent !important;
    border: 2px solid white !important;
    box-shadow: none !important;
}

.outline-btn:hover {
    background: white !important;
    color: #1a1a1a !important;
}

/* Decorative Shapes */
.decor-circle {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 8px solid rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    top: 20%;
    left: 5%;
}

.decor-hex {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(97, 173, 49, 0.3);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    bottom: 20%;
    right: 10%;
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
    }

    .offer-banner {
        padding: 60px 0;
    }
}

/* Choice Section (Instructors & Students) */
.choice-section {
    background: #fff;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 20px;
}

.choice-card {
    padding: 60px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.choice-card.blue-theme {
    background: #f0f7ff;
}

.choice-card.red-theme {
    background: #fff5f5;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.card-media {
    position: relative;
    width: 280px;
    height: 220px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.arc-border {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 15px solid transparent;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.blue-theme .arc-border {
    border-left-color: #C5A028;
    border-top-color: #C5A028;
    opacity: 0.8;
}

.red-theme .arc-border {
    border-right-color: #61ad31;
    border-top-color: #61ad31;
    opacity: 0.8;
}

.choice-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.choice-card p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.choice-btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: var(--radius-std);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.blue-theme .choice-btn {
    background: #C5A028;
}

.blue-theme .choice-btn:hover {
    background: #B38F23;
    box-shadow: 0 8px 20px rgba(197, 160, 40, 0.3);
}

.red-theme .choice-btn {
    background: #61ad31;
}

.red-theme .choice-btn:hover {
    background: #4e8b27;
    box-shadow: 0 8px 20px rgba(97, 173, 49, 0.3);
}

@media (max-width: 992px) {
    .choice-grid {
        grid-template-columns: 1fr;
    }

    .choice-card {
        padding: 40px 20px;
    }
}

/* What We Do Section (About Page) */
.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.what-we-do-card {
    background: white;
    padding: 50px 30px;
    border-radius: var(--radius-std);
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.what-we-do-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(197, 168, 115, 0.15);
    border-color: var(--color-gold-primary);
}

.card-icon-circle-theme {
    width: 80px;
    height: 80px;
    background: var(--color-gold-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 20px rgba(197, 168, 115, 0.3);
}

.what-we-do-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--color-text-heading);
}

.what-we-do-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .what-we-do-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile App Section */
.app-section {
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, #2d3748 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

.app-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.app-text {
    flex: 1;
    min-width: 300px;
}

.app-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    position: relative;
}

.app-image img {
    max-height: 500px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.app-image img:hover {
    transform: rotate(0deg) scale(1.02);
}

.store-btns {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--color-bg-dark);
    padding: 12px 25px;
    border-radius: var(--radius-std);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.store-btn i {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .app-section {
        text-align: center;
    }

    .app-content-wrapper {
        flex-direction: column-reverse;
    }

    .store-btns {
        justify-content: center;
    }

    .app-image img {
        max-height: 350px;
        transform: rotate(0deg);
    }
}

/* Footer App Links */
.footer-app-links {
    margin-top: 0;
}

.footer-app-links h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-store-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-std);
    text-decoration: none;
    font-size: 0.8rem;
    transition: background 0.2s, transform 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 155px;
}

.footer-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-store-btn i {
    font-size: 1.2rem;
}

.footer-store-btn .btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-store-btn .btn-text span {
    font-size: 0.6rem;
    opacity: 0.8;
}

.footer-store-btn .btn-text strong {
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .footer-store-btns {
        align-items: center;
    }

    .footer-store-btn {
        width: 180px;
        justify-content: center;
    }

    .contact-info-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Founder Section Redesign & Stats */
.founder-redesign {
    background: #fff;
    overflow: hidden;
    padding: 80px 0;
}

.founder-container-alt {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.founder-image-wrapper {
    flex: 1;
    min-width: 300px;
}

.founder-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.founder-info-alt {
    flex: 1.2;
    min-width: 300px;
}

.founder-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.mini-feature {
    display: flex;
    gap: 15px;
}

.mini-feature .mini-icon {
    width: 60px;
    height: 60px;
    background: rgba(79, 172, 254, 0.1);
    color: #4facfe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mini-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.mini-feature p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.btn-about-me {
    display: inline-block;
    background: linear-gradient(135deg, #70d7b2, #56c9a8);
    color: white;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(86, 201, 168, 0.2);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-about-me:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(86, 201, 168, 0.3);
    color: white;
}

/* Stats Cards Section */
.stats-section-alt {
    background: #f8faff;
    padding: 60px 0;
}

.stats-grid-alt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card-alt {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.stat-card-alt:hover {
    transform: translateY(-10px);
}

.stat-card-alt .stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(79, 172, 254, 0.05);
    color: #4facfe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.stat-card-alt h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #1a1a1a;
    font-weight: 700;
}

.stat-card-alt p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 992px) {
    .stats-grid-alt {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid-alt {
        grid-template-columns: 1fr;
    }

    .founder-mini-grid {
        grid-template-columns: 1fr;
    }

    .founder-container-alt {
        gap: 40px;
    }
}

/* Top Bar Styles */
.top-bar {
    background: #61ad31;
    /* Matching the purple/blue from the image */
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
    position: absolute;
    /* Change to absolute so it scrolls away naturally */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    display: block;
    /* Show on all screens initially */
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar-social {
    display: flex;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 15px;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Header Adjustment for Top Bar */
.main-header {
    top: 40px;
    /* Initial offset for top bar */
}

body.scrolled .main-header {
    top: 0;
    /* Move to top when scrolled */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* About Section Redesign V2 */
.about-redesign-v2 {
    padding: 100px 0;
    background: #fbfcfe;
    overflow: hidden;
}

.about-v2-container {
    display: flex;
    gap: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.about-v2-media {
    flex: 1;
    min-width: 400px;
    position: relative;
    padding-bottom: 50px;
}

.composite-media-grid {
    position: relative;
    width: 100%;
    height: 500px;
}

.photo-one {
    position: absolute;
    width: 70%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

.photo-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.photo-two {
    position: absolute;
    width: 70%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.photo-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    top: 10%;
    right: 5%;
    background: white;
    padding: 25px 35px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.experience-badge i {
    font-size: 2.5rem;
    color: #4facfe;
}

.experience-badge span {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.9rem;
}

.est-year {
    position: absolute;
    bottom: 5%;
    left: 5%;
    font-size: 5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #5b47fb;
    opacity: 0.3;
    z-index: 3;
}

.about-v2-content {
    flex: 1.2;
    min-width: 300px;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5b47fb;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.about-tag i {
    width: 30px;
    height: 30px;
    background: rgba(91, 71, 251, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.about-v2-content h2 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    position: relative;
}

.squiggle-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 150px;
}

.about-v2-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.v2-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.v2-feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.v2-feature-item .icon-circle {
    width: 50px;
    height: 50px;
    color: #4facfe;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.v2-feature-item h4 {
    font-size: 1.25rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.v2-feature-item p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

.btn-v2-primary {
    display: inline-block;
    background: #5b47fb;
    color: white;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-v2-primary:hover {
    background: #4a38d6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(91, 71, 251, 0.3);
}

@media (max-width: 1200px) {
    .about-v2-container {
        gap: 50px;
    }
}

@media (max-width: 992px) {
    .about-v2-media {
        min-width: 100%;
        margin-bottom: 50px;
    }

    .composite-media-grid {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .composite-media-grid {
        height: 500px;
    }

    .top-bar {
        position: absolute;
        /* Keep absolute on mobile too */
        display: block;
    }

    .main-header {
        top: 40px;
    }

    body.scrolled .main-header {
        top: 0;
    }

    .hero-slider,
    .page-header {
        margin-top: 120px;
        /* Offset for both headers on mobile */
    }

    .top-bar-right {
        display: none;
    }

    .about-v2-content h2 {
        font-size: 2.5rem;
    }

    .v2-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Form Styles */
.form-section {
    padding: 80px 0;
    background: #f8faff;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-heading);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-std);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 0 3px rgba(197, 160, 40, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.flex-mobile-stack {
    display: flex;
}

@media (max-width: 768px) {
    .flex-mobile-stack {
        flex-direction: column;
        gap: 15px !important;
    }
}