﻿/* ========================================
   Font Family
   ======================================== */
@font-face {
    font-family: 'playfair-display';
    src: url('../fonts/playfair-display.ttf') format('truetype');
}

@font-face {
    font-family: 'crimson-pro';
    src: url('../fonts/crimson-pro.ttf') format('truetype');
}

@font-face {
    font-family: 'ibm-plex-sans';
    src: url('../fonts/ibm-plex-sans.ttf') format('truetype');
}

/* ========================================
   CSS Variables for Theme Management
   ======================================== */
:root {
    /* Light Theme Colors */
    --primary-color: #11998e;
    --primary-dark: #348F50;
    --primary-light: #2d6a4f;
    --accent-color: #d4af37;
    --accent-dark: #b8942e;
    --text-primary: rgba(0, 0, 0, 0.8);
    --text-secondary: #4a4a4a;
    --text-light: #6a6a6a;
    --bg: #11998e;
    --bg-text: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --border-color: #dee2e6;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    /* Typography */
    --font-display: 'playfair-display', serif;
    /*--font-display: 'crimson-pro', serif;*/
    --font-body: 'ibm-plex-sans', serif;
    --font-sans: 'ibm-plex-sans', sans-serif;
    /* Spacing */
    --spacing-xs: 0.2rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
    --primary-color: #66CDAA;
    --primary-dark: #40916c;
    --primary-light: #74c69d;
    --accent-color: #ffd966;
    --accent-dark: #f4c542;
    --text-primary: #e8e8e8;
    --text-secondary: #b8b8b8;
    --text-light: #8a8a8a;
    --bg: #ffd966;
    --bg-text: #ffd966;
    --bg-primary: #0d1117;
    --bg-secondary: #161b22;
    --bg-tertiary: #21262d;
    --border-color: #30363d;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
}

/* ========================================
   Global Resets & Base Styles
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* ========================================
   Typography Styles (Reusable Classes)
   ======================================== */
.section-heading {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    text-align: center;
}

.section-heading-sub {
    color: #fff;
}

.section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    margin-top: 1.5rem;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
}

.section-subheading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--bg-text);
    padding: 0 5rem;
}

.section-description-01 {
    color: var(--text-secondary);
}

.feature-heading {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--bg);
    margin-bottom: var(--spacing-xs);
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

    .feature-text a {
        font-size: 1.1rem;
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .feature-text a:hover {
            color: var(--primary-light);
        }
/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

.section {
    padding: var(--spacing-xl) 0;
}

.section-alt {
    background-color: var(--bg-secondary);
}

.section-sub {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

    .section-sub::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: ctaPattern 20s linear infinite;
    }

/* ========================================
   Theme Toggle Button
   ======================================== */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 2rem;
    z-index: 1000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

    .theme-toggle:hover {
        transform: scale(1.1) rotate(15deg);
        background: var(--primary-dark);
    }

/* ========================================
   Header Styles
   ======================================== */
.site-header {
    background: var(--bg-primary);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition);
}

.header-top {
    background: var(--bg-secondary);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--border-color);
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    font-size: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

    .contact-item i {
        color: var(--accent-color);
    }

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

    .social-links a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--bg-tertiary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

.header-main {
    padding: var(--spacing-sx) 0;
}

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

.logo a {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-subtitle {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 0.25rem;
    font-size: 13px;
    line-height: 19px;
}

.logo a img {
    width: 80px;
    padding: 0.2rem;
}

.logo a h1 {
    margin: -94px 0px 0px 90px;
}

.logo a p {
    margin: -3px 0px 10px 90px;
}
/* ========================================
   Main Navigation Structure
   ======================================== */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin-right: 3rem;
}

    /* ========================================
   Top Level Navigation Items
   ======================================== */
    .nav-menu > li {
        position: relative;
    }

        .nav-menu > li > a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            font-family: var(--font-sans);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            border-radius: 6px;
            position: relative;
        }

            .nav-menu > li > a:hover {
                color: var(--primary-color);
                background: var(--bg-secondary);
            }

        /* Dropdown indicator arrow */
        .nav-menu > li.has-dropdown > a::after {
            content: '▼';
            font-size: 0.65rem;
            margin-left: 0.25rem;
            transition: transform 0.3s ease;
        }

        .nav-menu > li.has-dropdown:hover > a::after,
        .nav-menu > li.has-dropdown.active > a::after {
            transform: rotate(180deg);
        }

/* ========================================
   Dropdown Menu Styling
   ======================================== */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Show dropdown on hover */
.nav-menu > li.has-dropdown:hover .dropdown-menu,
.nav-menu > li.has-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown menu items */
.dropdown-menu li {
    list-style: none;
}

    .dropdown-menu li a {
        display: block;
        padding: 0.75rem 1.25rem;
        color: var(--text-primary);
        text-decoration: none;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        transition: var(--transition);
        border-left: 3px solid transparent;
    }

        .dropdown-menu li a:hover {
            background: var(--bg-secondary);
            color: var(--primary-color);
            border-left-color: var(--accent-color);
            padding-left: 1.5rem;
        }

        /* Active dropdown item */
        .dropdown-menu li a.active {
            color: var(--primary-color);
            font-weight: 600;
            background: var(--bg-secondary);
        }

/* ========================================
   CTA Button (Contact)
   ======================================== */
.nav-menu > li > a.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.625rem 1.5rem;
    margin-left: 0.5rem;
    border-radius: 6px;
}

    .nav-menu > li > a.nav-cta:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

/* ========================================
   Mobile Menu Styles (Responsive)
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: var(--transition);
    }

    /* Hamburger animation when active */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

/* ========================================
   Tablet & Mobile Responsive (1024px and below)
   ======================================== */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        padding: var(--spacing-xl) var(--spacing-md);
        overflow-y: auto;
        z-index: 1001;
    }

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

    /* Vertical menu layout */
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
    }

        .nav-menu > li {
            width: 100%;
            border-bottom: 1px solid var(--border-color);
        }

            .nav-menu > li > a {
                padding: var(--spacing-sm);
                width: 100%;
                justify-content: space-between;
            }

    /* Mobile dropdown styles */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--border-color);
        margin-top: 0;
        padding: 0;
        background: var(--bg-secondary);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu > li.has-dropdown.active .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }

    .dropdown-menu li a {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

        .dropdown-menu li a:hover {
            padding-left: 2rem;
        }

    /* CTA button in mobile */
    .nav-menu > li > a.nav-cta {
        margin-left: 0;
        margin-top: var(--spacing-sm);
        text-align: center;
    }

    /* Dropdown arrow rotation in mobile */
    .nav-menu > li.has-dropdown > a::after {
        transition: transform 0.3s ease;
    }

    .nav-menu > li.has-dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

/* Mobile menu overlay */
@media (max-width: 1024px) {
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 320px;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }
}

/* ========================================
   Small Mobile (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
    .main-nav {
        width: 100%;
        right: -100%;
    }

        .main-nav.active::before {
            right: 0;
        }
}

/* ========================================
   Dark Mode Adjustments for Dropdown
   ======================================== */
[data-theme="dark"] .dropdown-menu {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

    [data-theme="dark"] .dropdown-menu li a:hover {
        background: var(--bg-tertiary);
    }

/* ========================================
   Accessibility - Keyboard Navigation
   ======================================== */
.nav-menu > li > a:focus,
.dropdown-menu li a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Show dropdown on keyboard focus */
.nav-menu > li.has-dropdown > a:focus + .dropdown-menu,
.nav-menu > li.has-dropdown > a:focus-within + .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========================================
   Animation for dropdown entrance
   ======================================== */
@keyframes dropdownSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.nav-menu > li.has-dropdown:hover .dropdown-menu {
    animation: dropdownSlideIn 0.3s ease;
}
/* ========================================
   Button Styles (Reusable CTA Classes)
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-secondary:hover {
        background: var(--primary-color);
        color: white;
    }

.btn-accent {
    background: var(--accent-color);
    color: #fff;
}

[data-theme="dark"] .btn-accent {
    color: rgba(0, 0, 0, 0.8);
}

.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 800px;
        height: 800px;
        background: radial-gradient(circle, var(--primary-color)10, transparent 70%);
        opacity: 0.1;
        animation: heroFloat 20s infinite alternate;
    }

@keyframes heroFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
}

.hero-image {
    animation: fadeInRight 0.8s ease-out 0.2s both;
    text-align: center;
}

    .hero-image img {
        width: 80%;
        border-radius: 16px;
        box-shadow: var(--shadow-lg);
    }

.hero-image-sub img {
    width: 65%;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

/* =============================================
     PROFESSIONAL JOURNEY INFOGRAPHIC STYLES
     Using site's existing CSS variables
  ============================================= */
.journey-section {
    padding: 5rem 0 6rem;
    background: var(--bg-primary, #ffffff);
    position: relative;
    overflow: hidden;
}

    .journey-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse 60% 40% at 10% 20%, rgba(17,153,142,0.05) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 90% 80%, rgba(212,175,55,0.06) 0%, transparent 70%);
        pointer-events: none;
    }

    .journey-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

/* ---------- Section Header ---------- */
.journey-header {
    text-align: center;
    margin-bottom: 4.5rem;
}

.journey-eyebrow {
    display: inline-block;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color, #d4af37);
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.25);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    margin-bottom: 1.2rem;
}

.journey-title {
    font-family: 'playfair-display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-color, #11998e);
    line-height: 1.15;
    margin-bottom: 1rem;
}

    .journey-title span {
        color: var(--accent-color, #d4af37);
    }

.journey-subtitle {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary, #4a4a4a);
    max-width: 580px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

/* Progress path */
.journey-path-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.82rem;
    color: var(--text-light, #6a6a6a);
}

    .journey-path-label .step-chip {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
        background: var(--bg-secondary, #f8f9fa);
        border: 1px solid var(--border-color, #dee2e6);
        border-radius: 20px;
        padding: 0.3rem 0.75rem;
        font-size: 0.78rem;
        font-weight: 500;
        color: var(--text-secondary, #4a4a4a);
        transition: all 0.3s ease;
    }

        .journey-path-label .step-chip.active {
            background: var(--primary-color, #11998e);
            border-color: var(--primary-color, #11998e);
            color: white;
        }

    .journey-path-label .arrow {
        color: var(--border-color, #dee2e6);
        font-size: 1rem;
    }

/* ---------- Stats Strip ---------- */
.journey-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: linear-gradient(135deg, var(--primary-color, #11998e), #348F50);
    border-radius: 16px;
    margin-bottom: 4rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(17,153,142,0.25);
}

.stat-item {
    padding: 1.8rem 1.5rem;
    text-align: center;
    position: relative;
}

    .stat-item + .stat-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 20%;
        bottom: 20%;
        width: 1px;
        background: rgba(255,255,255,0.2);
    }

.stat-num {
    font-family: 'playfair-display', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    display: block;
}

    .stat-num sup {
        font-size: 1.2rem;
        vertical-align: super;
    }

.stat-label {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
}

.stat-accent {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--accent-color, #d4af37);
    margin: 0.5rem auto 0;
    border-radius: 1px;
}

/* ---------- Timeline Grid ---------- */
.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    margin-bottom: 4rem;
}

    /* Connector line */
    .journey-timeline::before {
        content: '';
        position: absolute;
        top: 52px;
        left: calc(12.5% - 1px);
        right: calc(12.5% - 1px);
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color, #11998e) 0%, var(--accent-color, #d4af37) 50%, #348F50 100%);
        border-radius: 2px;
        z-index: 0;
    }

/* ---------- Phase Cards ---------- */
.phase-card {
    background: var(--bg-primary, #fff);
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    cursor: default;
}

    .phase-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0,0,0,0.12);
        border-color: transparent;
    }

    .phase-card:nth-child(1) {
        --card-accent: #11998e;
        --card-accent-light: rgba(17,153,142,0.08);
    }

    .phase-card:nth-child(2) {
        --card-accent: #348F50;
        --card-accent-light: rgba(52,143,80,0.08);
    }

    .phase-card:nth-child(3) {
        --card-accent: #d4af37;
        --card-accent-light: rgba(212,175,55,0.08);
    }

    .phase-card:nth-child(4) {
        --card-accent: #2d6a4f;
        --card-accent-light: rgba(45,106,79,0.08);
    }

    .phase-card:hover {
        border-color: var(--card-accent) !important;
        box-shadow: 0 20px 48px rgba(0,0,0,0.10), 0 0 0 1px var(--card-accent);
    }

/* Top color bar */
.phase-top-bar {
    height: 5px;
    background: var(--card-accent);
    width: 100%;
}

/* Phase header area */
.phase-header {
    padding: 1.5rem 1.5rem 1rem;
    background: var(--card-accent-light);
    position: relative;
}

/* Phase node / icon */
.phase-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--card-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.phase-era {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--card-accent);
    margin-bottom: 0.3rem;
}

.phase-title {
    font-family: 'playfair-display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary, rgba(0,0,0,0.8));
    line-height: 1.25;
    margin-bottom: 0.3rem;
}

.phase-tagline {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.8rem;
    font-style: italic;
    color: var(--text-light, #6a6a6a);
}

/* Phase body */
.phase-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.phase-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .phase-bullets li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-family: 'ibm-plex-sans', sans-serif;
        font-size: 0.88rem;
        line-height: 1.5;
        color: var(--text-secondary, #4a4a4a);
    }

        .phase-bullets li::before {
            content: '';
            flex-shrink: 0;
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--card-accent);
            margin-top: 0.42em;
        }

/* Phase footer badge */
.phase-footer {
    padding: 0.9rem 1.5rem;
    border-top: 1px solid var(--border-color, #dee2e6);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--card-accent-light);
    color: var(--card-accent);
    border: 1px solid var(--card-accent);
    border-radius: 20px;
    padding: 0.25rem 0.75rem;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ---------- Highlight Milestones Row ---------- */
.milestone-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.milestone-card {
    background: var(--bg-secondary, #f8f9fa);
    border: 1px solid var(--border-color, #dee2e6);
    border-radius: 14px;
    padding: 1.75rem;
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .milestone-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: var(--m-color, #11998e);
        border-radius: 4px 0 0 4px;
    }

    .milestone-card:hover {
        background: var(--bg-primary, #fff);
        box-shadow: 0 8px 24px rgba(0,0,0,0.09);
        transform: translateY(-3px);
    }

.milestone-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--m-color, #11998e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.milestone-content h4 {
    font-family: 'playfair-display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary, rgba(0,0,0,0.8));
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.milestone-content p {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary, #4a4a4a);
    margin: 0;
}

.milestone-year {
    display: inline-block;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--m-color, #11998e);
    letter-spacing: 0.08em;
    margin-top: 0.4rem;
    text-transform: uppercase;
}

/* ---------- Bottom Quote Strip ---------- */
.journey-quote-strip {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    border-radius: 16px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    overflow: hidden;
}

    .journey-quote-strip::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 20px;
        font-family: 'playfair-display', serif;
        font-size: 14rem;
        color: rgba(255,255,255,0.04);
        line-height: 1;
        pointer-events: none;
    }

.quote-accent-line {
    flex-shrink: 0;
    width: 4px;
    height: 80px;
    background: linear-gradient(180deg, var(--accent-color, #d4af37), transparent);
    border-radius: 2px;
}

.quote-text {
    font-family: 'playfair-display', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
    flex: 1;
}

.quote-attribution {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.82rem;
    color: var(--accent-color, #d4af37);
    margin-top: 0.75rem;
    letter-spacing: 0.06em;
}

/* =============================================
     DARK MODE SUPPORT
  ============================================= */
[data-theme="dark"] .phase-card {
    background: var(--bg-secondary, #161b22);
    border-color: var(--border-color, #30363d);
}

[data-theme="dark"] .milestone-card {
    background: var(--bg-secondary, #161b22);
    border-color: var(--border-color, #30363d);
}

    [data-theme="dark"] .milestone-card:hover {
        background: var(--bg-tertiary, #21262d);
    }

[data-theme="dark"] .journey-stats-strip {
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

[data-theme="dark"] .step-chip {
    background: var(--bg-tertiary, #21262d);
    border-color: var(--border-color, #30363d);
}

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

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

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

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

.phase-card {
    animation: fadeSlideUp 0.6s ease both;
}

    .phase-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .phase-card:nth-child(2) {
        animation-delay: 0.22s;
    }

    .phase-card:nth-child(3) {
        animation-delay: 0.34s;
    }

    .phase-card:nth-child(4) {
        animation-delay: 0.46s;
    }

.milestone-card {
    animation: fadeSlideUp 0.6s ease both;
}

    .milestone-card:nth-child(1) {
        animation-delay: 0.55s;
    }

    .milestone-card:nth-child(2) {
        animation-delay: 0.65s;
    }

    .milestone-card:nth-child(3) {
        animation-delay: 0.75s;
    }

.journey-stats-strip {
    animation: scaleIn 0.5s ease both 0.05s;
}

.journey-quote-strip {
    animation: fadeSlideUp 0.7s ease both 0.8s;
}

/* =============================================
     RESPONSIVE
  ============================================= */
@media (max-width: 1024px) {
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

        .journey-timeline::before {
            display: none;
        }

    .milestone-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .journey-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(3)::before {
        display: none;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
    }

    .milestone-row {
        grid-template-columns: 1fr;
    }

    .journey-quote-strip {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1rem;
    }

    .quote-accent-line {
        width: 60px;
        height: 4px;
    }

    .journey-path-label {
        gap: 0.35rem;
    }

        .journey-path-label .arrow {
            display: none;
        }
}

@media (max-width: 480px) {
    .journey-stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item + .stat-item::before {
        display: none;
    }

    .phase-header {
        padding: 1.2rem;
    }

    .phase-body {
        padding: 1rem 1.2rem 1.2rem;
    }
}

/* ========================================
   Feature Grid (Reusable Component)
   ======================================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-grid-contact {
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 2px;
        height: 0;
        background: var(--accent-color);
        transition: height 0.3s;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

        .feature-card:hover::before {
            height: 100%;
        }

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(116, 198, 157, 0.2);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #66CDAA;
    margin-bottom: var(--spacing-sm);
}

.custom-card img {
    width: 100%;
    border-radius: 10px;
}

.custom-card-01 img {
    width: 100%;
}
/* ========================================
   Stats Section
   ======================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.stat-card {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--bg-primary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

    .stat-card:hover {
        border-color: var(--accent-color);
        transform: scale(1.05);
    }

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 500;
    color: var(--bg);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--bg-text);
    font-weight: 500;
}

/*<!-- =============================================
CURRENT RESPONSIBILITIES — Innovative Section
  ============================================= */
.resp-section {
    padding: 5.5rem 0 6rem;
    position: relative;
    overflow: hidden;
}

    /* Subtle geometric background pattern */
    .resp-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle at 15% 50%, rgba(17,153,142,0.07) 0%, transparent 55%), radial-gradient(circle at 85% 20%, rgba(212,175,55,0.07) 0%, transparent 50%), linear-gradient(135deg, transparent 45%, rgba(17,153,142,0.025) 100%);
        pointer-events: none;
    }

    /* Decorative large circle */
    .resp-section::after {
        content: '';
        position: absolute;
        right: -180px;
        top: -180px;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        border: 1.5px solid rgba(212,175,55,0.12);
        pointer-events: none;
    }

    .resp-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        position: relative;
    }

/* ---------- Section Header ---------- */
.resp-header {
    text-align: center;
    margin-bottom: 4rem;
}

.resp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-color, #d4af37);
    margin-bottom: 1rem;
}

    .resp-eyebrow::before,
    .resp-eyebrow::after {
        content: '';
        display: block;
        width: 32px;
        height: 1px;
        background: var(--accent-color, #d4af37);
        opacity: 0.5;
    }

.resp-title {
    font-family: 'playfair-display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-color, #11998e);
    line-height: 1.2;
    margin-bottom: 0.9rem;
}

.resp-desc {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 1rem;
    color: var(--text-light, #6a6a6a);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ---------- Cards Grid ---------- */
.resp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
}

/* ---------- Individual Role Card ---------- */
.role-card {
    background: var(--bg-primary, #fff);
    border-radius: 20px;
    border: 1px solid var(--border-color, #dee2e6);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.38s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.38s ease, border-color 0.3s ease;
    position: relative;
}

    .role-card:hover {
        transform: translateY(-10px) scale(1.01);
        box-shadow: 0 24px 60px rgba(0,0,0,0.11);
        border-color: transparent;
    }

    /* Card color themes */
    .role-card[data-role="aurobindo"] {
        --rc: #11998e;
        --rc-soft: rgba(17,153,142,0.08);
        --rc-mid: rgba(17,153,142,0.15);
    }

    .role-card[data-role="auro"] {
        --rc: #2d6a4f;
        --rc-soft: rgba(45,106,79,0.08);
        --rc-mid: rgba(45,106,79,0.15);
    }

    .role-card[data-role="samatva"] {
        --rc: #d4af37;
        --rc-soft: rgba(212,175,55,0.08);
        --rc-mid: rgba(212,175,55,0.18);
    }

    .role-card[data-role="asp"] {
        --rc: #348F50;
        --rc-soft: rgba(52,143,80,0.08);
        --rc-mid: rgba(52,143,80,0.15);
    }

    .role-card:hover {
        box-shadow: 0 24px 60px rgba(0,0,0,0.11), 0 0 0 1.5px var(--rc);
        border-color: transparent;
    }

/* ---------- Card Top Band ---------- */
.role-card-band {
    height: 6px;
    background: var(--rc);
    width: 100%;
    flex-shrink: 0;
}

/* ---------- Card Header (logo + title) ---------- */
.role-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.6rem 1.75rem 1.1rem;
    background: var(--rc-soft);
    border-bottom: 1px solid var(--border-color, #dee2e6);
    position: relative;
}

/* Logo container */
.role-logo-wrap {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: var(--bg-primary, #fff);
    border: 2px solid var(--rc-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.role-card:hover .role-logo-wrap {
    transform: scale(1.07) rotate(-2deg);
    box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}

.role-logo-wrap img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    border-radius: 15px;
}

/* Fallback icon if no logo */
.role-logo-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.role-card-title-wrap {
    flex: 1;
}

.role-org-tag {
    display: inline-block;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rc);
    background: var(--rc-mid);
    padding: 0.22rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.45rem;
}

.role-title {
    font-family: 'playfair-display', serif;
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--text-primary, rgba(0,0,0,0.8));
    line-height: 1.3;
    margin: 0;
}

/* ---------- Card Body ---------- */
.role-card-body {
    padding: 1.4rem 1.75rem 1rem;
    flex: 1;
}

.role-desc {
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary, #4a4a4a);
    margin: 0;
}

/* ---------- Card Footer (key highlights) ---------- */
.role-card-footer {
    padding: 1rem 1.75rem 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: 'ibm-plex-sans', sans-serif;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--rc);
    background: var(--rc-soft);
    border: 1px solid var(--rc-mid);
    border-radius: 20px;
    padding: 0.3rem 0.75rem;
    transition: background 0.25s ease;
}

.role-card:hover .role-tag {
    background: var(--rc-mid);
}

/* ---------- Decorative quote mark on hover ---------- */
.role-card::after {
    content: attr(data-initials);
    position: absolute;
    bottom: -10px;
    right: 16px;
    font-family: 'playfair-display', serif;
    font-size: 6rem;
    font-weight: 800;
    color: var(--rc);
    opacity: 0.04;
    line-height: 1;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(0);
}

.role-card:hover::after {
    opacity: 0.07;
    transform: translateY(-6px);
}

/* ---------- Bottom Connector Bar ---------- */
.resp-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color, #11998e), #2d6a4f);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
}

    .resp-connector::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 50%, rgba(212,175,55,0.15) 0%, transparent 60%);
    }

.connector-text {
    font-family: 'playfair-display', serif;
    font-size: 1rem;
    font-style: italic;
    color: rgba(255,255,255,0.88);
    text-align: center;
    position: relative;
    z-index: 1;
}

    .connector-text strong {
        color: var(--accent-color, #d4af37);
        font-style: normal;
    }

/* ---------- Animations ---------- */
@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

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

.role-card {
    animation: riseIn 0.6s cubic-bezier(0.34,1.3,0.64,1) both;
}

    .role-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .role-card:nth-child(2) {
        animation-delay: 0.18s;
    }

    .role-card:nth-child(3) {
        animation-delay: 0.31s;
    }

    .role-card:nth-child(4) {
        animation-delay: 0.44s;
    }

/* ---------- Dark Mode ---------- */
[data-theme="dark"] .role-card {
    background: var(--bg-secondary, #161b22);
    border-color: var(--border-color, #30363d);
}

[data-theme="dark"] .role-card-header {
    border-bottom-color: var(--border-color, #30363d);
}

[data-theme="dark"] .role-logo-wrap {
    background: var(--bg-tertiary, #21262d);
    border-color: var(--border-color, #30363d);
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .resp-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .role-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .role-card-body {
        padding: 1.2rem 1.25rem 0.8rem;
    }

    .role-card-footer {
        padding: 0.8rem 1.25rem 1.25rem;
    }

    .role-card-header {
        padding: 1.25rem 1.25rem 1rem;
    }
}

/* ========================================
   CTA Section (Reusable Component)
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
        background-size: 50px 50px;
        animation: ctaPattern 20s linear infinite;
    }

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

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

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section .section-heading,
.cta-section .section-description {
    color: white;
}

    .cta-section .section-heading::after {
        background: linear-gradient(90deg, rgba(255,255,255,0.5), transparent);
        margin-left: auto;
        margin-right: auto;
    }

/* ========================================
   Content Cards
   ======================================== */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.content-card {
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .content-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
    }

.content-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.content-card-body {
    padding: 1rem;
}

.content-card-title {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.content-card-text {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    font-size: 1rem;
}

.content-card-meta {
    display: flex;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   Timeline
   ======================================== */
.timeline {
    position: relative;
    padding: var(--spacing-md) 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border-color);
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.timeline-content {
    flex: 1;
    background: var(--bg-primary);
    padding: var(--spacing-md);
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--bg-primary);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-left: 50px;
    }

    .timeline-marker {
        left: 20px;
    }
}

/* ========================================
   Zigzag Container with Images
   ======================================== */
.achievements-zigzag-with-images {
    max-width: 1200px;
}

/* ========================================
   Achievement Row (Full Width)
   ======================================== */
.achievement-zigzag-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
}

    /* Alternate grid order for zigzag effect */
    .achievement-zigzag-row.right {
        direction: rtl;
    }

        .achievement-zigzag-row.right > * {
            direction: ltr;
        }

/* ========================================
   Content Side (Badge + Text)
   ======================================== */
.achievement-side-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

/* ========================================
   Floating Badge Design
   ======================================== */
.achievement-floating-badge {
    width: 100px;
    height: 100px;
    min-width: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite, morph 8s ease-in-out infinite;
    transition: all 0.4s ease;
    z-index: 2;
}

    /* Badge color variations */
    .achievement-floating-badge.medal {
        background: linear-gradient(135deg, #C0C0C0 0%, #808080 100%);
        box-shadow: 0 15px 40px rgba(192, 192, 192, 0.3);
    }

    .achievement-floating-badge.bronze {
        background: linear-gradient(135deg, #CD7F32 0%, #8B4513 100%);
        box-shadow: 0 15px 40px rgba(205, 127, 50, 0.3);
    }

    .achievement-floating-badge.academic {
        background: linear-gradient(135deg, #4169E1 0%, #1E3A8A 100%);
        box-shadow: 0 15px 40px rgba(65, 105, 225, 0.3);
    }

    .achievement-floating-badge.iit {
        background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
        box-shadow: 0 15px 40px rgba(99, 102, 241, 0.3);
    }

    .achievement-floating-badge.green {
        background: linear-gradient(135deg, #2d6a4f 0%, #1a4d2e 100%);
        box-shadow: 0 15px 40px rgba(45, 106, 79, 0.3);
    }

/* Shine effect on badge */
.badge-shine {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 40%;
    height: 40%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    opacity: 0.7;
}

/* Hover effects for badge */
.achievement-zigzag-row:hover .achievement-floating-badge {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ========================================
   Floating & Morphing Animations
   ======================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

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

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }

    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
    }

    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

/* ========================================
   Achievement Content Box
   ======================================== */
.achievement-zigzag-content {
    flex: 1;
    background: var(--bg-primary);
    padding: 1.75rem;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    .achievement-zigzag-content ul {
        list-style-type: none;
        font-size: 15px;
        margin: 0px 0px 0px 20px;
    }
/* Hover effect for content */
.achievement-zigzag-row:hover .achievement-zigzag-content {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ========================================
   Image Side
   ======================================== */
.achievement-side-image {
    position: relative;
    overflow: hidden;
}

.image-frame {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

    .image-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block;
    }

.image-slider {
    display: flex;
    width: 100%;
    height: 100%;
    animation: slideImages 12s infinite;
}

    .image-slider img {
        width: 100%;
        height: 100%;
        flex: 0 0 100%;
        object-fit: cover;
        display: block;
    }

/* Sliding animation */
@keyframes slideImages {
    0% {
        transform: translateX(0);
    }

    33% {
        transform: translateX(0);
    }

    38% {
        transform: translateX(-100%);
    }

    66% {
        transform: translateX(-100%);
    }

    71% {
        transform: translateX(-200%);
    }

    100% {
        transform: translateX(-200%);
    }
}


/* Image zoom on hover */
.achievement-zigzag-row:hover .image-frame img {
    transform: scale(1.08);
}

/* Gradient overlay on image */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 77, 46, 0.3), rgba(212, 175, 55, 0.2));
    opacity: 0.6;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.achievement-zigzag-row:hover .image-overlay {
    opacity: 0.3;
}

/* Decorative corner accent on image */
.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, var(--accent-color) 50%);
    opacity: 0.8;
    z-index: 1;
    transition: all 0.4s ease;
}

.achievement-zigzag-row:hover .image-frame::before {
    width: 120px;
    height: 120px;
    opacity: 1;
}

/* ========================================
   Content Typography
   ======================================== */
.achievement-category {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
}

.achievement-zigzag-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0.5rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.achievement-zigzag-row:hover .achievement-zigzag-title {
    color: var(--primary-color);
}

.achievement-zigzag-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0.75rem 0 1.25rem 0;
}

.achievement-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    font-family: var(--font-sans);
}

.meta-org {
    font-weight: 600;
    color: var(--primary-color);
}

.meta-divider {
    color: var(--border-color);
}

.meta-year {
    font-style: italic;
}

/* ========================================
   Responsive Design - Tablet (1024px)
   ======================================== */
@media (max-width: 1024px) {
    .achievement-zigzag-row {
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .achievement-floating-badge {
        width: 85px;
        height: 85px;
        min-width: 85px;
        font-size: 2rem;
    }

    .image-frame {
        height: 280px;
    }

    .achievement-zigzag-title {
        font-size: 1.45rem;
    }

    .achievement-side-content {
        gap: 1.5rem;
    }
}

/* ========================================
   Responsive Design - Mobile (768px)
   ======================================== */
@media (max-width: 768px) {
    .achievement-zigzag-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
        direction: ltr !important;
    }

        .achievement-zigzag-row.right {
            direction: ltr;
        }

    /* Stack image on top, content below */
    .achievement-side-image {
        order: -1;
    }

    .image-frame {
        height: 240px;
    }

    .achievement-side-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .achievement-floating-badge {
        width: 80px;
        height: 80px;
        min-width: 80px;
        font-size: 1.75rem;
    }

    .achievement-zigzag-content {
        width: 100%;
    }

    .achievement-zigzag-title {
        font-size: 1.2rem;
    }

    .achievement-zigzag-text {
        font-size: 0.9rem;
    }

    .achievement-meta {
        justify-content: center;
    }

    .achievement-category {
        font-weight: 500;
        letter-spacing: initial;
    }
}

/* ========================================
   Dark Mode Adjustments
   ======================================== */
[data-theme="dark"] .achievement-zigzag-content {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

[data-theme="dark"] .achievement-zigzag-row:hover .achievement-zigzag-content {
    background: var(--bg-tertiary);
}

[data-theme="dark"] .image-overlay {
    background: linear-gradient(135deg, rgba(82, 183, 136, 0.3), rgba(255, 217, 102, 0.2));
}

/* ========================================
   Fade-in Animations
   ======================================== */
.achievement-zigzag-row {
    opacity: 0;
    animation: fadeInRow 0.8s ease forwards;
}

    .achievement-zigzag-row:nth-child(1) {
        animation-delay: 0.1s;
    }

    .achievement-zigzag-row:nth-child(2) {
        animation-delay: 0.2s;
    }

    .achievement-zigzag-row:nth-child(3) {
        animation-delay: 0.3s;
    }

    .achievement-zigzag-row:nth-child(4) {
        animation-delay: 0.4s;
    }

    .achievement-zigzag-row:nth-child(5) {
        animation-delay: 0.5s;
    }

    .achievement-zigzag-row:nth-child(6) {
        animation-delay: 0.6s;
    }

@keyframes fadeInRow {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

/* ========================================
   Accessibility
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .achievement-floating-badge,
    .image-frame img {
        animation: none;
        transition: none;
    }

    .achievement-zigzag-row {
        animation: none;
        opacity: 1;
        transform: none;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .achievement-zigzag-row {
        grid-template-columns: 1fr;
        page-break-inside: avoid;
        margin-bottom: 2rem;
    }

    .achievement-floating-badge {
        animation: none;
        box-shadow: none;
    }

    .image-frame {
        height: 200px;
        box-shadow: none;
    }
}

/* ========================================
   Form Styles
   ======================================== */

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

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

    .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(26, 77, 46, 0.1);
    }

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.form-label sup {
    color: orangered;
}

.form-captcha {
    color: var(--primary-color);
    letter-spacing: 3px;
    font-size: 15px;
    font-weight: 600;
}

.form-message {
    color: var(--primary-color);
    margin: 1rem 0;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.form-control-01 {
    padding: 0.7rem 1rem;
    margin: 0.4rem 0 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 0fr;
    gap: 3rem;
    align-items: start;
    padding: 0 7rem;
}
/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-heading, .footer-heading a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

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

.footer-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

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

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--bg-tertiary);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-secondary);
        transition: var(--transition);
    }

        .footer-social a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-3px);
        }

.footer-links {
    list-style: none;
}

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

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: var(--transition);
        font-size: 1rem;
    }

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
    font-size: 1rem;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

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

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

.footer-bottom {
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-secondary {
    display: flex;
    gap: var(--spacing-md);
}

    .footer-secondary a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 0.8rem;
        transition: var(--transition);
    }

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

.footer-copyright {
    color: var(--text-light);
    font-size: 0.8rem;
}

    .footer-copyright a {
        color: var(--text-light);
        transition: var(--transition);
        text-decoration: underline;
    }

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

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

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

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent-color);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        /* Spacing */
        --spacing-xs: 0.2rem;
        --spacing-sm: 0.5rem;
        --spacing-md: 1rem;
        --spacing-lg: 1.5rem;
        --spacing-xl: 1.8rem;
    }

    body {
        font-size: 1rem;
    }

    .theme-toggle {
        width: 30px;
        height: 30px;
        top: 23px;
        right: 4rem;
        font-size: 16px;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .site-header,
    .site-footer,
    .theme-toggle,
    .btn,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ========================================
   SITEMAP PAGE STYLES
   ======================================== */

/* Sitemap Grid Layout */
.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Sitemap Card (matching content-card style) */
.sitemap-card {
    background: var(--bg-primary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

    .sitemap-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--accent-color);
    }

/* Large cards (with subsections) */
.sitemap-card-large {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .sitemap-card-large {
        grid-column: span 1;
    }
}

/* Sitemap Icon (matching feature-icon style) */
.sitemap-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: var(--spacing-md);
    transition: all 0.3s ease;
}

.sitemap-card:hover .sitemap-icon {
    transform: scale(1.1);
}

/* Sitemap Title */
.sitemap-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-sm) 0;
    color: var(--text-primary);
}

    .sitemap-title a {
        color: var(--text-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .sitemap-title a:hover {
            color: var(--primary-color);
        }

/* Sitemap Description */
.sitemap-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

/* Sitemap Subsection Links */
.sitemap-links {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
}

    .sitemap-links li {
        margin-bottom: var(--spacing-sm);
    }

        .sitemap-links li a {
            display: flex;
            align-items: center;
            padding: var(--spacing-sm);
            background: var(--bg-secondary);
            border-radius: 8px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
            font-size: 1rem;
        }

            .sitemap-links li a::before {
                content: '→';
                margin-right: var(--spacing-sm);
                color: var(--primary-color);
                font-weight: bold;
            }

            .sitemap-links li a:hover {
                background: var(--bg-tertiary);
                border-left-color: var(--accent-color);
                padding-left: calc(var(--spacing-sm) + 8px);
                color: var(--primary-color);
            }

/* Legal Links Grid */
.legal-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.legal-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
}

    .legal-link i {
        font-size: 2rem;
        color: var(--primary-color);
    }

    .legal-link span {
        font-weight: 400;
    }

    .legal-link:hover {
        border-color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }

        .legal-link:hover i {
            color: var(--accent-color);
        }

.legal-link-active {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

    .legal-link-active i {
        color: var(--accent-color);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-card-large {
        grid-column: span 1;
    }

    .sitemap-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sitemap-title {
        font-size: 1rem;
    }

    .legal-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .legal-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .sitemap-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

    [data-theme="dark"] .sitemap-card:hover {
        background: var(--bg-tertiary);
    }

[data-theme="dark"] .sitemap-links li a {
    background: var(--bg-tertiary);
}

    [data-theme="dark"] .sitemap-links li a:hover {
        background: var(--bg-primary);
    }

[data-theme="dark"] .legal-link {
    background: var(--bg-secondary);
}

[data-theme="dark"] .legal-link-active {
    background: rgba(212, 175, 55, 0.1);
}

.small_img_01 {
    width: 100px;
    border-radius: 3px;
}

/* ========================================
   Medium tablets and Medium laptop Styles
   ======================================== */

@media (min-width: 768px) and (max-width: 991px) {
    .theme-toggle {
        right: 6rem;
    }
}

/* ========================================
   Mobile Styles
   ======================================== */

@media (max-width: 768px) {

    :root {
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo a img {
        width: 65px;
    }

    .logo a h1 {
        margin: -70px 0px 0px 80px;
    }

    .logo a p {
        margin: -3px 0px 10px 80px;
    }

    .header-contact {
        font-size: 0.9rem;
    }

    .hero-title {
        font-size: clamp(1.3rem, 6vw, 4rem);
        line-height: 1.4;
    }

    .hero-label {
        font-size: 0.9rem;
        font-weight: 500;
        text-transform: initial;
        letter-spacing: inherit;
    }

    hero-subtitle {
        font-size: 1.3rem;
        color: var(--primary-color);
        font-weight: 600;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .section-description {
        font-size: 1.2rem;
        line-height: 1.3;
    }

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

    .feature-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .content-card-title {
        font-size: 1rem;
    }

    .section-sub {
        padding: 1.8rem 0;
    }

    .section-subheading {
        font-size: 1.1rem;
    }

    .section-description {
        padding: 0;
    }

    .contact-form-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .form-grid {
        padding: 0rem;
        grid-gap: 0;
    }
}
