/* ========================================
   EduConnect Australia - Custom CSS
   ======================================== */

/* ========================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ======================================== */
:root {
    /* Color Palette */
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --accent-color: #6c757d;

    /* Custom Colors */
    --contact-text-color: #13121d;
    --border-color: rgba(0, 0, 0, 0.05);
    --backdrop-color: rgba(0, 0, 0, 0.6);
    --ripple-border-color: rgba(255, 255, 255, 0.3);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);

    /* Shadows */
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
    --shadow-hero-btn: 0 0.5rem 1.5625rem rgba(0, 0, 0, 0.3);

    /* Spacing System */
    --spacing-xs: 0.5rem; /* 8px */
    --spacing-sm: 0.75rem; /* 12px */
    --spacing-md: 1rem; /* 16px */
    --spacing-lg: 1.5rem; /* 24px */
    --spacing-xl: 2rem; /* 32px */
    --spacing-xxl: 2.5rem; /* 40px */
    --spacing-xxxl: 3.75rem; /* 60px */

    /* Layout Dimensions */
    --top-bar-height: 3.75rem; /* 60px */
    --navbar-height: 6.875rem; /* 110px */
    --navbar-brand-height: 8.75rem; /* 140px */
    --hero-height: 50rem; /* 800px */
    --container-padding: 2.375rem; /* 38px */

    /* Border Radius */
    --border-radius-sm: 0.5rem; /* 8px */
    --border-radius-md: 1rem; /* 16px */
    --border-radius-lg: 1.5rem; /* 25px */
    --border-radius-xl: 2rem; /* 32px */
    --border-radius-full: 100rem; /* 25px */

    /* Typography */
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 0.9375rem; /* 15px */
    --font-size-md: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.875rem; /* 30px */
    --font-size-hero: 4.5rem; /* 72px */
    --font-size-hero-mobile: 2.25rem; /* 36px */

    /* Font Families */
    --font-primary: 'Kumbh Sans', sans-serif;
    --font-secondary: 'Titillium Web', sans-serif;
    --font-fallback: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-mobile-nav: 9999;
    --z-hero-content: 2;
    --z-hero-backdrop: 1;
}

/* ========================================
   GLOBAL STYLES & RESET
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem calculations */
}

body {
    font-family: var(--font-fallback);
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   TOP BAR COMPONENT
   ======================================== */
.top-bar {
    background: white;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-size-sm);
    height: var(--top-bar-height);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 var(--container-padding);
}

.contact-info {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    padding: var(--spacing-sm) 0;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    color: var(--contact-text-color);
    transition: color var(--transition-normal);
    font-size: var(--font-size-base);
    font-weight: 400;
    font-family: var(--font-primary);
}

.contact-item:hover {
    color: var(--primary-color);
}

.contact-item i {
    color: var(--dark-color);
    font-weight: 400;
}

.contact-item a {
    text-decoration: none;
    color: var(--contact-text-color);
}

.contact-item a:hover {
    color: var(--primary-color) !important;
}

.top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--spacing-lg);
    height: 100%;
}

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border-radius: 0;
    color: var(--dark-color);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-0.125rem);
}

.social-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.get-consulting-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 var(--spacing-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: 0;
    transition:
        background-color var(--transition-normal),
        color var(--transition-normal);
    height: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.get-consulting-btn:hover {
    background: var(--dark-color);
    color: white;
    transition: all var(--transition-normal);
}

/* ========================================
   NAVIGATION BAR COMPONENT
   ======================================== */
.navbar {
    background: #f5f3f3;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    height: var(--navbar-height);
    position: sticky;
    top: 0;
    z-index: var(--z-dropdown);
    overflow: visible;
}

.navbar-content {
    display: flex;
    align-items: center;
    height: var(--navbar-height);
    padding: 0 var(--container-padding);
    position: relative;
    width: 100%;
}

/* Logo + Title Section */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    left: 0;
    height: 140px;
    top: 0;
    background: white;
    padding: 0px 0 0 38px;
    width: 358px;
    clip-path: polygon(0 0, 358px 0, 294px 100%, 0 100%);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-color);
    font-family: 'Kumbh Sans', sans-serif;
}

.brand-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Kumbh Sans', sans-serif;
}

/* Menu Links Section */
.navbar-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif;
    transition: color 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -8px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

/* Two Buttons Section */
.navbar-actions {
    display: flex;
    gap: 32px;
    position: absolute;
    right: 38px;
}

.navbar-actions .btn {
    padding: 10px 40px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    font-family: 'Kumbh Sans', sans-serif;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.navbar-actions .btn-outline-primary {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: white;
}

.navbar-actions .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.navbar-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
}

.navbar-actions .btn-primary:hover {
    background: var(--dark-color);
    border-color: var(--dark-color);
}

.navbar-actions .btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design for Navbar */
@media (max-width: 1200px) {
    .navbar-content {
        padding: 0 25px;
    }
}

@media (max-width: 992px) {
    .navbar-content {
        padding: 0 20px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-link {
        font-size: 15px;
    }

    /* Hide navbar actions (Login and Get Started buttons) on mobile */
    .navbar-actions {
        display: none;
    }
}

/* Hero Section Styles */
.hero-section {
    height: 600px;
    background-image: url('/assets/design/images/redd-francisco-PTRzqc_h1r4-unsplash.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    margin-top: -100px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    max-width: 60%;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    font-family: 'Titillium Web', sans-serif;
    line-height: 1.1;
    margin-bottom: 24px;
    /* text-transform: uppercase; */
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: white;
    font-family: 'Kumbh Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-btn {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 18px 62px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    font-family: 'Kumbh Sans', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-full);
}

.hero-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero-btn:focus-visible {
    outline: 3px solid white;
    outline-offset: 3px;
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
        background-attachment: scroll;
    }

    .hero-text {
        max-width: 80%;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    position: absolute;
    right: 38px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.hamburger-btn:hover {
    opacity: 0.7;
}

.menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Mobile Navigation Modal */
.mobile-nav-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    display: none;
}

.mobile-nav-modal.active {
    display: block;
}

.mobile-nav-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100vh;
    background: white;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-nav-modal.active .mobile-nav-panel {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--light-color);
    background: var(--light-color);
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-brand .brand-name {
    font-size: 24px;
    font-weight: 700;
    font-family: 'Kumbh Sans', sans-serif;
    color: var(--dark-color);
}

.mobile-nav-brand .brand-subtitle {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Kumbh Sans', sans-serif;
    color: var(--secondary-color);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 20px;
    color: var(--dark-color);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-nav-close:hover {
    color: var(--primary-color);
}

.mobile-nav-content {
    padding: 20px;
}

.mobile-top-info {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-color);
}

.mobile-top-info .contact-item {
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Kumbh Sans', sans-serif;
    color: #13121d;
}

.mobile-top-info .contact-item i {
    color: var(--dark-color);
    width: 20px;
}

.mobile-nav-links {
    margin-bottom: 30px;
}

.mobile-nav-link {
    display: block;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Titillium Web', sans-serif;
    text-transform: uppercase;
    color: var(--dark-color);
    text-decoration: none;
    border-bottom: 1px solid var(--light-color);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-color);
}

.mobile-nav-link:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
    border-radius: 4px;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-actions {
    margin-bottom: 30px;
}

.mobile-nav-actions .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    font-family: 'Kumbh Sans', sans-serif;
    text-transform: uppercase;
}

.mobile-nav-actions .btn:last-child {
    margin-bottom: 0;
}

.mobile-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-color);
}

.mobile-social-icons .social-link {
    background: transparent;
    border-radius: 0;
    color: var(--dark-color);
    font-size: 18px;
    padding: 8px;
    transition: color 0.3s ease;
}

.mobile-social-icons .social-link:hover {
    color: var(--primary-color);
}

/* Mobile Responsive Updates */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        right: 20px;
    }

    /* Maintain logo box design on mobile */
    .navbar-brand {
        height: 140px;
        width: 358px;
        clip-path: polygon(0 0, 358px 0, 294px 100%, 0 100%);
        padding: 15px 0 0 20px;
    }

    .brand-name {
        font-size: 30px;
    }

    .brand-subtitle {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        right: 15px;
    }

    /* Maintain logo box design on mobile */
    .navbar-brand {
        height: 140px;
        width: 320px;
        clip-path: polygon(0 0, 320px 0, 260px 100%, 0 100%);
        padding: 15px 0 0 15px;
    }

    .brand-name {
        font-size: 28px;
    }

    .brand-subtitle {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .mobile-menu-toggle {
        right: 15px;
    }

    .mobile-nav-panel {
        width: 280px;
    }

    /* Maintain logo box design on mobile */
    .navbar-brand {
        height: 140px;
        width: 280px;
        clip-path: polygon(0 0, 280px 0, 220px 100%, 0 100%);
        padding: 15px 0 0 15px;
    }

    .brand-name {
        font-size: 24px;
    }

    .brand-subtitle {
        font-size: 10px;
    }
}

/* Organic Shapes for Hero Section */
.organic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0.25;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 8%;
    left: 12%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    top: 55%;
    right: 18%;
    animation-delay: -5s;
    animation-duration: 30s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(225deg, var(--secondary-color), var(--accent-color));
    top: 25%;
    right: 8%;
    animation-delay: -10s;
    animation-duration: 20s;
}

.shape-4 {
    width: 130px;
    height: 130px;
    background: linear-gradient(315deg, var(--primary-color), var(--secondary-color));
    bottom: 15%;
    left: 8%;
    animation-delay: -15s;
    animation-duration: 35s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    top: 75%;
    left: 65%;
    animation-delay: -20s;
    animation-duration: 28s;
}

.shape-6 {
    width: 110px;
    height: 110px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    top: 12%;
    left: 75%;
    animation-delay: -25s;
    animation-duration: 22s;
}

.shape-7 {
    width: 70px;
    height: 70px;
    background: linear-gradient(60deg, var(--primary-color), var(--accent-color));
    top: 40%;
    left: 25%;
    animation-delay: -8s;
    animation-duration: 32s;
}

.shape-8 {
    width: 95px;
    height: 95px;
    background: linear-gradient(300deg, var(--secondary-color), var(--primary-color));
    bottom: 40%;
    right: 30%;
    animation-delay: -18s;
    animation-duration: 26s;
}

.shape-9 {
    width: 85px;
    height: 85px;
    background: linear-gradient(120deg, var(--accent-color), var(--secondary-color));
    top: 65%;
    left: 45%;
    animation-delay: -12s;
    animation-duration: 24s;
}

.shape-10 {
    width: 75px;
    height: 75px;
    background: linear-gradient(240deg, var(--primary-color), var(--accent-color));
    top: 35%;
    left: 60%;
    animation-delay: -22s;
    animation-duration: 38s;
}

.shape-11 {
    width: 105px;
    height: 105px;
    background: linear-gradient(30deg, var(--secondary-color), var(--primary-color));
    bottom: 30%;
    left: 35%;
    animation-delay: -6s;
    animation-duration: 29s;
}

.shape-12 {
    width: 65px;
    height: 65px;
    background: linear-gradient(210deg, var(--accent-color), var(--secondary-color));
    top: 50%;
    right: 35%;
    animation-delay: -28s;
    animation-duration: 33s;
}

/* Wave Shapes */
.wave-shape {
    position: absolute;
    opacity: 0.2;
    animation: waveFloat 25s infinite ease-in-out;
}

.wave-bottom-left {
    width: 300px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    bottom: 0;
    left: 0;
    border-radius: 0 50px 50px 0;
    clip-path: polygon(0% 100%, 0% 60%, 20% 40%, 40% 50%, 60% 30%, 80% 45%, 100% 20%, 100% 100%);
    animation-delay: 0s;
    animation-duration: 30s;
}

.wave-top-right {
    width: 280px;
    height: 70px;
    background: linear-gradient(225deg, var(--accent-color), var(--primary-color));
    top: 0;
    right: 0;
    border-radius: 50px 0 0 50px;
    clip-path: polygon(0% 0%, 0% 40%, 20% 60%, 40% 50%, 60% 70%, 80% 55%, 100% 80%, 100% 0%);
    animation-delay: -10s;
    animation-duration: 35s;
}

.wave-bottom-left-2 {
    width: 250px;
    height: 60px;
    background: linear-gradient(60deg, var(--secondary-color), var(--accent-color));
    bottom: 15%;
    left: 0;
    border-radius: 0 30px 30px 0;
    clip-path: polygon(0% 100%, 0% 70%, 25% 50%, 50% 65%, 75% 40%, 100% 60%, 100% 100%);
    animation-delay: -20s;
    animation-duration: 28s;
}

.wave-top-right-2 {
    width: 220px;
    height: 55px;
    background: linear-gradient(300deg, var(--primary-color), var(--accent-color));
    top: 20%;
    right: 0;
    border-radius: 30px 0 0 30px;
    clip-path: polygon(0% 0%, 0% 30%, 25% 50%, 50% 35%, 75% 60%, 100% 40%, 100% 0%);
    animation-delay: -15s;
    animation-duration: 32s;
}

@keyframes waveFloat {
    0%,
    100% {
        transform: translateX(0px) translateY(0px) scale(1);
    }
    25% {
        transform: translateX(10px) translateY(-15px) scale(1.05);
    }
    50% {
        transform: translateX(-5px) translateY(-10px) scale(0.95);
    }
    75% {
        transform: translateX(15px) translateY(-20px) scale(1.02);
    }
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) scale(1);
    }
    25% {
        transform: translateY(-20px) scale(1.1);
    }
    50% {
        transform: translateY(-10px) scale(0.9);
    }
    75% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Responsive Organic Shapes */
@media (max-width: 768px) {
    .shape {
        opacity: 0.2;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
        top: 12%;
        left: 8%;
    }

    .shape-2 {
        width: 70px;
        height: 70px;
        top: 60%;
        right: 12%;
    }

    .shape-3 {
        width: 60px;
        height: 60px;
        top: 30%;
        right: 5%;
    }

    .shape-4 {
        width: 90px;
        height: 90px;
        bottom: 20%;
        left: 5%;
    }

    .shape-5 {
        width: 65px;
        height: 65px;
        top: 70%;
        left: 70%;
    }

    .shape-6 {
        width: 80px;
        height: 80px;
        top: 15%;
        left: 80%;
    }

    .shape-7 {
        width: 50px;
        height: 50px;
        top: 45%;
        left: 20%;
    }

    .shape-8 {
        width: 65px;
        height: 65px;
        bottom: 35%;
        right: 25%;
    }

    .shape-9 {
        width: 60px;
        height: 60px;
        top: 60%;
        left: 40%;
    }

    .shape-10 {
        width: 55px;
        height: 55px;
        top: 40%;
        left: 55%;
    }

    .shape-11 {
        width: 75px;
        height: 75px;
        bottom: 25%;
        left: 30%;
    }

    .shape-12 {
        width: 45px;
        height: 45px;
        top: 55%;
        right: 30%;
    }

    /* Wave shapes responsive for tablet */
    .wave-bottom-left {
        width: 250px;
        height: 65px;
    }

    .wave-top-right {
        width: 230px;
        height: 60px;
    }

    .wave-bottom-left-2 {
        width: 200px;
        height: 50px;
    }

    .wave-top-right-2 {
        width: 180px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .shape {
        opacity: 0.15;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
    }

    .shape-2 {
        width: 55px;
        height: 55px;
    }

    .shape-3 {
        width: 45px;
        height: 45px;
    }

    .shape-4 {
        width: 70px;
        height: 70px;
    }

    .shape-5 {
        width: 50px;
        height: 50px;
    }

    .shape-6 {
        width: 60px;
        height: 60px;
    }

    .shape-7 {
        width: 40px;
        height: 40px;
    }

    .shape-8 {
        width: 50px;
        height: 50px;
    }

    .shape-9 {
        width: 45px;
        height: 45px;
    }

    .shape-10 {
        width: 40px;
        height: 40px;
    }

    .shape-11 {
        width: 55px;
        height: 55px;
    }

    .shape-12 {
        width: 35px;
        height: 35px;
    }

    /* Wave shapes responsive */
    .wave-bottom-left {
        width: 200px;
        height: 50px;
    }

    .wave-top-right {
        width: 180px;
        height: 45px;
    }

    .wave-bottom-left-2 {
        width: 160px;
        height: 40px;
    }

    .wave-top-right-2 {
        width: 140px;
        height: 35px;
    }
}

/* Ripple Container Above Hero Title */
.ripple-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.ripple-div {
    background: var(--primary-color);
    color: white;
    border-radius: 8px 0 8px 8px;
    position: relative;
    z-index: 2;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-family: 'Kumbh Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 80px;
    width: 80px;
}

.ripple-text {
    display: block;
}

/* Ripple Effects */
.ripple {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px 0 8px 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rippleExpand 3s infinite ease-out;
}

.ripple-1 {
    animation-delay: 0s;
    animation-duration: 3s;
}

.ripple-2 {
    animation-delay: 1s;
    animation-duration: 3s;
}

.ripple-3 {
    animation-delay: 2s;
    animation-duration: 3s;
}

@keyframes rippleExpand {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
    100% {
        width: 130%;
        height: 130%;
        opacity: 0;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Responsive Ripple Effects */
@media (max-width: 768px) {
    .ripple-container {
        margin-bottom: 20px;
    }

    .ripple-div {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .ripple-container {
        margin-bottom: 15px;
    }

    .ripple-div {
        padding: 8px 16px;
        font-size: 13px;
        border-radius: 6px 0 6px 6px;
    }

    .ripple {
        border-radius: 6px 0 6px 6px;
    }
}

/* ========================================
   WHY TRICON SECTION
   ======================================== */
.why-tricon-section {
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
}

.why-tricon-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: 0.03;
}

/* Organic Shapes for Why Tricon Section */
.why-tricon-organic-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.why-shape {
    position: absolute;
    border-radius: var(--border-radius-sm);
    border: 2px solid rgba(13, 110, 253, 0.15);
    opacity: 0.2;
    animation: whyFloat 25s infinite ease-in-out;
}

.why-shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 15%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.why-shape-2 {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    top: 70%;
    right: 8%;
    animation-delay: -8s;
    animation-duration: 28s;
}

.why-shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(225deg, var(--secondary-color), var(--accent-color));
    top: 25%;
    right: 15%;
    animation-delay: -15s;
    animation-duration: 32s;
}

.why-shape-4 {
    width: 70px;
    height: 70px;
    background: linear-gradient(315deg, var(--primary-color), var(--secondary-color));
    bottom: 20%;
    left: 10%;
    animation-delay: -20s;
    animation-duration: 26s;
}

.why-shape-5 {
    width: 90px;
    height: 90px;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    top: 60%;
    left: 70%;
    animation-delay: -12s;
    animation-duration: 34s;
}

.why-shape-6 {
    width: 50px;
    height: 50px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    top: 10%;
    left: 80%;
    animation-delay: -25s;
    animation-duration: 24s;
}

.why-shape-7 {
    width: 75px;
    height: 75px;
    background: linear-gradient(60deg, var(--primary-color), var(--accent-color));
    top: 45%;
    left: 25%;
    animation-delay: -18s;
    animation-duration: 29s;
}

.why-shape-8 {
    width: 65px;
    height: 65px;
    background: linear-gradient(300deg, var(--secondary-color), var(--primary-color));
    bottom: 35%;
    right: 25%;
    animation-delay: -5s;
    animation-duration: 31s;
}

@keyframes whyFloat {
    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-15px) translateX(10px) scale(1.05);
    }
    50% {
        transform: translateY(-8px) translateX(-5px) scale(0.95);
    }
    75% {
        transform: translateY(-20px) translateX(8px) scale(1.02);
    }
}

.why-tricon-section .why-tricon-content {
    padding-right: 2rem;
    position: relative;
    z-index: 2;
}

/* Scope why-tricon-subtitle to both sections where it's used */
.why-tricon-section .why-tricon-subtitle,
.testimonials-section .why-tricon-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

/* Scope content-subtitle-line to specific sections */
.why-tricon-section .content-subtitle-line,
.testimonials-section .content-subtitle-line {
    width: 50px;
    height: 4px;
    border-radius: var(--border-radius-full);
    background: var(--primary-color);
    margin-bottom: 0.75rem;
}

.why-tricon-section .why-tricon-main-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-secondary);
    line-height: 1.2;
}

.why-tricon-section .why-tricon-description {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.why-tricon-section .why-tricon-description:last-child {
    margin-bottom: 0;
}

/* Info Section */
.why-tricon-info-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 2rem 0;
}

.info-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.info-number {
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: var(--font-secondary);
}

.info-label {
    width: 100%;
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--dark-color);
    margin-top: 0.5rem;
    font-family: var(--font-primary);
}

.info-divider {
    width: 2px;
    height: 120px;
    background-color: #e0e0e0;
    flex-shrink: 0;
}

.info-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item span {
    font-size: var(--font-size-md);
    color: var(--dark-color);
    font-family: var(--font-primary);
}

/* Image Layout */
.why-tricon-section .why-tricon-images {
    position: relative;
    height: 500px;
    z-index: 2;
}

.why-tricon-section .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.why-tricon-section .main-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 76%;
    height: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 1;
}

.why-tricon-section .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-tricon-section .secondary-image {
    position: absolute;
    top: 4rem;
    left: 0;
    width: 40%;
    height: 50%;
    border: 8px solid white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    z-index: 2;
}

.why-tricon-section .secondary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
    .why-tricon-section {
        padding: 3rem 0;
    }

    .why-tricon-section .why-tricon-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .why-tricon-section .why-tricon-subtitle,
    .testimonials-section .why-tricon-subtitle {
        font-size: 0.875rem;
    }

    .why-tricon-section .why-tricon-main-title {
        font-size: 1.875rem;
    }

    .why-tricon-section .why-tricon-description {
        font-size: var(--font-size-md);
    }

    .why-tricon-section .why-tricon-images {
        height: 400px;
    }

    .why-tricon-info-section {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .info-number {
        font-size: 3rem;
    }

    .info-divider {
        height: 60px;
    }

    /* Organic shapes responsive adjustments */
    .why-shape {
        opacity: 0.15;
    }

    .why-shape-1 {
        width: 60px;
        height: 60px;
        top: 20%;
        left: 8%;
    }

    .why-shape-2 {
        width: 45px;
        height: 45px;
        top: 75%;
        right: 12%;
    }

    .why-shape-3 {
        width: 80px;
        height: 80px;
        top: 30%;
        right: 18%;
    }

    .why-shape-4 {
        width: 55px;
        height: 55px;
        bottom: 25%;
        left: 15%;
    }

    .why-shape-5 {
        width: 70px;
        height: 70px;
        top: 65%;
        left: 75%;
    }

    .why-shape-6 {
        width: 40px;
        height: 40px;
        top: 15%;
        left: 85%;
    }

    .why-shape-7 {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 30%;
    }

    .why-shape-8 {
        width: 50px;
        height: 50px;
        bottom: 40%;
        right: 30%;
    }
}

@media (max-width: 768px) {
    .why-tricon-section {
        padding: 2.5rem 0;
    }

    .why-tricon-section .why-tricon-subtitle,
    .testimonials-section .why-tricon-subtitle {
        font-size: 0.8rem;
    }

    .why-tricon-section .why-tricon-main-title {
        font-size: 1.5rem;
    }

    .why-tricon-section .why-tricon-description {
        font-size: var(--font-size-sm);
        line-height: 1.6;
    }

    .why-tricon-section .why-tricon-images {
        height: 350px;
    }

    .why-tricon-section .main-image {
        width: 75%;
        height: 80%;
    }

    .why-tricon-section .secondary-image {
        width: 45%;
        height: 45%;
        top: 3.5rem;
    }

    /* Organic shapes mobile adjustments */
    .why-shape {
        opacity: 0.1;
    }

    .why-shape-1 {
        width: 50px;
        height: 50px;
        top: 25%;
        left: 10%;
    }

    .why-shape-2 {
        width: 35px;
        height: 35px;
        top: 80%;
        right: 15%;
    }

    .why-shape-3 {
        width: 65px;
        height: 65px;
        top: 35%;
        right: 20%;
    }

    .why-shape-4 {
        width: 45px;
        height: 45px;
        bottom: 30%;
        left: 20%;
    }

    .why-shape-5 {
        width: 55px;
        height: 55px;
        top: 70%;
        left: 80%;
    }

    .why-shape-6 {
        width: 30px;
        height: 30px;
        top: 20%;
        left: 90%;
    }

    .why-shape-7 {
        width: 50px;
        height: 50px;
        top: 55%;
        left: 35%;
    }

    .why-shape-8 {
        width: 40px;
        height: 40px;
        bottom: 45%;
        right: 35%;
    }
}

@media (max-width: 576px) {
    .why-tricon-section {
        padding: 2rem 0;
    }

    .why-tricon-section .why-tricon-subtitle,
    .testimonials-section .why-tricon-subtitle {
        font-size: 0.75rem;
    }

    .why-tricon-section .why-tricon-main-title {
        font-size: 1.25rem;
    }

    .why-tricon-section .why-tricon-images {
        height: 300px;
    }

    .why-tricon-info-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .info-left {
        width: 100%;
    }

    .info-number {
        font-size: 2.5rem;
    }

    .info-label {
        font-size: var(--font-size-sm);
    }

    .info-divider {
        width: 100%;
        height: 1px;
        margin: 0.5rem 0;
    }

    .info-right {
        width: 100%;
    }

    .info-item {
        gap: 0.5rem;
    }

    .info-item i {
        font-size: 1rem;
    }

    .info-item span {
        font-size: var(--font-size-sm);
    }

    .why-tricon-section .main-image {
        width: 80%;
        height: 75%;
    }

    .why-tricon-section .secondary-image {
        width: 50%;
        height: 50%;
        top: 3rem;
    }

    /* Organic shapes small mobile adjustments */
    .why-shape {
        opacity: 0.08;
    }

    .why-shape-1 {
        width: 40px;
        height: 40px;
        top: 30%;
        left: 12%;
    }

    .why-shape-2 {
        width: 30px;
        height: 30px;
        top: 85%;
        right: 18%;
    }

    .why-shape-3 {
        width: 55px;
        height: 55px;
        top: 40%;
        right: 22%;
    }

    .why-shape-4 {
        width: 35px;
        height: 35px;
        bottom: 35%;
        left: 25%;
    }

    .why-shape-5 {
        width: 45px;
        height: 45px;
        top: 75%;
        left: 85%;
    }

    .why-shape-6 {
        width: 25px;
        height: 25px;
        top: 25%;
        left: 92%;
    }

    .why-shape-7 {
        width: 40px;
        height: 40px;
        top: 60%;
        left: 40%;
    }

    .why-shape-8 {
        width: 35px;
        height: 35px;
        bottom: 50%;
        right: 40%;
    }
}

/* ========================================
   BOOK AN APPOINTMENT SECTION
   ======================================== */
.book-appointment-section {
    padding: 4rem 0;
    background-color: #edfcff;
    position: relative;
}

.book-appointment-section .container {
    position: relative;
    z-index: 2;
}

/* Form Container */
.appointment-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.appointment-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
}

.appointment-subtitle {
    font-size: var(--font-size-lg);
    color: var(--dark-color);
    font-family: var(--font-primary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Custom Form Styles */
.appointment-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: var(--font-size-md);
    font-weight: 400;
    color: var(--dark-color);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Custom Input Styles */
.custom-input {
    /* padding: 1rem 1.25rem; */
    font-size: var(--font-size-md);
    font-family: var(--font-primary);
    border: 1px solid var(--dark-color);
    border-radius: var(--border-radius-sm);
    height: auto;
    min-height: 3.3rem;
    transition: all var(--transition-normal);
    background-color: white;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
    background-color: white;
    outline: none;
}

.custom-input::placeholder {
    color: var(--secondary-color);
    font-style: italic;
}

/* Custom Select Styles */
.custom-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
    appearance: none;
}

/* Custom Textarea Styles */
.custom-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkbox Styles */
.custom-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    margin-right: 0.75rem;
    border: 1px solid var(--dark-color);
    border-radius: var(--border-radius-sm);
    background-color: #f8f9fa;
    transition: all var(--transition-normal);
}

.custom-checkbox:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.custom-checkbox:focus {
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Form Check Label */
.form-check-label {
    font-size: var(--font-size-sm);
    color: var(--dark-color);
    font-family: var(--font-primary);
    line-height: 1.5;
    margin-bottom: 0;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.terms-link:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

/* Custom Submit Button */
.custom-submit-btn {
    padding: 0.8rem 2rem;
    font-size: var(--font-size-lg);
    font-weight: 600;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-full);
    border: none;
    background: var(--primary-color);
    color: white;
    transition: all var(--transition-normal);
}

.custom-submit-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.custom-submit-btn:active {
    transform: translateY(0);
}

/* Right Side Content */
.appointment-right-content {
    display: flex;
    align-items: start;
    justify-content: left;
}

.appointment-stats {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 88%;
    gap: 2rem;
    background-color: var(--primary-color);
    border-radius: 2px 2px 2px 80px;
    padding: 1rem;
    gap: 4rem;
}

.appointment-stats-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}

.appointment-stats-title {
    font-size: 3.4rem;
    color: white;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: var(--font-primary);
}

.appointment-stats-description {
    font-family: var(--font-secondary);
    font-size: 1.15rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0;
    opacity: 0.95;
}

.appointment-right-content-background {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .book-appointment-section {
        padding: 6rem 0;
    }

    .appointment-form-container {
        margin-bottom: 3rem;
    }

    .appointment-title {
        font-size: 2rem;
    }

    .appointment-subtitle {
        font-size: var(--font-size-md);
    }

    .appointment-stats {
        gap: 1.5rem;
    }

    .appointment-stats-title {
        font-size: 2.5rem;
    }

    .appointment-stats-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .book-appointment-section {
        padding: 4rem 0;
    }

    .appointment-title {
        font-size: 1.75rem;
    }

    .custom-input {
        padding: 0.875rem 1rem;
        min-height: 3rem;
    }

    .custom-submit-btn {
        padding: 0.875rem 1.5rem;
        font-size: var(--font-size-md);
    }

    .appointment-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .appointment-stats-item {
        min-height: 180px;
    }

    .appointment-stats-title {
        font-size: 2.25rem;
    }

    .appointment-stats-description {
        font-size: 0.85rem;
    }

    .stats-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .book-appointment-section {
        padding: 3rem 0;
    }

    .appointment-title {
        font-size: 1.5rem;
    }

    .appointment-subtitle {
        font-size: var(--font-size-sm);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .custom-input {
        padding: 0.75rem 0.875rem;
        min-height: 2.75rem;
    }

    .custom-submit-btn {
        padding: 0.75rem 1.25rem;
        font-size: var(--font-size-sm);
    }

    .appointment-stats-item {
        min-height: 160px;
    }

    .appointment-stats-title {
        font-size: 2rem;
    }

    .appointment-stats-description {
        font-size: 0.8rem;
    }

    .stats-content {
        padding: 1.25rem;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: 4rem 0;
    background-color: #ffffff;
    position: relative;
}

.testimonials-image {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: auto;
    z-index: 1;
}

.testimonials-image-container {
    overflow: hidden;
    position: relative;
    min-height: 700px;
    height: 100%;
}

.testimonials-image-bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
}
.testimonials-content {
    max-width: 100%;
}

.testimonials-header {
    margin-bottom: 3rem;
}

/* Scope the subtitle to testimonials section only */
.testimonials-section .testimonials-subtitle {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-bottom: 0.75rem;
}

.testimonials-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 0;
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.testimonials-slider .swiper-wrapper {
    align-items: stretch;
}

.testimonials-slider .testimonial-slide {
    height: auto;
}

.testimonials-slider .testimonial-content {
    background: transparent;
    padding: 2.5rem 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
}

.testimonials-slider .testimonial-content::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-color);
    font-family: serif;
    line-height: 1;
}

.testimonials-slider .testimonial-text {
    font-size: var(--font-size-lg);
    color: var(--dark-color);
    font-family: var(--font-primary);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonials-slider .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-slider .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials-slider .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-slider .author-info {
    flex: 1;
}

.testimonials-slider .author-name {
    font-size: var(--font-size-md);
    font-weight: 600;
    color: var(--dark-color);
    font-family: var(--font-primary);
    margin-bottom: 0.25rem;
}

.testimonials-slider .author-profession {
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
    font-family: var(--font-primary);
    margin-bottom: 0;
}

/* Swiper Pagination */
.testimonials-slider .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

.testimonials-slider .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: #d1d5db;
    opacity: 1;
    transition: all var(--transition-normal);
}

.testimonials-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonials-section {
        padding: 6rem 0;
    }

    .testimonials-main-title {
        font-size: 2rem;
    }

    .testimonials-slider .testimonial-content {
        padding: 2rem;
    }

    .testimonials-slider .testimonial-text {
        font-size: var(--font-size-md);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-main-title {
        font-size: 1.75rem;
    }

    .testimonials-slider .testimonial-content {
        padding: 1.5rem;
    }

    .testimonials-slider .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonials-slider .author-image {
        width: 80px;
        height: 80px;
    }

    .testimonials-image-container {
        min-height: 500px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 3rem 0;
    }

    .testimonials-main-title {
        font-size: 1.5rem;
    }

    .testimonials-slider .testimonial-content {
        padding: 1.25rem;
    }

    .testimonials-slider .testimonial-text {
        font-size: var(--font-size-sm);
    }

    .testimonials-image-container {
        min-height: 400px;
        margin-top: 2rem;
    }

    .testimonials-image {
        width: 100%;
    }
}

/* ========================================
   END OF TESTIMONIALS SECTION
   ======================================== */

/* ========================================
   CONSULTANTS SECTION
   ======================================== */
.consultants-section {
    padding: 4rem 0;
    background-image: url('/assets/design/images/bg/blog.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
}

.consultants-section .consultants-badge {
    display: inline-flex;
    align-items: left;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.consultants-section .consultants-badge i {
    font-size: 1rem;
}

.consultants-section .consultants-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-secondary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.consultants-section .consultants-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-family: var(--font-primary);
    line-height: 1.8;
    margin-bottom: 0;
    max-width: 700px;
}

/* Consultants Slider Container */
.consultants-section .consultants-slider-container {
    position: relative;
}

.consultants-section .consultants-slider {
    padding: 2rem 0;
    overflow: hidden;
}

.consultants-section .consultants-slider .swiper-wrapper {
    align-items: stretch;
}

.consultants-section .consultant-slide {
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

/* Consultant Card */
.consultants-section .consultant-card {
    background: white;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    width: 100%;
    max-width: 280px;
    margin: 0;
    height: 100%;
}

.consultants-section .consultant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Consultant Image */
.consultants-section .consultant-image {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    overflow: hidden;
    background: var(--light-color);
}

.consultants-section .consultant-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.consultants-section .consultant-card:hover .consultant-image img {
    transform: scale(1.1);
}

/* Consultant Overlay */
.consultants-section .consultant-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.consultants-section .consultant-card:hover .consultant-overlay {
    opacity: 1;
}

.consultants-section .consultant-social {
    display: flex;
    gap: 1rem;
}

.consultants-section .consultant-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.consultants-section .consultant-social-link:hover {
    background: white;
    border-color: white;
    color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
}

/* Consultant Info */
.consultants-section .consultant-info {
    padding: 1.75rem 1.5rem;
    text-align: center;
}

.consultants-section .consultant-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
}

.consultants-section .consultant-position {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.consultants-section .consultant-office {
    font-size: var(--font-size-sm);
    color: var(--secondary-color);
    font-family: var(--font-primary);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.consultants-section .consultant-office i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Pagination */
.consultants-section .consultant-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
    position: static;
}

.consultants-section .consultant-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 4px;
    border-radius: 4px;
    background: #d1d5db;
    opacity: 1;
    transition: all var(--transition-normal);
    margin: 0 4px;
}

.consultants-section .consultant-pagination .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .consultants-section {
        padding: 6rem 0;
    }

    .consultants-section .consultants-main-title {
        font-size: 2.25rem;
    }

    .consultants-section .consultants-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.25rem;
    }

    .consultants-section .consultants-subtitle {
        font-size: 1rem;
    }

    .consultants-section .consultants-header {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .consultants-section {
        padding: 4rem 0;
    }

    .consultants-section .consultants-main-title {
        font-size: 2rem;
    }

    .consultants-section .consultants-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1rem;
    }

    .consultants-section .consultants-title-decoration {
        width: 60px;
        height: 4px;
        margin-bottom: 1.5rem;
    }

    .consultants-section .consultants-subtitle {
        font-size: 0.95rem;
    }

    .consultants-section .consultants-header {
        margin-bottom: 2.5rem;
    }

    .consultants-section .consultants-slider-container {
        padding: 1rem 0 4rem;
    }

    .consultants-section .consultant-card {
        max-width: 100%;
    }

    .consultants-section .consultant-info {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .consultants-section {
        padding: 3rem 0;
    }

    .consultants-section .consultants-main-title {
        font-size: 1.75rem;
    }

    .consultants-section .consultants-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.9rem;
        gap: 0.4rem;
    }

    .consultants-section .consultants-badge i {
        font-size: 0.85rem;
    }

    .consultants-section .consultants-title-decoration {
        width: 50px;
        height: 3px;
        margin-bottom: 1.25rem;
    }

    .consultants-section .consultants-title-decoration::after {
        width: 12px;
        height: 12px;
    }

    .consultants-section .consultants-subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .consultants-section .consultants-header {
        margin-bottom: 2rem;
    }

    .consultants-section .consultant-name {
        font-size: 1.125rem;
    }

    .consultants-section .consultant-info {
        padding: 1.25rem 1rem;
    }
}

/* ========================================
   END OF CONSULTANTS SECTION
   ======================================== */

/* ========================================
   FOOTER SECTION
   ======================================== */
.footer-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

/* Footer Top Section */
.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-widget {
    margin-bottom: 2rem;
}

/* Company Info Widget */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.footer-logo .brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Kumbh Sans', sans-serif;
    display: block;
}

.footer-logo .brand-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #b8c5d6;
    font-family: 'Kumbh Sans', sans-serif;
    display: block;
}

.footer-description {
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: #cbd5e0;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links .social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social-links .social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    color: #ffffff;
}

/* Footer Widget Title */
.footer-widget-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: var(--border-radius-full);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    transition: all var(--transition-normal);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Footer Contact Info */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
    font-family: var(--font-primary);
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 20px;
}

.footer-contact a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

/* Footer Bottom Section */
.footer-bottom {
    padding: 2rem 0 4rem 0;
    /* background: rgba(0, 0, 0, 0.2); */
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: #9ca3af;
    font-family: var(--font-primary);
}

.footer-links-bottom {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: #9ca3af;
    text-decoration: none;
    font-size: var(--font-size-sm);
    font-family: var(--font-primary);
    transition: color var(--transition-normal);
}

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

.footer-links-bottom .separator {
    color: #6b7280;
    font-size: var(--font-size-sm);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-top {
        padding-bottom: 2rem;
    }

    .footer-section {
        padding: 3rem 0 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links-bottom {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 2.5rem 0 0;
    }

    .footer-top {
        padding-bottom: 1.5rem;
    }

    .footer-widget {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-logo {
        margin-bottom: 1.25rem;
    }

    .footer-description {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 576px) {
    .footer-section {
        padding: 2rem 0 0;
    }

    .footer-top {
        padding-bottom: 1rem;
    }

    .footer-widget-title {
        font-size: 1rem;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links-bottom .separator {
        display: none;
    }
}

/* ========================================
   END OF FOOTER SECTION
   ======================================== */

/* ========================================
   NEWS BANNER SECTION
   ======================================== */
.news-banner-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('/assets/design/images/bg/blog2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.news-banner-content {
    position: relative;
}

.news-banner-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    font-family: var(--font-primary);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.news-banner-description {
    font-size: 1.125rem;
    font-weight: 400;
    color: white;
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.news-banner-btn {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 1.125rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    font-family: var(--font-primary);
    text-transform: uppercase;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    border-radius: var(--border-radius-full);
}

.news-banner-btn i {
    transition: transform var(--transition-normal);
}

.news-banner-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.news-banner-btn:hover i {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-banner-section {
        padding: 5rem 0;
        background-attachment: scroll;
    }

    .news-banner-title {
        font-size: 2.5rem;
    }

    .news-banner-description {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .news-banner-section {
        padding: 4rem 0;
    }

    .news-banner-content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .news-banner-title {
        font-size: 2rem;
    }

    .news-banner-description {
        font-size: 1rem;
    }

    .news-banner-btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-banner-section {
        padding: 3rem 0;
    }

    .news-banner-title {
        font-size: 1.75rem;
    }

    .news-banner-description {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .news-banner-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

/* ========================================
   END OF NEWS BANNER SECTION
   ======================================== */

/* Basic utility classes will be added as sections are built */
