/* ===================================
   CSS RESET & ROOT VARIABLES
   =================================== */

/* Modern CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   Product Detail Page Styles
   =================================== */
.product-detail {
    padding: calc(var(--header-offset) + 1rem) 0 2rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 1400px;
    margin: 120px auto 0;
}

.product-detail-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-detail-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 32, 74, 0.1);
}

.product-detail-image img {
    width: 100%;
    height: 450px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.thumbnail {
    flex: 1;
    max-width: calc(33.333% - 0.67rem);
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: #00BBF0;
    opacity: 1;
}

.product-detail-content {
    background: #f8f9fb;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 32, 74, 0.08);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #334E68;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.product-features li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #334E68;
    border-bottom: 1px solid rgba(0, 32, 74, 0.1);
}

.product-features li:last-child {
    border-bottom: none;
}

.specs-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: #334E68;
    margin-bottom: 1rem;
    margin-top: 1.2rem;
    font-weight: 600;
}

.product-specs {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.product-specs li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #334E68;
    font-style: italic;
}

.contact-button {
    display: inline-block;
    background: linear-gradient(135deg, #0066CC 0%, #00BBF0 100%);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    text-align: center;
    width: 100%;
}

.contact-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

@media (max-width: 968px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-detail-content {
        padding: 2rem;
    }
    
    .thumbnail {
        width: 90px;
        height: 90px;
    }
}

/* Ensure section titles are visible below fixed header when navigated via anchors */
.section-title {
    scroll-margin-top: var(--header-offset);
}

/* Add a little top padding for products section so title isn't hidden on load */
.products .section-header {
    padding-top: calc(var(--header-offset) / 2);
}


html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: #f0f4f8;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0, 32, 74, 0.05) 1px, transparent 0);
    background-size: 20px 20px;
    line-height: 1.6;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

p, li {
    color: #102A43;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* CSS Variables (Design System) */
:root {
    /* Colors */
    --color-primary: #00204A;
    --color-accent: #00BBF0;
    --color-bg: #F8F9FA;
    --color-white: #FFFFFF;
    --color-text: #2C3E50;
    --color-text-light: #7F8C8D;
    --color-overlay: rgba(0, 32, 74, 0.75);
    
    /* Fonts */
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-header: 1000;
    --z-overlay: 100;
    --z-slider: 50;
    /* Header offset for anchored headings */
    --header-offset: 80px;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   HEADER / NAVBAR
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-header);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 2px 20px rgba(0, 32, 74, 0.08);
    transition: all var(--transition-base);
    border-bottom: 1px solid rgba(0, 187, 240, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin-right: var(--spacing-md);
}

/* Logo */
.logo-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 3px;
    line-height: 1;
}

.logo-subtitle {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-accent);
    letter-spacing: 3px;
    margin-top: 0.25rem;
}

/* Image logo in navbar */
.logo-image {
    display: block;
    height: 48px;
    width: auto;
}

/* Navigation */
.nav-list {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-link {
    position: relative;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-primary);
    padding: var(--spacing-xs) 0;
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-slider);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 32, 74, 0.9) 0%,
        rgba(0, 32, 74, 0.85) 30%,
        rgba(0, 50, 90, 0.75) 60%,
        rgba(0, 32, 74, 0.8) 100%
    );
    z-index: var(--z-overlay);
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: calc(var(--z-overlay) + 10);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 32, 74, 0.8);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    background: transparent;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 
        0 0 20px rgba(0, 187, 240, 0.3),
        inset 0 0 20px rgba(0, 187, 240, 0.1);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.7s;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-accent);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 0 40px rgba(0, 187, 240, 0.6),
        0 6px 30px rgba(0, 187, 240, 0.4),
        inset 0 0 20px rgba(0, 187, 240, 0.2);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.hero-button:hover::before {
    left: 0;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: calc(var(--z-overlay) + 20);
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    font-size: 2rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1);
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: calc(var(--spacing-md) + 80px);
    left: 50%;
    transform: translateX(-50%);
    z-index: calc(var(--z-overlay) + 20);
    display: flex;
    gap: var(--spacing-sm);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-md);
    left: 50%;
    transform: translateX(-50%);
    z-index: calc(var(--z-overlay) + 20);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-accent);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 10px rgba(0, 187, 240, 0.5);
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(0, 187, 240, 0.8);
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active,
.indicator:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.2);
}

/* ===================================
   INFO BAR SECTION
   =================================== */

.info-bar {
    padding: var(--spacing-lg) 0 0 0;
    background: linear-gradient(180deg, #F0F4F8 0%, #D9E2EC 100%);
    position: relative;
    z-index: 10;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.info-box {
    background: var(--color-primary);
    padding: var(--spacing-lg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 187, 240, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.info-box:hover {
    transform: translateY(-5px);
    border: 1px solid var(--color-accent);
    box-shadow: 
        0 0 15px rgba(0, 187, 240, 0.6),
        0 0 30px rgba(0, 187, 240, 0.4),
        inset 0 0 10px rgba(0, 187, 240, 0.3);
}

.info-box:hover::before {
    opacity: 1;
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 187, 240, 0.1);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition-base);
}

.info-box:hover .info-icon {
    background: rgba(0, 187, 240, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 187, 240, 0.5);
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.info-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */

.products {
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
    background: linear-gradient(180deg, #D9E2EC 0%, #D9E2EC 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(0, 187, 240, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(0, 187, 240, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.6;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 1px 1px 0px #fff, 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg, 
        transparent 0%,
        var(--color-accent) 20%,
        var(--color-primary) 80%,
        transparent 100%
    );
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 187, 240, 0.5);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    grid-auto-rows: 1fr;
}

/* Product Card */
.product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 32, 74, 0.08),
        0 0 0 1px rgba(0, 187, 240, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0, 187, 240, 0.15) 40%,
        rgba(0, 187, 240, 0.25) 50%,
        rgba(0, 187, 240, 0.15) 60%,
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
    transition: transform 0.8s ease;
    pointer-events: none;
    z-index: 10;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(
        to top,
        rgba(0, 187, 240, 0.2) 0%,
        rgba(0, 187, 240, 0.1) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(30deg);
}

.product-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 187, 240, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 32, 74, 0.12),
        0 0 0 1px rgba(0, 187, 240, 0.5),
        0 0 40px rgba(0, 187, 240, 0.3),
        0 0 80px rgba(0, 187, 240, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.product-card:hover::after {
    height: 60%;
    opacity: 1;
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--color-bg);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

/* Blue glowing frame behind product images */
.product-image::before {
    content: '';
    position: absolute;
    inset: 6px;
    border-radius: 12px;
    background: radial-gradient(circle at 20% 20%, rgba(0,187,240,0.18), transparent 22%),
                radial-gradient(circle at 80% 80%, rgba(0,187,240,0.08), transparent 28%);
    filter: blur(10px);
    z-index: 0;
    pointer-events: none;
}
.product-image img {
    position: relative;
    z-index: 1;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 187, 240, 0.4);
    z-index: 5;
}

/* Product Content */
.product-content {
    padding: var(--spacing-md);
    position: relative;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 100%
    );
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Blue glow behind product content block */
.product-content::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0,187,240,0.08), rgba(0,187,240,0.04));
    filter: blur(12px);
    z-index: -1;
    pointer-events: none;
}

/* (site-wide outline/glow for product content removed) */

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.product-card:hover .product-title {
    color: var(--color-accent);
}

.product-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    flex: 1;
}

/* Product Button */
.product-button {
    display: inline-block;
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    color: var(--color-white);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 187, 240, 0.4);
}
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 187, 240, 0.4);
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #D9E2EC 0%, #BCCCDC 100%);
    position: relative;
    overflow: hidden;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 187, 240, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* About Image */
.about-image-wrapper {
    display: none;
}

.about-decoration {
    position: absolute;
    width: 80%;
    height: 80%;
    background: var(--color-accent);
    border-radius: 20px;
    transform: rotate(-6deg);
    opacity: 0.15;
    z-index: 1;
}

.about-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(3deg);
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Content */
.about-content {
    padding: var(--spacing-md);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-header {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.about-header .section-title::after {
    left: 0;
    transform: translateX(0);
}

.about-text {
    margin-top: var(--spacing-md);
}

.about-paragraph {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

/* About Stats */
.about-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-md) 0;
    border-top: 2px solid var(--color-bg);
    border-bottom: 2px solid var(--color-bg);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.about-button {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 187, 240, 0.4);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: linear-gradient(
        135deg,
        #00204A 0%,
        #002855 25%,
        #003060 50%,
        #002855 75%,
        #00204A 100%
    );
    position: relative;
    color: var(--color-white);
    /* push footer lower so the previous section's box edge is visible */
    margin-top: 48px;
    padding: calc(var(--spacing-xl) + 24px) 0 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 -12px 30px rgba(0,32,74,0.04) inset;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 187, 240, 0.03) 10px,
            rgba(0, 187, 240, 0.03) 20px
        );
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0, 187, 240, 0.5) 50%,
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Logo */
.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-text {
    color: var(--color-white);
}

.footer-logo .logo-subtitle {
    color: var(--color-accent);
}

.footer-description {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    max-width: 350px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

/* Footer Title */
.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-accent);
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(5px);
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-accent);
}

/* Footer Bottom */
.footer-bottom {
    padding: var(--spacing-md) 0;
    text-align: center;
}

.copyright {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-link-inline {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-link-inline:hover {
    color: var(--color-accent);
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation directions for variety */
.product-card:nth-child(odd).scroll-reveal {
    transform: translateX(-50px) translateY(30px);
}

.product-card:nth-child(even).scroll-reveal {
    transform: translateX(50px) translateY(30px);
}

.product-card:nth-child(odd).scroll-reveal-active,
.product-card:nth-child(even).scroll-reveal-active {
    transform: translateX(0) translateY(0);
}

/* About section animations */
.about-image-wrapper.scroll-reveal {
    transform: translateX(-80px);
}

.about-content.scroll-reveal {
    transform: translateX(80px);
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.5;
        top: 20px;
    }
}

/* Smooth transitions for all interactive elements */
.product-card,
.about-image,
.stat-item {
    transition: all var(--transition-base);
}

/* ===================================
   CONTACT PAGE STYLES
   =================================== */

.contact-hero {
    padding: calc(100px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: linear-gradient(180deg, #00204A 0%, #002850 40%, #003A6E 70%, #004A85 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(0, 32, 74, 0.7) 0%,
        rgba(0, 40, 80, 0.5) 30%,
        rgba(0, 50, 90, 0.4) 60%,
        rgba(0, 74, 133, 0.3) 85%,
        rgba(240, 244, 248, 0.1) 100%
    );
    z-index: 1;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 187, 240, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 187, 240, 0.3);
}

.contact-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.contact-content {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #F0F4F8 0%, #D9E2EC 100%);
    position: relative;
    display: flex; /* center grid horizontally on page */
    flex-direction: column;
    align-items: center;
}

.contact-grid {
    display: grid;
    /* three centered columns with larger card widths */
    grid-template-columns: repeat(3, minmax(360px, 1fr));
    gap: 56px; /* symmetric gap between cards */
    /* contain the grid so it's centered on screen */
    max-width: 1280px;
    margin: 0 auto;
    padding-inline: 0; /* remove extra inline padding so grid centers exactly */
    justify-items: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    /* slightly larger cards with balanced padding */
    padding: calc(var(--spacing-sm) + 10px) calc(var(--spacing-lg) + 8px);
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 4px 20px rgba(0, 32, 74, 0.08),
        0 0 0 1px rgba(0, 187, 240, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    max-width: 460px; /* set a comfortable card width */
    width: 100%;
    margin: 0 auto;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 187, 240, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 187, 240, 0.4);
    box-shadow: 
        0 20px 50px rgba(0, 32, 74, 0.12),
        0 0 0 1px rgba(0, 187, 240, 0.6),
        0 0 40px rgba(0, 187, 240, 0.3),
        0 0 80px rgba(0, 187, 240, 0.15),
        inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto calc(var(--spacing-sm) + 4px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 187, 240, 0.08);
    border-radius: 50%;
    color: var(--color-accent);
    transition: all var(--transition-base);
    position: relative;
}

.contact-card-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 187, 240, 0.2), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.contact-card:hover .contact-card-icon {
    background: rgba(0, 187, 240, 0.15);
    transform: scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 187, 240, 0.4),
        0 0 60px rgba(0, 187, 240, 0.2);
}

.contact-card:hover .contact-card-icon::before {
    opacity: 1;
}

.contact-card-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.08);
    color: #25D366;
}

.contact-card:hover .contact-card-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    box-shadow: 
        0 0 30px rgba(37, 211, 102, 0.4),
        0 0 60px rgba(37, 211, 102, 0.2);
}

.contact-card-icon.whatsapp-icon::before {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.2), transparent);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-card-content {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #102A43;
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.contact-card-content p {
    margin-bottom: 0.4rem;
}

.contact-card-content strong {
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-card-button {
    display: inline-block;
    padding: 0.875rem 2.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.contact-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-card-button:hover::before {
    width: 300px;
    height: 300px;
}

.contact-card-button:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 187, 240, 0.4);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    .contact-grid {
        gap: var(--spacing-md);
    }
    
    .contact-card {
        padding: var(--spacing-lg);
    }
    
    .contact-card-content {
        min-height: auto;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 32, 74, 0.2);
}

.contact-email-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 187, 240, 0.2);
    border-radius: 50%;
    color: var(--color-accent);
}

.contact-email-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-lg);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-email-list {
    display: grid;
    gap: var(--spacing-md);
}

.email-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all var(--transition-base);
}

.email-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.email-item span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
}

.email-item a {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.email-item a:hover {
    color: var(--color-accent);
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    .email-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .info-boxes {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .about-image-wrapper {
        order: 2;
    }
    
    .about-content {
        order: 1;
        padding: 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .product-image {
        height: 220px;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        transition: left var(--transition-base);
        padding: var(--spacing-lg) 0;
        justify-content: center;
        margin-right: 0;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .nav-link {
        font-size: 1.25rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .slider-controls {
        padding: 0 var(--spacing-sm);
    }
    
    .scroll-indicator {
        bottom: var(--spacing-sm);
    }
    
    .scroll-icon {
        width: 24px;
        height: 40px;
    }
    
    .scroll-text {
        font-size: 0.65rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===================================
   TYPEWRITER HERO SECTION
   =================================== */

#typewriter-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(100px + var(--spacing-xl)) 0 var(--spacing-xl);
    background: 
        linear-gradient(
            rgba(0, 32, 74, 0.85),
            rgba(0, 32, 74, 0.85)
        ),
        url('hakkımızda.png') center/cover fixed;
    overflow: hidden;
}

#typewriter-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(0, 187, 240, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 1;
}

#typewriter-hero .container {
    position: relative;
    z-index: 2;
}

#typewriter-hero h1 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 60px;
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 187, 240, 0.3);
}

#cursor {
    color: #00BBF0;
    font-weight: 300;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

#typewriter-hero p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #D1D5DB;
    letter-spacing: 0.5px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

#typewriter-hero p.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    #typewriter-hero {
        min-height: 50vh;
        padding: calc(80px + var(--spacing-md)) 0 var(--spacing-md);
    }
    
    #typewriter-hero h1 {
        font-size: 42px;
        letter-spacing: 2px;
    }
    
    #typewriter-hero p {
        font-size: 16px;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
/* Company Story Section */
.company-story {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(180deg, #e8eaed 0%, #f5f5f5 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.story-text .section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.story-text .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    margin-top: var(--spacing-sm);
}

.story-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}

.story-paragraph strong {
    color: var(--primary-color);
    font-weight: 600;
}

.story-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 32, 74, 0.15);
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 32, 74, 0.3), transparent);
    z-index: 1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

/* Mission Vision Section */
.mission-vision {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.mv-card {
    background: #0a2540;
    border: 1px solid rgba(0, 187, 240, 0.3);
    border-radius: 16px;
    padding: var(--spacing-xl);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 187, 240, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 187, 240, 0.08) 0%, transparent 60%);
    z-index: 0;
}

.mv-card > * {
    position: relative;
    z-index: 1;
}

.mv-card:hover {
    background: #001a30;
    border-color: rgba(0, 187, 240, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 187, 240, 0.3);
}

.mv-icon {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.mv-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--spacing-md);
    letter-spacing: 2px;
}

.mv-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Values Section */
.values-section {
    padding: var(--spacing-xl) var(--spacing-md);
    background: #f5f5f5;
}

.values-section .section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    position: relative;
}

.values-section .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    margin: var(--spacing-md) auto 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 32, 74, 0.1);
    border-radius: 12px;
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(0, 187, 240, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 187, 240, 0.15);
}

.value-icon {
    color: var(--secondary-color);
    margin: 0 auto var(--spacing-md);
    display: inline-block;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.value-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Why Choose Us Section */
.why-choose {
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(180deg, #e8eaed 0%, #f5f5f5 100%);
}

.why-choose .section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.why-item {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: var(--spacing-md);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.why-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 187, 240, 0.2);
}

.why-item:hover::before {
    opacity: 0.05;
}

.why-icon {
    display: inline-block;
    margin: 0 auto var(--spacing-sm);
}

.why-item:nth-child(1) .why-icon {
    color: #FF6B6B;
}

.why-item:nth-child(2) .why-icon {
    color: #4ECDC4;
}

.why-item:nth-child(3) .why-icon {
    color: #FFD93D;
}

.why-item:nth-child(4) .why-icon {
    color: #6BCF7F;
}

.why-item:nth-child(5) .why-icon {
    color: #A78BFA;
}

.why-item:nth-child(6) .why-icon {
    color: #FB923C;
}

.why-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.why-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.why-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-text .section-title,
    .values-section .section-title,
    .why-choose .section-title {
        font-size: 36px;
    }
    
    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .mv-card,
    .value-card,
    .why-item {
        padding: var(--spacing-md);
    }
}

