/* ==========================================
   CANDID MEDPACK LLP - MASTER STYLESHEET
   Foundation: Header & Footer Only
   Build sections step-by-step from here
   ========================================== */

/* ==================== 1. CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --primary-color: #008B8B;
    --primary-dark: #006666;
    --primary-light: #20B2AA;

    /* Neutral Colors */
    --dark-navy: #2c3e50;
    --dark-grey: #34495e;
    --dark-bg: #1e293b;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --light-bg: #f0f9f9;
    --border-light: #e2e8f0;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;

    /* Layout */
    --container-max-width: 1200px;
    --header-height: 81px;
    --border-radius-sm: 5px;
    --border-radius-md: 10px;
    --border-radius-lg: 15px;
    --border-radius-xl: 20px;
    --border-radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==================== 2. GLOBAL RESET & BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-normal);
}

ul,
ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ==================== 3. LAYOUT UTILITIES ==================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==================== 4. SECTION SPACING STANDARDS ==================== */
/* 
   Standard section spacing to maintain consistency across all pages
   Use these classes on <section> elements
*/

/* Standard section - use for most sections */
section {
    padding: var(--spacing-2xl) 0;
    /* 4rem (64px) top & bottom */
}

/* First section after header - reduced top padding */
.section-first {
    padding-top: calc(var(--header-height) + var(--spacing-lg));
    /* Header + 2rem */
}

/* Section with no top padding (when following another section with colored background) */
.section-no-top {
    padding-top: 0;
}

/* Section with no bottom padding */
.section-no-bottom {
    padding-bottom: 0;
}

/* Smaller section spacing for compact layouts */
.section-compact {
    padding: var(--spacing-xl) 0;
    /* 3rem (48px) top & bottom */
}

/* Large section spacing for emphasis */
.section-large {
    padding: calc(var(--spacing-2xl) + var(--spacing-lg)) 0;
    /* 6rem (96px) top & bottom */
}

/* Section with background colors */
.section-light {
    background: var(--light-bg);
}

.section-dark {
    background: var(--dark-bg);
    color: var(--white);
}

.section-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ==================== 5. GENERIC BUTTONS ==================== */
/* 
   Standardized button system for consistent styling across all pages
   Use these classes: .btn, .btn-primary, .btn-secondary, .btn-outline, etc.
*/

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Variants */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--light-bg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-dark {
    background: var(--dark-bg);
    color: var(--white);
    border-color: transparent;
}

.btn-dark:hover {
    background: var(--dark-navy);
    transform: translateY(-2px);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 20px;
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: 16px 40px;
    font-size: var(--font-size-lg);
}

.btn-xl {
    padding: 18px 48px;
    font-size: var(--font-size-xl);
}

/* Button Shapes */
.btn-rounded {
    border-radius: var(--border-radius-full);
}

.btn-square {
    border-radius: var(--border-radius-sm);
}

/* Button Icons */
.btn i {
    transition: transform var(--transition-normal);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Button States */
.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Block Button (Full Width) */
.btn-block {
    width: 100%;
}

/* Button Group */
.btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}

/* ==================== 6. HERO SECTION ==================== */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #004d4d 0%, #008B8B 50%, #20B2AA 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: calc(var(--header-height) + var(--spacing-2xl)) var(--spacing-md) var(--spacing-2xl);
}

/* Hero background gradient overlay */
.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(32, 178, 170, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 77, 77, 0.4) 0%, transparent 45%),
        radial-gradient(ellipse at 60% 80%, rgba(0, 139, 139, 0.25) 0%, transparent 45%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* Hero Layout - Split or Centered */
.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content.hero-split {
    grid-template-columns: 0.94fr 1.06fr;
    gap: 30px;
}

/* Hero Text Content */
.hero-text {
    color: var(--white);
    padding-top: 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.1rem;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 24px;
    max-width: 500px;
}

/* Hero Highlights - India Style Vertical Stack */
.hero-highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 35px;
}

.hero-highlight {
    display: flex;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #FF9933;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.hero-highlight-icon {
    flex-shrink: 0;
}

.hero-highlight-icon i {
    font-size: 1.3rem;
    color: #00ff88;
}

.hero-highlight-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
}

.hero-highlight-text strong {
    color: #00ff88;
    font-weight: 700;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

/* Hero buttons extend from generic .btn class */
.hero-btn {
    /* Inherits from .btn but with hero-specific overrides */
    padding: 12px 28px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
}

.hero-btn-primary {
    /* Extends .btn + .btn-secondary */
    background: var(--white);
    color: #006666;
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #f8ffff;
}

.hero-btn-outline {
    /* Extends .btn + .btn-outline-white */
    background: transparent !important;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Hero Image/Visual Content - Showcase Grid */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 15px;
}

.hero-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    max-width: 650px;
    position: relative;
    z-index: 1;
}

.hero-showcase-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.hero-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-showcase-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.hero-showcase-item:hover img {
    transform: scale(1.08);
}

/* Showcase Labels */
.showcase-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.hero-showcase-item:hover .showcase-label {
    opacity: 1;
    transform: translateY(0);
}

.hero-showcase-main {
    grid-row: span 2;
    height: 450px;
}

.hero-showcase-secondary {
    height: 215px;
}

.hero-showcase-tertiary {
    height: 215px;
}

/* Decorative Circles */
.showcase-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.deco-1 {
    width: 300px;
    height: 300px;
    top: -125px;
    right: -100px;
    animation: pulse-slow 4s ease-in-out infinite;
}

.deco-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    top: 375px;
    left: -80px;
    animation: pulse-slow 4s ease-in-out infinite 1s;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Single hero image (alternative layout) */
.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}


/* Text Gradient Effect */
.text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #a8edea 50%, #fed6e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Hero Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease both;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.fade-in-delay-3 {
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Slide In Right Animation (for hero visual) */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 1s ease 0.3s both;
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.6s ease both;
}

/* ==================== HERO SECTION - RESPONSIVE ==================== */
@media (max-width: 992px) {
    .hero-content.hero-split {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-showcase {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-showcase-main {
        height: 350px;
    }

    .hero-showcase-secondary,
    .hero-showcase-tertiary {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: calc(var(--header-height) + 1.5rem) 1rem 3rem;
        height: auto;
        min-height: 100dvh;
        align-items: flex-start;
        /* Prevents vertical centering from pushing content down */
    }

    .hero-content {
        padding-top: 0;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        padding-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: var(--font-size-base);
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 1rem;
    }

    .hero-highlights {
        gap: 10px;
        margin-bottom: 2rem;
        width: 100%;
        max-width: 400px;
        /* Constrain width for better look */
    }

    .hero-highlight {
        padding: 10px 15px;
        text-align: left;
        /* Keep highlight text left aligned for readability */
    }

    .hero-highlight-text {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 350px;
        /* Prevent overly wide buttons */
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }

    .hero-showcase-main {
        grid-row: auto;
        height: 250px;
    }

    .hero-showcase-secondary,
    .hero-showcase-tertiary {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
}


.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: all var(--transition-normal);
}

.navbar {
    height: var(--header-height);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo Section */
.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
    padding: 13px 0;
    position: relative;
    left: -1px;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-normal);
    position: relative;
}

/* Animated Underline Effect */
.nav-menu>li>a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a.active::after {
    width: calc(100% - 30px);
}

.nav-menu>li>a:hover {
    color: var(--primary-color);
}

.nav-menu>li>a.active {
    color: var(--primary-color);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown>a i {
    font-size: 0.75rem;
    transition: transform var(--transition-normal);
}

/* Base Dropdown Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: var(--spacing-xs) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    margin-top: 10px;
}

@media (min-width: 993px) {
    .nav-menu .dropdown:hover>a i {
        transform: rotate(180deg);
    }

    .nav-menu .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
    border-left-color: var(--primary-color);
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* Mobile Menu Toggle Animation */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==================== 5. FOOTER ==================== */
.footer {
    background: #1e293b;
    color: var(--white);
    padding: var(--spacing-2xl) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

/* Footer Column Styles */
.footer-col h3,
.footer-col h4 {
    margin-bottom: var(--spacing-md);
    color: var(--white);
    font-weight: 600;
}

.footer-col h3 {
    font-size: var(--font-size-xl);
}

.footer-col h4 {
    font-size: var(--font-size-lg);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-col .tagline {
    font-style: italic;
    color: var(--primary-light);
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}

/* Footer Links */
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

/* Contact Info List */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-info li i {
    color: var(--primary-light);
    font-size: var(--font-size-lg);
    margin-top: 3px;
    flex-shrink: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    transition: all var(--transition-normal);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top.show {
    display: flex;
}

/* ==================== 6. RESPONSIVE DESIGN ==================== */

/* Tablet Breakpoint - 992px */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
}

/* Mobile Breakpoint - 768px */
@media (max-width: 768px) {

    /* Mobile Navigation */
    .nav-toggle {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: calc(var(--header-height) + var(--spacing-md)) var(--spacing-md) var(--spacing-md);
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-normal);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu>li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu>li>a {
        width: 100%;
        padding: var(--spacing-md) 0;
        font-size: var(--font-size-lg);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu>li>a i {
        padding: 12px;
        margin-right: -12px;
        /* Pull to edge */
        cursor: pointer;
        color: var(--primary-color);
        transition: transform 0.3s ease;
    }

    .nav-menu .dropdown.active>a i {
        transform: rotate(180deg);
    }

    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border-left: 2px solid var(--primary-color);
        margin-left: 10px;
        padding: 0;
        display: none;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.95rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .footer {
        padding: var(--spacing-xl) 0 0;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --header-height: 60px;
    }

    .logo-img {
        height: 40px;
    }

    .nav-menu {
        width: 90%;
        max-width: 100%;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ==================== 7. UTILITY CLASSES ==================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mt-0 {
    margin-top: 0;
}

.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-0 {
    margin-bottom: 0;
}

.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);
}

.pt-0 {
    padding-top: 0;
}

.pt-1 {
    padding-top: var(--spacing-xs);
}

.pt-2 {
    padding-top: var(--spacing-sm);
}

.pt-3 {
    padding-top: var(--spacing-md);
}

.pt-4 {
    padding-top: var(--spacing-lg);
}

.pb-0 {
    padding-bottom: 0;
}

.pb-1 {
    padding-bottom: var(--spacing-xs);
}

.pb-2 {
    padding-bottom: var(--spacing-sm);
}

.pb-3 {
    padding-bottom: var(--spacing-md);
}

.pb-4 {
    padding-bottom: var(--spacing-lg);
}

/* ==========================================
   END OF FOUNDATION CSS
   Add new sections below as needed
   ========================================== */


/* ==========================================
   PAGE SECTIONS - INDEX.HTML
   ========================================== */

/* ==================== STATS SECTION ==================== */
.stats-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    margin-top: 0;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Stats Section Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: var(--spacing-xl) 0;
    }

    .stat-card i {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 1rem;
    }
}

/* ==================== FEATURES SECTION ==================== */
/* Custom spacing: Reduced top padding (48px) + Standard bottom padding (64px) */
.features-section {
    background: var(--light-bg);
    padding: var(--spacing-xl) 0 var(--spacing-2xl);
}

/* Section Header (reusable component) */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: var(--font-size-base);
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Features Section Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: var(--font-size-base);
    }

    .feature-card {
        padding: var(--spacing-lg);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
    }

    .feature-icon i {
        font-size: 1.5rem;
    }
}

/* ==================== PRODUCTS PREVIEW SECTION ==================== */
.products-preview {
    padding: 36px 0 var(--spacing-2xl);
    background: linear-gradient(180deg, #f8fcfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.products-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, rgba(0, 139, 139, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.products-preview .container {
    position: relative;
    z-index: 1;
}

/* Products Section Heading - Gradient Text */
.products-preview .section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.products-preview .section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Modern Grid Layout - 2 columns */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

/* Modern Product Cards - 30% Teal / 70% Image Split */
.product-card-modern {
    background: none !important;
    border-radius: 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 10px 40px rgba(0, 139, 139, 0.15), 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Image area - 70% bottom section */
.product-card-modern::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--card-bg-image);
    background-size: var(--card-bg-size, cover);
    background-position: var(--card-bg-position, center);
    background-repeat: no-repeat;
    z-index: 0;
}

/* Background gradient for cards without images */
.product-card-modern.product-card-icon::before {
    background: linear-gradient(135deg, #006666 0%, #008B8B 100%);
}

/* Large icon overlay for cards without images */
.product-card-modern.product-card-icon::after {
    content: '';
    position: absolute;
    top: 62%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.product-card-modern.product-card-icon[data-icon="layer-group"]::after {
    content: '\f5fd';
}

.product-card-modern.product-card-icon[data-icon="shield-alt"]::after {
    content: '\f3ed';
}

.product-card-modern.product-card-icon[data-icon="box"]::after {
    content: '\f466';
}

/* Dark overlay for image section */
.product-card-overlay {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.product-card-modern:hover .product-card-overlay {
    background: linear-gradient(to bottom,
            rgba(0, 139, 139, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 50%,
            rgba(0, 0, 0, 0.6) 100%);
}

.product-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 139, 139, 0.25), 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Content Section - Top 30% with Teal Gradient */
.product-content-modern {
    padding: 1.5rem 2rem 1rem 2rem;
    text-align: left;
    z-index: 2;
    position: relative;
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    border-radius: 28px 28px 0 0;
    flex-shrink: 0;
}

.product-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.product-card-modern:hover .product-badge {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.product-content-modern h3 {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.product-content-modern p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Product Buttons - Bottom of card in image section */
.product-buttons {
    display: flex;
    gap: 1rem;
    padding: 2rem 2.5rem 2.5rem 2.5rem;
    z-index: 2;
    position: relative;
    margin-top: auto;
}

.btn-product-primary,
.btn-product-secondary {
    flex: 1;
    padding: 0.95rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-product-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-weight: 700;
}

.btn-product-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 139, 139, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-product-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-product-primary:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-product-primary:active {
    transform: translateY(-1px);
}

.btn-product-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-product-secondary:active {
    transform: translateY(-1px);
}

/* Card Entrance Animation */
@keyframes productFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card-modern {
    animation: productFadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.product-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.product-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.product-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.product-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

/* Products Preview Responsive */
@media (max-width: 992px) {
    .products-grid-modern {
        gap: 2rem;
    }

    .product-card-modern {
        min-height: 450px;
    }
}

@media (max-width: 768px) {
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card-modern {
        min-height: 400px;
    }

    .product-content-modern {
        padding: 1.25rem 1.5rem 0.75rem 1.5rem;
    }

    .product-content-modern h3 {
        font-size: 1.5rem;
    }

    .product-content-modern p {
        font-size: 0.95rem;
    }

    .product-buttons {
        flex-direction: column;
        padding: 1.5rem 2rem 2rem 2rem;
    }

    .btn-product-primary,
    .btn-product-secondary {
        width: 100%;
    }
}

/* ==================== TRUSTED BY CAROUSEL - CONTINUOUS SCROLLING ==================== */

.trusted-by-carousel-section {
    background: linear-gradient(135deg, #f0f9f9 0%, #ffffff 100%);
    padding: 0 0 64px 0;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.carousel-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.carousel-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.carousel-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Continuous Carousel Wrapper */
.continuous-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    background: white;
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0;
    padding: 0;
}

/* Carousel Track - Continuous Scrolling */
.carousel-track-continuous {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scrollLeftTrusted 40s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Carousel Items */
.carousel-item-continuous {
    flex: 0 0 auto;
    width: 400px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbfb 100%);
    transition: transform 0.3s ease;
}

.carousel-item-continuous:hover {
    transform: scale(1.05);
    z-index: 10;
}

.carousel-item-continuous img {
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.carousel-item-continuous:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Continuous Scrolling Animation - Right to Left */
@keyframes scrollLeftTrusted {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-3200px);
    }
}

/* Pause animation when hovering over carousel track */
.carousel-track-continuous:hover {
    animation-play-state: paused;
}

/* Testimonial Styling */
.testimonial-modern {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    border-radius: 12px;
    margin: 40px auto;
    max-width: 800px;
    border: 1px solid rgba(0, 139, 139, 0.1);
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-header h2 {
        font-size: 2rem;
    }

    .carousel-header p {
        font-size: 1rem;
    }

    .continuous-carousel-wrapper {
        height: 200px;
    }

    .carousel-item-continuous {
        min-width: 200px;
        height: 140px;
        padding: 15px;
    }

    .carousel-track-continuous {
        animation: scrollLeftTrustedMobile 40s linear infinite;
    }

    @keyframes scrollLeftTrustedMobile {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1600px);
        }
    }

    .testimonial-modern {
        padding: 30px 15px;
        margin: 30px 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .carousel-item-continuous {
        min-width: 150px;
        height: 100px;
    }

    .carousel-track-continuous {
        animation: scrollLeftTrustedSmall 40s linear infinite;
    }

    @keyframes scrollLeftTrustedSmall {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-1200px);
        }
    }
}

/* ==================== DYNAMIC CAROUSEL ANIMATION ==================== */
/* 
   Uses CSS variable --scroll-width calculated by JS 
   This works for ANY number of items.
*/

@keyframes scrollLeftDynamic {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * var(--scroll-width)));
    }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.95;
    margin-bottom: 2rem;
}

/* CTA Buttons */
.cta-section .btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-section .btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

/* Ripple effect */
.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 139, 139, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-section .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.cta-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-section .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ==================== ABOUT US PAGE ==================== */

/* ==================== PAGE HEADER SECTION ==================== */
.page-header {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
    padding: calc(var(--header-height) + 64px) 0 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Header Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 64px 0 45px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* ==================== ABOUT CONTENT SECTION ==================== */
.about-content {
    background: var(--white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* About Content Responsive */
@media (max-width: 992px) {
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-intro {
        gap: 1.5rem;
    }

    .about-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .about-image img {
        border-radius: 8px;
    }
}

/* ==================== MISSION-VISION SECTION ==================== */
.mission-vision {
    background: linear-gradient(135deg, #008B8B 0%, #20B2AA 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.mv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    text-align: center;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: rotate(360deg);
}

.mv-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
}

.mv-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Mission-Vision Responsive */
@media (max-width: 992px) {
    .mv-grid {
        gap: 2rem;
    }

    .mv-card {
        padding: 2.2rem;
    }

    .mv-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mv-card {
        padding: 2rem;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
    }

    .mv-icon i {
        font-size: 2rem;
    }

    .mv-card h3 {
        font-size: 1.5rem;
    }

    .mv-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .mv-grid {
        gap: 1.25rem;
    }

    .mv-card {
        padding: 1.75rem;
    }

    .mv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }

    .mv-icon i {
        font-size: 1.75rem;
    }

    .mv-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.85rem;
    }

    .mv-card p {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}


/* ==================== JOURNEY TIMELINE SECTION ==================== */
.journey-section-enhanced {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.journey-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background:
        linear-gradient(45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--primary-color) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--primary-color) 75%),
        linear-gradient(-45deg, transparent 75%, var(--primary-color) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.section-header-enhanced h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header-enhanced p {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Timeline Container */
.timeline-enhanced {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical line */
.timeline-enhanced::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Timeline Items */
.timeline-item-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10rem;
    margin-bottom: 3rem;
    position: relative;
}

/* Alternating layout */
.timeline-item-enhanced:nth-child(even) {
    direction: rtl;
}

.timeline-item-enhanced:nth-child(even)>* {
    direction: ltr;
}

/* Timeline Marker */
.timeline-marker-enhanced {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 139, 139, 0.3);
    border: 5px solid var(--white);
    margin-bottom: 0.5rem;
}

.marker-icon i {
    font-size: 2rem;
    color: var(--white);
}

.marker-year {
    background: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

/* Timeline Content */
.timeline-content-enhanced {
    position: relative;
}

.content-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.content-card:hover::before {
    opacity: 1;
}

.content-card.highlight {
    border: 2px solid var(--primary-light);
    background: var(--white);
    background-image: linear-gradient(135deg, rgba(0, 139, 139, 0.03) 0%, rgba(32, 178, 170, 0.03) 100%);
}

.content-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.content-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.content-card p strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Milestone Tags */
.milestone-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.milestone-tag.success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.milestone-tag.partnership {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

/* Milestone Stats */
.milestone-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    position: relative;
    z-index: 1;
}

.stat-mini {
    flex: 1;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
}

.stat-mini .stat-text {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-mini .stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 650;
}

/* Milestone Achievements */
.milestone-achievements {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.achievement-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Journey Timeline Responsive */
@media (max-width: 992px) {
    .timeline-enhanced::before {
        left: 40px;
    }

    .timeline-item-enhanced {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 100px;
    }

    .timeline-item-enhanced:nth-child(even) {
        direction: ltr;
    }

    .timeline-marker-enhanced {
        left: 40px;
    }

    .marker-icon {
        width: 70px;
        height: 70px;
    }

    .marker-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .section-header-enhanced h2 {
        font-size: 2.2rem;
    }

    .section-header-enhanced p {
        font-size: 1rem;
        padding: 0 20px;
    }

    .timeline-item-enhanced {
        padding-left: 80px;
    }

    .timeline-enhanced::before {
        left: 30px;
    }

    .timeline-marker-enhanced {
        left: 30px;
    }

    .marker-icon {
        width: 60px;
        height: 60px;
    }

    .marker-icon i {
        font-size: 1.5rem;
    }

    .marker-year {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
    }

    .content-card {
        padding: 1.5rem;
    }

    .content-card h3 {
        font-size: 1.4rem;
    }

    .content-card p {
        font-size: 0.95rem;
    }

    .milestone-stats {
        gap: 1rem;
    }


    .stat-mini .stat-text {
        font-size: 1.6rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .section-header-enhanced h2 {
        font-size: 1.8rem;
    }

    .section-header-enhanced p {
        font-size: 0.95rem;
        padding: 0 15px;
    }

    .timeline-item-enhanced {
        padding-left: 60px;
        margin-bottom: 2.5rem;
    }

    .timeline-enhanced::before {
        left: 20px;
        width: 4px;
    }

    .timeline-marker-enhanced {
        left: 20px;
    }

    .marker-icon {
        width: 50px;
        height: 50px;
        border: 3px solid var(--white);
    }

    .marker-icon i {
        font-size: 1.2rem;
    }

    .marker-year {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    .content-card {
        padding: 1.25rem;
        border-left-width: 3px;
    }

    .content-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.8rem;
    }

    .content-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .milestone-tag {
        padding: 8px 16px;
        font-size: 0.8rem;
        gap: 6px;
    }

    .milestone-stats {
        flex-direction: column;
        gap: 12px;
        margin-top: 15px;
    }

    .stat-mini {
        padding: 12px;
    }

    .stat-mini .stat-text {
        font-size: 1.4rem;
    }

    .stat-mini .stat-label {
        font-size: 0.8rem;
    }

    .milestone-achievements {
        gap: 0.6rem;
        margin-top: 1rem;
    }

    .achievement-item {
        font-size: 0.85rem;
        gap: 0.6rem;
    }

    .achievement-item i {
        font-size: 1rem;
    }
}

/* ==================== WHAT SETS US APART SECTION ==================== */
.values-section {
    background: var(--light-bg);
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 139, 139, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.value-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
    line-height: 1.3;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Section Responsive */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .value-card {
        padding: 2.25rem 1.75rem;
    }

    .value-card i {
        font-size: 2.75rem;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-card i {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .value-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .value-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .value-card {
        padding: 1.75rem 1.5rem;
    }

    .value-card i {
        font-size: 2.25rem;
        margin-bottom: 0.85rem;
    }

    .value-card h3 {
        font-size: 1.05rem;
    }

    .value-card p {
        font-size: 0.875rem;
        line-height: 1.55;
    }
}

/* ==================== MADE IN INDIA, FOR THE WORLD SECTION ==================== */
.made-in-india-section {
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 50%, #e0f2f1 100%);
    position: relative;
    overflow: hidden;
}

.made-in-india-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 139, 139, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.made-in-india-section .section-header {
    position: relative;
    z-index: 1;
}

.made-in-india-section .section-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #FF9933, var(--primary-color), #138808);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 20px;
}

.made-in-india-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Pride Cards Grid */
.pride-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.pride-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 139, 139, 0.1);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-color);
    transform: translateY(0) translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pride-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    transform: scaleX(0) translateZ(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    will-change: transform;
}

.pride-card:hover {
    transform: translateY(-10px) translateZ(0);
    box-shadow: 0 15px 50px rgba(0, 139, 139, 0.2);
}

.pride-card:hover::before {
    transform: scaleX(1) translateZ(0);
}

/* Pride Card Icons */
.pride-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 20px rgba(0, 139, 139, 0.3);
    transform: scale(1) rotate(0deg) translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    backface-visibility: hidden;
}

.pride-card:hover .pride-card-icon {
    transform: scale(1.1) rotate(5deg) translateZ(0);
    box-shadow: 0 12px 30px rgba(0, 139, 139, 0.4);
}

.pride-card-icon i,
.pride-card-icon svg {
    font-size: 2.5rem;
}

/* Icon Color Variations */
.global-colors {
    background: linear-gradient(135deg, #4CAF50, #45a049);
}

.global-colors i {
    color: var(--white);
}

.india-flag-colors {
    background: linear-gradient(180deg, #FF9933 33%, #FFFFFF 33%, #FFFFFF 66%, #138808 66%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.india-flag-colors svg.chakra-icon {
    width: 38% !important;
    height: 38% !important;
    max-width: 38px;
    max-height: 38px;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.1));
}

.reach-colors {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.reach-colors i {
    color: var(--white);
}

/* Pride Card Content */
.pride-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    text-align: center;
}

.pride-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Pride List */
.pride-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pride-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.pride-list li:hover {
    background: rgba(0, 139, 139, 0.05);
    transform: translateX(5px);
}

.pride-list li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Impact Section - White with Gradient Text */
.pride-impact {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 139, 139, 0.1);
    border: 2px solid rgba(0, 139, 139, 0.1);
    position: relative;
    z-index: 1;
}

.impact-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.impact-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.impact-header h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.metric-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.05) 0%, rgba(32, 178, 170, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.15);
    border-color: var(--primary-color);
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.metric-label {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* Made in India Responsive */
@media (max-width: 1200px) {
    .pride-grid {
        gap: 2rem;
    }

    .impact-metrics {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .pride-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pride-card {
        padding: 2.25rem 2rem;
    }

    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .made-in-india-section .section-header h2 {
        font-size: 2.2rem;
    }

    .made-in-india-section .section-header p {
        font-size: 1.05rem;
    }

    .pride-grid {
        gap: 1.5rem;
    }

    .pride-card {
        padding: 2rem 1.75rem;
    }

    .pride-card h3 {
        font-size: 1.35rem;
    }

    .pride-card p {
        font-size: 0.95rem;
    }

    .pride-card-icon {
        width: 70px;
        height: 70px;
    }

    .pride-card-icon i,
    .pride-card-icon svg {
        font-size: 2.25rem;
    }

    .pride-impact {
        padding: 2.5rem 2rem;
    }

    .impact-header h3 {
        font-size: 1.75rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    .metric-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .made-in-india-section .section-header h2 {
        font-size: 1.8rem;
    }

    .pride-grid {
        gap: 1.25rem;
    }

    .pride-card {
        padding: 1.75rem 1.5rem;
    }

    .pride-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.85rem;
    }

    .pride-card p {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    .pride-card-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
        display: flex !important;
        align-items: center;
        justify-content: center;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Ensure gradient backgrounds are preserved on mobile */
    .pride-card-icon.global-colors {
        background: linear-gradient(135deg, #4CAF50, #45a049) !important;
    }

    .pride-card-icon.reach-colors {
        background: linear-gradient(135deg, #2196F3, #1976D2) !important;
    }

    .pride-card-icon i,
    .pride-card-icon svg {
        font-size: 2rem;
        color: #FFFFFF !important;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .pride-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0.85rem;
    }

    .pride-list li i {
        font-size: 1rem;
    }

    .pride-impact {
        padding: 2rem 1.5rem;
    }

    .impact-header {
        margin-bottom: 2rem;
    }

    .impact-header h3 {
        font-size: 1.5rem;
    }

    .impact-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .metric-card {
        padding: 1.5rem 1.25rem;
        display: block;
    }

    .metric-number {
        font-size: 2.25rem;
        /* Robust reset for gradient text */
        color: #008B8B !important;
        background-image: none !important;
        background: transparent !important;
        -webkit-text-fill-color: currentColor !important;
        text-fill-color: currentColor !important;
        -webkit-background-clip: border-box !important;
        background-clip: border-box !important;
        position: relative;
        z-index: 10;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .metric-label {
        font-size: 0.85rem;
    }
}

/* ==================== QUALITY PAGE ==================== */

/* Quality Policy Section */
.quality-policy {
    background: var(--light-bg);
    padding: var(--spacing-2xl) 0;
}

.policy-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-icon {
    flex-shrink: 0;
}

.policy-icon i {
    font-size: 5rem;
    color: var(--primary-color);
}

.policy-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.policy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-text p:last-child {
    margin-bottom: 0;
}

/* QC Process Timeline Section */
.qc-process {
    padding: var(--spacing-2xl) 0;
}

.process-timeline {
    max-width: 1000px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-light));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 139, 139, 0.3);
    z-index: 1;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: 1.75rem 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.step-content:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 30px rgba(0, 139, 139, 0.15);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* Testing Facilities Section */
.testing-facilities {
    background: var(--light-bg);
    padding: var(--spacing-2xl) 0;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.facility-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.15);
}

.facility-card:hover::before {
    transform: scaleX(1);
}

.facility-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.facility-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-light);
}

.facility-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.facility-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
}

/* QA Team Section */
.qa-team {
    padding: var(--spacing-2xl) 0;
}

.qa-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.qa-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.qa-text>p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: justify;
}

.qa-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qa-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.qa-features li:hover {
    border-left-color: var(--primary-color);
    background: rgba(0, 139, 139, 0.05);
    transform: translateX(5px);
}

.qa-features li i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 3px;
}

.qa-features li strong {
    color: var(--text-dark);
}

.qa-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    padding: 4rem 3rem;
    box-shadow: 0 15px 40px rgba(0, 139, 139, 0.2);
}

.qa-image i {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.2);
}

/* Quality Page Responsive */
@media (max-width: 1200px) {
    .facilities-grid {
        gap: 2rem;
    }

    .qa-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .policy-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .policy-icon i {
        font-size: 4rem;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .qa-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .qa-image {
        order: -1;
        padding: 3rem 2rem;
    }

    .qa-image i {
        font-size: 8rem;
    }
}

@media (max-width: 768px) {
    .policy-text h2 {
        font-size: 1.9rem;
    }

    .policy-text p {
        font-size: 1rem;
    }

    .process-timeline::before {
        left: 22px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.2rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .facility-card {
        padding: 2rem 1.75rem;
    }

    .facility-card i {
        font-size: 3rem;
    }

    .facility-card h3 {
        font-size: 1.3rem;
    }

    .qa-text h2 {
        font-size: 1.9rem;
    }

    .qa-features li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        gap: 1.5rem;
    }

    .policy-icon i {
        font-size: 3.5rem;
    }

    .policy-text h2 {
        font-size: 1.7rem;
    }

    .policy-text p {
        font-size: 0.95rem;
    }

    .process-step {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .process-timeline::before {
        left: 17px;
        width: 2px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content {
        padding: 1.25rem 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .facility-card {
        padding: 1.75rem 1.5rem;
    }

    .facility-card i {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .facility-card h3 {
        font-size: 1.2rem;
    }

    .facility-card p {
        font-size: 0.95rem;
    }

    .qa-text h2 {
        font-size: 1.6rem;
    }

    .qa-features li {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .qa-features li i {
        font-size: 1.1rem;
    }

    .qa-image {
        padding: 2.5rem 2rem;
    }

    .qa-image i {
        font-size: 6rem;
    }
}

/* ==================== CONTACT PAGE ==================== */

/* Contact Section */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

/* Contact Form Container */
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form-container>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 15px;
    font-size: 1.1rem;
}

.btn-submit:hover {
    opacity: 0.9;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: var(--success);
    display: block;
}

.form-message.error {
    background: #fee2e2;
    color: var(--error);
    display: block;
}

/* Contact Info */
.contact-info-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Section - Full Width */
.map-section {
    padding: var(--spacing-2xl) 0 0;
    background: var(--light-bg);
}

.map-section .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.map-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.map-section .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.map-container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
}

.map-container-full .map-embed {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-container-full .map-embed iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

/* Map Action Buttons */
.map-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 30px 20px;
    background: linear-gradient(135deg, #006666 0%, #008B8B 100%);
}

.btn-directions,
.btn-open-maps {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-directions {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f0f9f9;
}

.btn-open-maps {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-open-maps:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-directions i,
.btn-open-maps i {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-bg);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .map-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-directions,
    .btn-open-maps {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==================== PRODUCT DETAIL PAGES ==================== */

/* Product Hero Section - Video Background */
.product-hero-modern {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    background: linear-gradient(135deg, #004d4d 0%, #008B8B 100%);
    display: flex;
    align-items: center;
    padding: 80px 0 50px;
    overflow: hidden;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.product-hero-modern .hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.product-hero-modern .container {
    position: relative;
    z-index: 2;
}

.hero-content-modern {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge-modern i {
    color: #ffd700;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-modern {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features-modern {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-features-modern .feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-features-modern .feature-badge i {
    color: #20B2AA;
}

.hero-cta-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: #f0f9f9;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Scroll Down Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
    animation: bounceArrow 2s infinite;
}

.scroll-arrow i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.scroll-arrow:hover i {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes bounceArrow {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Product Hero Responsive */
@media (max-width: 992px) {
    .product-hero-modern {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title-modern {
        font-size: 2.8rem;
    }

    .hero-subtitle-modern {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .product-hero-modern {
        padding: 100px 0 60px;
    }

    .hero-title-modern {
        font-size: 2.2rem;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
    }

    .hero-badge-modern {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .hero-features-modern {
        gap: 10px;
    }

    .hero-features-modern .feature-badge {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .hero-cta-modern {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 1.8rem;
    }

    .hero-subtitle-modern {
        font-size: 1rem;
    }

    .hero-features-modern .feature-badge {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .scroll-arrow {
        bottom: 20px;
    }

    .scroll-arrow i {
        font-size: 1.5rem;
    }
}

/* Product Showcase Section */
.product-showcase-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.showcase-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.showcase-images {
    align-self: start;
}

.showcase-content {
    align-self: start;
}

.showcase-content h2.section-title-accent {
    margin-top: -20px;
}

/* Showcase Carousel */
.showcase-carousel-container {
    position: relative;
    width: 100%;
    height: 600px;
    background: linear-gradient(135deg, #e8f4f4 0%, #d4ebeb 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 139, 139, 0.15);
}

.showcase-carousel-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateX(100%);
    width: 115%;
    height: 115%;
    object-fit: cover;
    opacity: 0;
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

.showcase-carousel-image.active {
    transform: translate(-50%, -50%) translateX(0);
    opacity: 1;
}

.showcase-carousel-image.prev {
    transform: translate(-50%, -50%) translateX(-100%);
    opacity: 0;
}

.showcase-carousel-image.reset {
    transition: none;
}

.showcase-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.showcase-indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 139, 139, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-indicator-dot:hover {
    background: rgba(0, 139, 139, 0.6);
    transform: scale(1.2);
}

.showcase-indicator-dot.active {
    background: #008B8B;
    width: 28px;
    border-radius: 5px;
}

.showcase-carousel-container .image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FF9933 0%, #FFFFFF 50%, #138808 100%);
    color: #000080;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Showcase Carousel Responsive */
@media (max-width: 992px) {
    .showcase-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showcase-content h2.section-title-accent {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .showcase-carousel-container {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .showcase-carousel-container {
        height: 350px;
    }

    .showcase-carousel-container .image-badge {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}

/* Showcase Content - Revolutionary Technology Section */
.section-title-accent {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0051A5;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.section-title-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.lead-text-modern {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.lead-text-modern strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Highlight Stats */
.highlight-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 139, 139, 0.15);
}

.stat-number-static {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Features Checklist */
.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.check-item:hover {
    background: var(--light-bg);
    transform: translateX(5px);
}

.check-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.check-item span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.check-item span strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Showcase Content Responsive */
@media (max-width: 992px) {
    .highlight-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title-accent {
        font-size: 2rem;
    }

    .lead-text-modern {
        font-size: 1.05rem;
    }

    .highlight-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number-static {
        font-size: 2rem;
    }

    .check-item {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .section-title-accent {
        font-size: 1.7rem;
    }

    .section-title-accent::after {
        width: 60px;
        height: 3px;
    }

    .stat-number-static {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .check-item i {
        font-size: 1.1rem;
    }

    .check-item span {
        font-size: 0.95rem;
    }
}

/* ==================== COMPETITIVE EDGE SECTION ==================== */
.competitive-edge-modern {
    padding: var(--spacing-2xl) 0;
    background: var(--light-bg);
}

.section-header-center-modern {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-header-center-modern p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.edge-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Edge Card - Video Background */
.edge-card-modern {
    position: relative;
    display: flex;
    align-items: stretch;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.edge-card-modern:hover {
    border-color: #0051A5;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.edge-card-modern .consultation-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.edge-card-modern .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.video-overlay-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    color: #0051A5;
    font-weight: 600;
    font-size: 1rem;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-overlay-badge i {
    font-size: 1.1rem;
}

.text-left .video-overlay-badge {
    left: auto;
    right: 30px;
}

/* Glassmorphism Text Content */
.card-text-content {
    position: relative;
    width: 40%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.text-right .card-text-content {
    margin-left: auto;
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.text-left .card-text-content {
    margin-left: 0;
    margin-right: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
}

.card-text-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.text-right .card-text-content p {
    margin-right: -2px;
}

/* Competitive Edge Responsive */
@media (max-width: 992px) {
    .edge-card-modern {
        height: 400px;
    }

    .card-text-content {
        width: 50%;
        padding: 40px;
    }

    .card-text-content h3 {
        font-size: 1.5rem;
    }

    .card-text-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-header-center-modern h2 {
        font-size: 2rem;
    }

    .edge-card-modern {
        height: 450px;
        flex-direction: column;
        justify-content: flex-end;
    }

    .card-text-content {
        width: 100% !important;
        margin: 0 !important;
        padding: 25px;
        border-radius: 0 !important;
        box-shadow: none !important;
        background: rgba(255, 255, 255, 0.25) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
    }

    .text-right .card-text-content,
    .text-left .card-text-content {
        border-left: none !important;
        border-right: none !important;
        box-shadow: none !important;
    }

    .card-text-content h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .card-text-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .video-overlay-badge {
        top: 20px;
        left: 20px !important;
        right: auto !important;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .edge-card-modern {
        height: 400px;
    }

    .section-header-center-modern h2 {
        font-size: 1.7rem;
    }

    .section-header-center-modern p {
        font-size: 1rem;
    }

    .card-text-content {
        padding: 20px;
    }

    .card-text-content h3 {
        font-size: 1.15rem;
        margin-bottom: 8px;
    }

    .card-text-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .video-overlay-badge {
        top: 15px;
        left: 15px !important;
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .video-overlay-badge i {
        font-size: 0.9rem;
    }
}

/* ==================== GALLERY CAROUSEL SECTION ==================== */
.gallery-section-modern {
    padding: var(--spacing-lg) 0 var(--spacing-2xl) 0;
    background: #f8f9fa;
}

.gallery-section-modern .continuous-carousel-wrapper {
    margin: 0;
}

.gallery-carousel {
    height: 350px;
    background: white;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.gallery-carousel .carousel-item-continuous {
    width: 450px;
    height: 320px;
    padding: 15px;
    background: white;
}

.gallery-carousel .carousel-item-continuous img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: none;
}

.gallery-carousel .carousel-item-continuous:hover img {
    filter: none;
    transform: scale(1.05);
}

/* Gallery Responsive */
@media (max-width: 1024px) {
    .gallery-carousel {
        height: 300px;
    }

    .gallery-carousel .carousel-item-continuous {
        width: 350px;
        height: 270px;
    }
}

@media (max-width: 768px) {
    .gallery-carousel {
        height: 250px;
    }

    .gallery-carousel .carousel-item-continuous {
        width: 280px;
        height: 220px;
    }
}

@media (max-width: 480px) {
    .gallery-carousel {
        height: 200px;
    }

    .gallery-carousel .carousel-item-continuous {
        width: 220px;
        height: 170px;
    }
}

/* ==================== PROCESS FLOW SECTION ==================== */
.process-section-modern {
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #006666 0%, #008B8B 100%);
}

.process-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header-modern h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header-modern p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

.process-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 2;
}

.process-card {
    background: #fff;
    border: 1px solid rgba(0, 139, 139, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 139, 139, 0.15);
    border-color: rgba(0, 139, 139, 0.2);
}

.process-card:hover::before {
    opacity: 1;
}

.process-card-number {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(0, 139, 139, 0.25);
    line-height: 1;
}

.process-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-card-icon i {
    font-size: 2rem;
    color: #fff;
}

.process-card:hover .process-card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 139, 139, 0.3);
}

.process-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.process-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Highlight Card (Continuous Support) */
.process-card.highlight-card {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: rgba(245, 158, 11, 0.3);
}

.process-card.highlight-card .process-card-number {
    color: rgba(245, 158, 11, 0.15);
}

.process-card.highlight-card .process-card-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.process-card.highlight-card:hover .process-card-icon {
    background: #fff;
}

.process-card.highlight-card:hover .process-card-icon i {
    color: #f59e0b;
}

/* Commitment Badges */
.process-commitment-modern {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.commitment-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #fff;
    border: 1px solid rgba(0, 139, 139, 0.15);
    border-radius: 50px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.commitment-badge:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 139, 139, 0.15);
}

.commitment-badge i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

/* Process Flow Responsive */
@media (max-width: 992px) {
    .process-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-cards-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .section-header-modern h2 {
        font-size: 2.2rem;
    }

    .process-commitment-modern {
        gap: 20px;
    }

    .commitment-badge {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ==================== MANUFACTURING CAPABILITIES ENHANCED ==================== */
.manufacturing-capabilities-enhanced {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
}

.section-badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.capabilities-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.capability-category {
    margin-bottom: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.capability-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.capability-category:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid #008B8B;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008B8B, #20B2AA);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-header h3 {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
    margin: 0;
}

/* Materials Expertise Grid */
.materials-expertise {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.material-item-enhanced {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid #008B8B;
}

.material-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.material-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #008B8B;
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.material-item-enhanced h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.material-item-enhanced p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Capability Items Grid */
.capability-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.capability-item-enhanced {
    display: flex;
    gap: 18px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border-left: 4px solid #008B8B;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.capability-item-enhanced:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: #20B2AA;
}

.capability-item-enhanced .item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 139, 139, 0.1), rgba(32, 178, 170, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.capability-item-enhanced .item-icon i {
    font-size: 1.5rem;
    color: #008B8B;
}

.capability-item-enhanced .item-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.capability-item-enhanced .item-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Manufacturing Capabilities Responsive */
@media (max-width: 992px) {
    .capability-category {
        padding: 30px;
    }

    .category-header h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .capability-category {
        padding: 25px;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .category-header h3 {
        font-size: 1.4rem;
    }

    .category-icon {
        width: 60px;
        height: 60px;
    }

    .category-icon i {
        font-size: 1.5rem;
    }

    .materials-expertise {
        grid-template-columns: 1fr;
    }

    .capability-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .capability-item-enhanced {
        flex-direction: column;
        text-align: center;
    }

    .capability-item-enhanced .item-icon {
        margin: 0 auto;
    }
}

/* ==================== CTA MODERN SECTION ==================== */
.cta-modern {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative background elements */
.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content-modern {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.cta-content-modern p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-primary {
    background: var(--white);
    color: #006666;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: #f8ffff;
}

.btn-cta-primary i {
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i {
    transform: translateX(3px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* CTA Contact Info */
.cta-contact-modern {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-contact-modern a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 8px;
}

.cta-contact-modern a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cta-contact-modern a i {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.cta-contact-modern a:hover i {
    color: var(--white);
}

/* CTA Modern Responsive */
@media (max-width: 768px) {
    .cta-content-modern h2 {
        font-size: 2rem;
    }

    .cta-content-modern p {
        font-size: 1.05rem;
        margin-bottom: 28px;
    }

    .cta-buttons-modern {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 30px;
    }

    .cta-contact-modern {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .cta-contact-modern a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-modern {
        padding: var(--spacing-xl) 0;
    }

    .cta-content-modern h2 {
        font-size: 1.7rem;
    }

    .cta-content-modern p {
        font-size: 1rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 0.95rem;
        padding: 12px 25px;
    }
}