/* Variables */
:root {
    --primary-color: #0066CC;
    /* Professional Blue */
    --primary-dark: #004C99;
    --primary-light: #3385D6;
    --secondary-color: #FFFFFF;
    /* Clean White */
    --accent-blue: #00A3FF;
    /* Bright Blue */
    --bg-dark: #0A1628;
    /* Deep Navy */
    --bg-light: #F8FAFC;
    /* Off White */
    --bg-card: #FFFFFF;
    /* Pure White */
    --text-dark: #1A202C;
    /* Dark Text */
    --text-light: #FFFFFF;
    /* White Text */
    --text-muted: #64748B;
    /* Muted Grey */
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --border-color: #E2E8F0;
    --shadow-sm: 0 2px 8px rgba(0, 102, 204, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 102, 204, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 102, 204, 0.15);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Rajdhani', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Fluid Typography & Spacing System */
    --fs-hero-title: clamp(2rem, 5vw + 1rem, 4.5rem);
    --fs-h1: clamp(2.5rem, 4vw + 0.5rem, 3.5rem);
    --fs-h2: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
    --fs-h3: clamp(1.35rem, 2vw + 0.5rem, 2rem);
    --fs-h4: clamp(1.1rem, 1.5vw + 0.25rem, 1.35rem);
    --fs-body-lg: clamp(1rem, 0.5vw + 0.85rem, 1.3rem);
    --fs-body: clamp(0.95rem, 0.25vw + 0.85rem, 1.15rem);
    --fs-body-sm: clamp(0.85rem, 0.25vw + 0.75rem, 1rem);
    --fs-small: clamp(0.75rem, 0.15vw + 0.7rem, 0.9rem);
    
    --fs-stat-number: clamp(1.75rem, 3vw + 0.5rem, 3rem);
    --fs-badge: clamp(0.75rem, 0.25vw + 0.65rem, 0.9rem);
    --fs-hero-subtitle: clamp(1rem, 1vw + 0.5rem, 1.3rem);
    
    --spacing-section: clamp(60px, 10vh, 100px);
    --spacing-hero-vertical: clamp(30px, 5vh, 50px);
    --spacing-element: clamp(15px, 2vw, 30px);
    --spacing-small: clamp(8px, 1vw, 15px);
    
    --container-max: 1200px;
    --container-padding: clamp(20px, 4vw, 40px);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Prevent horizontal scroll on all elements */
*, *::before, *::after {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary-color);
    position: relative;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: var(--spacing-section) 0;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}

/* Utility class for section padding */
.section-padding {
    padding: var(--spacing-section) 0;
    overflow-x: hidden;
}

/* Light background utility */
.bg-light {
    background-color: var(--bg-light);
}

/* Text alignment utility */
.text-center {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0,102,204,0.12), rgba(0,163,255,0.12));
    color: var(--text-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--fs-small);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: clamp(15px, 2vh, 20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.section-tag1 {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.603), rgba(76, 182, 243, 0.89));
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: var(--fs-small);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: clamp(15px, 2vh, 20px);
    box-shadow: 0 2px 10px rgba(45, 108, 190, 0.473);
    border: 1px solid rgba(57, 104, 206, 0.664);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 6vh, 60px);
}

.section-header h2 {
    font-size: var(--fs-h2);
    margin-bottom: var(--spacing-small);
    color: var(--text-dark);
}

.section-header .line {
    width: clamp(60px, 8vw, 80px);
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    margin: 0 auto clamp(15px, 2vh, 20px);
    border-radius: 2px;
}

.section-subtitle {
    font-size: var(--fs-body);
    color: var(--text-muted);
    max-width: clamp(300px, 90%, 700px);
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    padding: clamp(12px, 1.5vh, 14px) clamp(24px, 3vw, 32px);
    font-weight: 700;
    font-size: clamp(0.85rem, 0.25vw + 0.8rem, 0.95rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.btn-secondary {
    background-color: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 3vh, 30px);
    right: clamp(20px, 3vw, 30px);
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(24px, 4vw, 30px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 25px rgba(0, 102, 204, 0.15);
}

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

.logo {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-text {
    font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.logo-tagline {
    font-size: clamp(0.55rem, 0.75vw, 0.65rem);
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: clamp(1.5px, 0.25vw, 2px);
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 35px);
}

.nav-list.active {
    display: flex;
}

.nav-list a {
    font-weight: 600;
    font-size: clamp(0.8rem, 0.85vw, 0.9rem);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

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

.btn-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    padding: 10px 20px;
    border-radius: 6px;
    color: white !important;
    font-weight: 700;
    font-size: clamp(0.8rem, 0.85vw, 0.9rem);
    box-shadow: 0 3px 12px rgba(0, 102, 204, 0.3);
    white-space: nowrap;
}

.btn-cta::after {
    display: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 102, 204, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: clamp(550px, 100vh, 800px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-dark), #0D2744);
    padding: clamp(100px, 15vh, 140px) 0 clamp(40px, 8vh, 60px);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1vw, 10px);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: clamp(8px, 1.5vh, 12px) clamp(16px, 3vw, 25px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: var(--fs-badge);
    margin-bottom: clamp(15px, 3vh, 25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 90%;
}

.hero-badge i {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: #FFD700;
    flex-shrink: 0;
}

.hero h1 {
    font-size: var(--fs-hero-title);
    margin-bottom: clamp(15px, 3vh, 25px);
    line-height: 1.15;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5), 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0 clamp(10px, 3vw, 20px);
}

.hero-subtitle {
    font-size: var(--fs-hero-subtitle);
    margin-bottom: clamp(25px, 4vh, 40px);
    color: rgba(255, 255, 255, 0.95);
    max-width: clamp(300px, 90%, 750px);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    padding: 0 clamp(15px, 4vw, 30px);
}

.hero-subtitle strong {
    color: white;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 5vw, 60px);
    margin: clamp(25px, 4vh, 40px) 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: clamp(80px, 15vw, 120px);
    flex: 0 1 auto;
}

.stat-number {
    font-size: var(--fs-stat-number);
    font-weight: 700;
    color: white;
    font-family: var(--font-heading);
    margin-bottom: clamp(3px, 0.5vh, 5px);
    line-height: 1.1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-body-sm);
    font-weight: 600;
    line-height: 1.3;
}

.hero-btns {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 20px);
    margin-bottom: clamp(20px, 3vh, 30px);
    padding: 0 clamp(10px, 3vw, 20px);
    max-width: 100%;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 10px);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--fs-body-sm);
    padding: 0 clamp(15px, 4vw, 30px);
    max-width: 90%;
    text-align: center;
}

.hero-trust i {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--success-color);
    flex-shrink: 0;
}


/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
    width: 100%;
}

.about-intro h3 {
    font-size: var(--fs-h3);
    margin-bottom: clamp(15px, 2vh, 20px);
    color: var(--text-dark);
}

.about-intro p {
    font-size: var(--fs-body);
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: clamp(20px, 3vh, 30px);
}

.about-features {
    display: grid;
    gap: 25px;
}

.feature-box {
    display: flex;
    gap: clamp(12px, 2vw, 20px);
    align-items: flex-start;
    padding: clamp(16px, 3vw, 25px);
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.feature-box:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: var(--fs-h4);
    margin-bottom: clamp(6px, 1vh, 8px);
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-muted);
    font-size: var(--fs-body-sm);
    line-height: 1.65;
}

.cta-box {
    margin-top: clamp(25px, 4vw, 40px);
    padding: clamp(20px, 4vw, 30px);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 12px;
    text-align: center;
    color: white;
    width: 100%;
    box-sizing: border-box;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.cta-box .btn:hover {
    transform: translateY(-3px);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(255,255,255,0.98);
    padding: 8px 14px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    z-index: 15;
}

.image-badge i {
    font-size: 1.05rem;
    color: var(--success-color);
    flex-shrink: 0;
}

.image-badge span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: clamp(0.78rem, 1.2vw, 0.95rem);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, var(--bg-light), white);
}

/* All section tags now use consistent bubble style - no override needed */

/* Services Carousel */
.services-carousel-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 40px;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    margin: 0 60px;
}

.services-carousel::before,
.services-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.services-carousel::before {
    left: 0;
    background: linear-gradient(to right, 
        rgba(245, 247, 250, 1) 0%, 
        rgba(245, 247, 250, 0.95) 20%,
        rgba(245, 247, 250, 0.7) 50%,
        rgba(245, 247, 250, 0) 100%);
}

.services-carousel::after {
    right: 0;
    background: linear-gradient(to left, 
        rgba(245, 247, 250, 1) 0%, 
        rgba(245, 247, 250, 0.95) 20%,
        rgba(245, 247, 250, 0.7) 50%,
        rgba(245, 247, 250, 0) 100%);
}

.swipe-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 102, 204, 0.95);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 102, 204, 0.3);
    animation: swipePulse 2s ease-in-out infinite;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.swipe-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.swipe-indicator i {
    font-size: 1.3rem;
    animation: swipeArrow 1.5s ease-in-out infinite;
}

@keyframes swipePulse {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.05);
    }
}

@keyframes swipeArrow {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.services-track {
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 calc(33.333% - 14px);
    min-width: min(280px, 85vw);
    max-width: 100%;
    scroll-snap-align: center;
    background: white;
    border-radius: 20px;
    padding: clamp(20px, 4vw, 35px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 102, 204, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

@media (max-width: 1200px) {
    .service-card {
        flex: 0 0 calc(50% - 10px);
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 102, 204, 0.15);
    border-color: rgba(0, 102, 204, 0.3);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:hover i {
    color: white;
}

.carousel-arrow i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.carousel-arrow-left {
    left: 0;
}

.carousel-arrow-right {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: clamp(40px, 6vw, 60px);
    justify-items: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: clamp(20px, 4vw, 35px);
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-highlight {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.03), rgba(0, 163, 255, 0.03));
}

.highlight-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--warning-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.2);
}

.service-card:hover .service-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content > p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin-top: 20px;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.service-list i {
    color: var(--success-color);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.services-cta {
    text-align: center;
    padding: clamp(25px, 5vw, 50px);
    background: white;
    border-radius: 16px;
    border: 2px dashed var(--primary-color);
    width: 100%;
    box-sizing: border-box;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.services-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Before & After Section */
.before-after {
    background: linear-gradient(135deg, var(--bg-dark), #0D2744);
    color: white;
}

.before-after .section-header h2,
.before-after .section-header .section-subtitle {
    color: white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    margin-bottom: 40px;
    min-height: 100px;
    width: 100%;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: clamp(12px, 2vw, 15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.comparison-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 40px rgba(0, 163, 255, 0.3);
}

.comparison-header {
    margin-bottom: clamp(10px, 1.5vw, 12px);
}

.comparison-header h3 {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    margin-bottom: 5px;
    color: white;
}

.project-type {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: clamp(0.7rem, 1.2vw, 0.75rem);
    font-weight: 600;
}

.comparison-slider {
    position: relative;
    margin-bottom: clamp(12px, 2vw, 15px);
    border-radius: 8px;
    cursor: ew-resize;
    user-select: none;
}

.comparison-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
}

.comparison-img-after {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-img-before {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    transition: none;
}

.comparison-img-before img {
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    margin-left: -22px;
    z-index: 10;
    cursor: ew-resize;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

.slider-button {
    position: relative;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 15;
    pointer-events: auto;
    border: 2px solid var(--primary-color);
}

.slider-button:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slider-button i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.slider-button i:first-child {
    margin-right: 2px;
}

.slider-button i:last-child {
    margin-left: 2px;
}

.comparison-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: white;
}

.comparison-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.comparison-image:hover img {
    transform: scale(1.05);
}

.image-label {
    position: absolute;
    top: clamp(8px, 1.5vw, 12px);
    padding: clamp(4px, 0.8vw, 6px) clamp(10px, 1.5vw, 12px);
    font-size: clamp(0.65rem, 1vw, 0.7rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 5;
}

.before-label {
    left: clamp(8px, 1.5vw, 12px);
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.after-label {
    right: clamp(8px, 1.5vw, 12px);
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.comparison-details {
    list-style: none;
}

.comparison-details p {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 8px);
    margin-bottom: clamp(6px, 1vw, 8px);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.8rem, 1.2vw, 0.9rem);
}

.comparison-details i {
    color: var(--success-color);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.results-cta {
    text-align: center;
    padding: clamp(25px, 5vw, 50px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.results-cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: white;
}

.results-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

/* Why Choose Us Section */
.why-us {
    background: white;
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 70px);
    align-items: center;
    width: 100%;
}

.why-us-content h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.why-us-content .intro-text {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: var(--text-muted);
    line-height: 1.8;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-list li:hover .why-icon {
    transform: rotate(10deg) scale(1.1);
}

.why-icon i {
    font-size: 1.8rem;
    color: white;
}

.why-text strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.why-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.why-cta {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cta-note i {
    color: var(--primary-color);
}

.why-badge {
    position: absolute;
    bottom: 12px;
    right: 12px; /* moved to bottom-right to avoid covering important left-side content */
    background: rgba(255,255,255,0.98);
    padding: 8px 12px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.14);
    z-index: 15;
    max-width: 65%;
}

.why-badge i {
    font-size: 1.05rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.why-badge strong {
    display: block;
    color: var(--text-dark);
    font-size: clamp(0.85rem, 1.1vw, 0.98rem);
    margin-bottom: 0;
    line-height: 1.05;
    font-weight: 800;
}

.why-badge span {
    color: var(--text-muted);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
}

/* Testimonials Section */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 35px);
    min-height: 100px;
    width: 100%;
}

.testimonial-card {
    background: white;
    padding: clamp(15px, 3vw, 25px);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.quote-icon {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon i {
    font-size: 1.2rem;
    color: white;
}

.stars {
    margin: 15px 0 10px 0;
}

.stars i {
    color: #FFB800;
    font-size: 1.1rem;
    margin-right: 2px;
}

.quote {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 2px solid var(--border-color);
    padding-top: 15px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.client-avatar i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.client-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.client-company {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.client-project {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
}

/* Gallery/Projects Section */
.gallery {
    background-color: white;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 10px 25px;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 3vw, 35px);
    margin-bottom: clamp(40px, 6vw, 60px);
}

/* Loading state for dynamic projects */
.loading-projects {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.loading-projects i {
    font-size: 2.5rem;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.no-projects {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    background: var(--bg-light);
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-slow);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(0, 163, 255, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: white;
}

.project-overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.project-overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-overlay-content i {
    font-size: 2rem;
}

.project-info {
    padding: 30px;
}

.project-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.project-tag {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-info h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.project-info p {
    color: var(--text-muted);
    line-height: 1.7;
}

.gallery-cta {
    text-align: center;
    padding: clamp(25px, 5vw, 50px);
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px dashed var(--primary-color);
    width: 100%;
    box-sizing: border-box;
}

.gallery-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.gallery-cta p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.gallery-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Nav projects link styling */
.nav-projects-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    position: relative;
}

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

.nav-projects-link:hover::after {
    transform: scaleX(1);
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: white;
}

.contact .section-header h2,
.contact .section-subtitle {
    color: white;
}

/* Contact section-tag uses standard bubble style for consistency */
.contact .section-tag {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.contact .section-tag1 {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Override highlight color in contact section for better contrast */
.contact .highlight {
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    font-weight: 800;
}

.contact .line {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(30px, 6vw, 60px);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.contact-intro h3 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 20px;
    color: white;
    word-wrap: break-word;
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 30px;
    word-wrap: break-word;
}

.contact-benefits {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.benefit-item i {
    font-size: 1.3rem;
    color: var(--success-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-details li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-details strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-link {
    color: white;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    transition: var(--transition);
    word-break: break-word;
}

.contact-link:hover {
    text-decoration: underline;
    opacity: 0.8;
}

.contact-note {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    margin-top: 5px;
    word-wrap: break-word;
}

.social-links h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    color: white;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.social-btn i {
    font-size: 1.5rem;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: clamp(20px, 5vw, 40px);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.form-header {
    margin-bottom: clamp(20px, 4vw, 30px);
}

.form-header h3 {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--text-dark);
    margin-bottom: 10px;
    word-wrap: break-word;
}

.form-header p {
    color: var(--text-muted);
    font-size: clamp(0.85rem, 2vw, 1rem);
    word-wrap: break-word;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(15px, 3vw, 20px);
    width: 100%;
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: clamp(12px, 2vw, 14px) clamp(14px, 3vw, 18px);
    background-color: var(--bg-light);
    border: 2px solid var(--border-color);
    color: var(--text-dark);
    border-radius: 10px;
    font-family: var(--font-main);
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.file-upload-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-weight: 600;
}

.file-upload-group label:hover {
    border-color: var(--primary-color);
    background: rgba(0, 102, 204, 0.05);
}

.file-upload-group label i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.file-input {
    display: none;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.file-info i {
    color: var(--primary-color);
}

.file-list {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.9rem;
}

.file-item-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.file-item-name i {
    color: var(--primary-color);
}

.file-item-remove {
    cursor: pointer;
    color: #EF4444;
    font-size: 1.2rem;
    transition: var(--transition);
}

.file-item-remove:hover {
    transform: scale(1.2);
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    flex-shrink: 0;
}

.form-status {
    color: var(--text-dark);
    font-size: 0.95rem;
    min-height: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--success-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    font-size: 1.8rem;
    color: white;
}

.footer-logo .logo-tagline {
    font-size: 0.7rem;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.footer-social i {
    font-size: 1.3rem;
}

.footer-badges {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.badge-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.badge-item span {
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    animation: slideUp 0.8s ease forwards 0.2s;
    opacity: 0;
}

.reveal-delay-2 {
    animation: slideUp 0.8s ease forwards 0.4s;
    opacity: 0;
}

.reveal-delay-3 {
    animation: slideUp 0.8s ease forwards 0.6s;
    opacity: 0;
}

/* Responsive Design */
/* Responsive Breakpoints - Enhanced Professional System */

/* Large Desktop Optimization */
@media (min-width: 1440px) {
    :root {
        --container-padding: 60px;
    }
    
    .hero {
        min-height: 800px;
    }
}

/* Tablet & Medium Desktop */
@media (max-width: 1024px) {
    .about-content,
    .contact-wrapper,
    .why-us-wrapper {
        gap: clamp(30px, 5vw, 50px);
    }
}

/* Small Height Screens (Laptops, Ultrabooks) */
@media (max-height: 700px) {
    .hero {
        min-height: 550px;
        padding: clamp(80px, 12vh, 100px) 0 clamp(30px, 5vh, 40px);
    }
    
    .hero-badge {
        padding: 6px 16px;
        margin-bottom: 12px;
        font-size: 0.75rem;
    }
    
    .hero-stats {
        margin: 15px 0;
        gap: clamp(15px, 4vw, 30px);
    }
    
    .hero-btns {
        margin-bottom: 12px;
        gap: 15px;
    }
    
    .hero h1 {
        margin-bottom: 12px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
}

/* Thank You Message Styles */
.thank-you-message {
    display: none; /* Hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #F8FAFC;
    border-radius: 16px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

.thank-you-message.visible {
    display: flex;
}

.thank-you-message h2 {
    font-size: var(--fs-h2);
    color: var(--text-dark);
    margin: 20px 0 10px;
}

.thank-you-message p {
    font-size: var(--fs-body);
    color: var(--text-muted);
    max-width: 400px;
}

.checkmark {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #4bb71b;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 60px #4bb71b;
    }
}

/* Very Short Screens */
@media (max-height: 600px) {
    .hero {
        min-height: 500px;
        padding: 80px 0 30px;
    }
    
    .hero-stats {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 5px 14px;
        margin-bottom: 10px;
    }
    
    .hero h1 {
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        margin-bottom: 15px;
    }
    
    .hero-btns {
        gap: 12px;
    }
}

/* Tablet Portrait & Small Desktop */
@media (max-width: 768px) {
    .services-carousel {
        margin: 0 50px;
    }
    
    .services-carousel::before,
    .services-carousel::after {
        width: 80px;
    }
    
    .services-carousel::before {
        background: linear-gradient(to right, 
            white 0%, 
            rgba(255, 255, 255, 0.9) 25%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%);
    }
    
    .services-carousel::after {
        background: linear-gradient(to left, 
            white 0%, 
            rgba(255, 255, 255, 0.9) 25%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0) 100%);
    }
    
    .swipe-indicator {
        right: 15px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .services-track {
        scroll-snap-type: none;
        gap: 15px;
        padding: 10px 15px;
    }
    
    .service-card {
        flex: 0 0 min(260px, 80vw);
        min-width: min(260px, 80vw);
        padding: 20px;
        scroll-snap-align: none;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 1.3rem;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 3vw, 20px);
    }
    
    .comparison-card {
        padding: clamp(12px, 2vw, 15px);
    }
    
    .slider-button {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .slider-handle {
        width: 40px;
        margin-left: -20px;
    }
    
    .slider-button i {
        font-size: 1rem;
    }
    
    .header {
        padding: 15px 0;
    }
    
    .header-container {
        justify-content: center;
        position: relative;
    }
    
    .logo {
        text-align: center;
    }
    
    .mobile-menu-btn {
        position: absolute;
        right: 10px;
    }
    
    .nav-list {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 20px;
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    .nav-list.active {
        display: flex !important;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .about-content,
    .contact-wrapper,
    .why-us-wrapper {
        grid-template-columns: 1fr;
        gap: clamp(30px, 6vw, 40px);
    }
    
    .why-us-image {
        order: 2;
    }
    
    .services-grid,
    .before-after-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: clamp(16px, 3vw, 20px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: clamp(20px, 4vw, 25px);
    }
    
    .contact-info {
        padding: clamp(20px, 4vw, 30px);
    }
    
    .contact-intro h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .social-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .social-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .gallery-filter {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-btn {
        width: 100%;
        text-align: center;
    }
    
    .why-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .why-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    :root {
        --container-padding: 16px;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card,
    .testimonial-card,
    .contact-form,
    .project-card {
        padding: clamp(16px, 4vw, 20px);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group label {
        font-size: clamp(0.85rem, 2vw, 0.95rem);
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .form-header h3 {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
    }
    
    .form-header p {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
    
    .services-track {
        gap: 12px;
        padding: 10px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 12px;
        max-width: 95%;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.82rem;
        white-space: normal;
        text-align: center;
    }
    
    .hero-btns .btn {
        width: 100%;
        max-width: 100%;
    }
    
    .about-content,
    .contact-wrapper,
    .why-us-wrapper {
        gap: 20px;
    }
    
    .feature-box,
    .why-list li {
        padding: 16px;
        gap: 12px;
    }
    
    .services-cta,
    .gallery-cta,
    .results-cta {
        padding: clamp(20px, 5vw, 30px);
    }
    
    .comparison-card {
        padding: 12px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 16px;
        right: 16px;
    }
}

/* Ultra Small Phones */
@media (max-width: 360px) {
    :root {
        --container-padding: 12px;
    }
    
    .stat-item {
        min-width: 65px;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 10px;
    }
    
    .hero-badge span {
        font-size: 0.65rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.75rem;
    }
    
    .service-card,
    .testimonial-card,
    .project-card,
    .comparison-card {
        padding: 12px;
    }
    
    .services-track {
        padding: 8px;
    }
    
    .service-card {
        min-width: min(240px, 90vw);
    }
}

/* ================================
   Projects Page Styles (Light Theme)
   ================================ */

/* Page Hero - Light with Blue Blur Effect */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(139, 92, 246, 0.08) 40%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(139, 92, 246, 0.06) 50%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.page-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 16px 0;
    color: var(--text-dark);
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Projects Page Section - Light */
.projects-page {
    background: #ffffff;
    padding: 60px 0 100px;
}

/* Filter Bar - Light */
.projects-filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-tab:hover {
    background: rgba(255, 107, 0, 0.08);
    border-color: rgba(255, 107, 0, 0.3);
    color: var(--text-dark);
}

.filter-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.filter-tab i {
    font-size: 1.1rem;
}

.projects-count {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    white-space: nowrap;
}

.projects-count span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

/* Project Card - Light */
.projects-page .project-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.projects-page .project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.projects-page .project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
}

.projects-page .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.projects-page .project-card:hover .project-image img {
    transform: scale(1.08);
}

.projects-page .project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.projects-page .project-card:hover .project-overlay {
    opacity: 1;
}

.projects-page .project-overlay-content {
    color: white;
}

.projects-page .project-overlay-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.projects-page .project-overlay-content p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 8px;
}

.projects-page .project-overlay-content i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.projects-page .project-info {
    padding: 24px;
}

.projects-page .project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.projects-page .project-category {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 102, 204, 0.12);
    color: #0066CC;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects-page .project-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(255, 107, 0, 0.12);
    color: var(--primary-color);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.projects-page .project-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.projects-page .project-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State - Light */
.loading-state {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: #666;
    min-height: 200px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-state p {
    font-size: 1rem;
}

/* Empty State - Light */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #666;
    min-height: 200px;
}

.empty-state i {
    font-size: 4rem;
    color: rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* Projects Page Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .projects-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        gap: 16px;
    }
    
    .filter-tabs {
        flex-direction: column;
        width: 100%;
    }
    
    .filter-tab {
        width: 100%;
        justify-content: center;
        padding: 14px 16px;
    }
    
    .projects-count {
        text-align: center;
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .projects-page .project-image {
        height: 220px;
    }
    
    .projects-page .project-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .projects-page {
        padding: 40px 0 80px;
    }
    
    .projects-filter-bar {
        padding: 12px;
    }
    
    .filter-tab {
        font-size: 0.85rem;
        padding: 12px 14px;
    }
    
    .projects-page .project-info {
        padding: 20px;
    }
    
    .projects-page .project-info h3 {
        font-size: 1.1rem;
    }
}

/* Solid Header for Projects Page - Light Theme */
.header-solid {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 102, 204, 0.08);
}

.header-solid .logo {
    color: var(--text-dark);
}

.header-solid .nav-list a {
    color: var(--text-dark);
}

.header-solid .nav-list a.active {
    color: var(--primary-color);
}

.header-solid .mobile-menu-btn span {
    background: var(--text-dark);
}

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

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* ================================
   Form Success/Error Popup
   ================================ */
.form-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.form-popup {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: popupSlide 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.form-popup-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: iconBounce 0.6s ease 0.2s both;
}

@keyframes iconBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.form-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-popup-message {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.form-popup-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-popup-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

@media (max-width: 480px) {
    .form-popup {
        padding: 32px 24px;
        margin: 16px;
    }
    
    .form-popup-icon {
        font-size: 3rem;
    }
    
    .form-popup-title {
        font-size: 1.3rem;
    }
    
    .form-popup-message {
        font-size: 0.95rem;
    }
}

/* ============================================
   STORY TEASER SECTION (Homepage)
   ============================================ */
.story-teaser {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    padding: 40px 30px;
    margin-top: 50px;
    border-radius: 16px;
    width: 100%;
    box-sizing: border-box;
}

.teaser-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.teaser-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.teaser-icon i {
    font-size: 1.75rem;
    color: white;
}

.teaser-text {
    text-align: left;
    flex: 1;
    min-width: 300px;
}

.teaser-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.teaser-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.story-teaser .btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.story-teaser .btn-secondary:hover {
    background: var(--bg-light);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .story-teaser {
        border-radius: 14px;
        padding: 35px 25px;
    }
}

@media (max-width: 768px) {
    .story-teaser {
        padding: 30px 20px;
        margin-top: 35px;
        border-radius: 12px;
    }
    
    .teaser-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .teaser-text {
        text-align: center;
        min-width: auto;
    }
    
    .teaser-text h3 {
        font-size: 1.2rem;
    }
    
    .teaser-text p {
        font-size: 0.95rem;
    }
    
    .teaser-icon {
        width: 50px;
        height: 50px;
    }
    
    .teaser-icon i {
        font-size: 1.5rem;
    }
    
    .story-teaser .btn-secondary {
        padding: 10px 22px;
        font-size: 0.95rem;
    }
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Story Section */
.about-story {
    background: white;
    overflow-x: hidden;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    position: relative;
    overflow: visible;
}

.about-story-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.badge-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-story-content .section-tag {
    margin-bottom: 16px;
}

.about-story-content .section-title {
    margin-bottom: 24px;
}

.about-story-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-story-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.highlight-item strong {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.highlight-item span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

@media (max-width: 992px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story-image {
        max-width: 500px;
        margin: 0 auto;
        padding-bottom: 20px;
    }
    
    .experience-badge {
        bottom: 0;
        right: 10px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-story-image {
        padding-bottom: 15px;
    }
    
    .experience-badge {
        right: 5px;
        padding: 12px 16px;
    }
    
    .badge-number {
        font-size: 1.75rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
}

/* About Journey Timeline Section */
.about-journey {
    background: var(--bg-light);
    padding-bottom: 100px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
    padding-bottom: 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
    padding-left: 60px;
    padding-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.timeline-marker i {
    font-size: 1.25rem;
    color: white;
}

.timeline-content {
    width: 50%;
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.timeline-year {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
        text-align: left;
        padding-left: 55px;
        padding-right: 0;
    }
    
    .timeline-marker {
        left: 20px;
        width: 35px;
        height: 35px;
    }
    
    .timeline-marker i {
        font-size: 0.9rem;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        padding: 18px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
}

/* Certifications Section */
.about-certifications {
    background: white;
    padding-top: 80px;
    padding-bottom: 80px;
    overflow-x: hidden;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.certification-card {
    background: var(--bg-light);
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.certification-card:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.certification-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.certification-icon i {
    font-size: 1.75rem;
    color: white;
}

.certification-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.certification-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 992px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 20px;
    padding: 50px 30px;
}

.about-cta .cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.about-cta .cta-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 550px;
    margin: 0 auto 25px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .about-cta {
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .about-cta {
        margin-left: 16px;
        margin-right: 16px;
        padding: 35px 20px;
        border-radius: 14px;
    }
    
    .about-cta .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .about-cta .cta-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .about-cta .cta-content h2 {
        font-size: 1.35rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* ============================================
   GLOBAL MOBILE OVERFLOW FIX
   ============================================ */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Prevent any element from causing horizontal scroll */
    section, div, header, footer, nav, main, article, aside {
        max-width: 100%;
    }
}