/* ===================================
   ULTRA-PREMIUM STARPACKS WEBSITE
   Modern Industrial Design
   =================================== */

/* CSS Variables */
:root {
    --primary: #1E3A8A;
    --secondary: #3B82F6;
    --accent: #F59E0B;
    --highlight: #10B981;
    --dark: #0F172A;
    --background: #F8FAFC;
    --text: #1E293B;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Archivo', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
    /* overflow-x: hidden; */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   Floating Buttons
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: var(--shadow-2xl);
    z-index: 9999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 30px 60px -15px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* ===================================
   Navigation
   =================================== */
.navbar-custom {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1e293b;
    z-index: 9998;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    background: rgba(30, 58, 138, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 75px;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    transition: var(--transition);
}

.scrolled .navbar-content {
    height: 75px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--white);
}

.logo-icon img {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #EF4444 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.logo a:hover .logo-icon {
    transform: rotate(360deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .brand {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-text .tagline {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 8px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    /* background: var(--accent); */
    transition: var(--transition);
    border-radius: 3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-nav {
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
    border: 2px solid rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-quote {
    background: linear-gradient(135deg, var(--accent) 0%, #EF4444 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 8px;
    padding: 8px 10px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: rgba(245, 158, 11, 0.2);
    border-color: var(--accent);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active {
    background: var(--accent);
    border-color: var(--accent);
}

.mobile-toggle.active span {
    background: var(--white);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Only Elements */
.mobile-only {
    display: none;
}

@media (max-width: 991px) {
    .mobile-only {
        display: flex;
    }
}

/* ===================================
   Hero Slider Section
   =================================== */
.hero-section {
    position: relative;
    overflow: hidden;
    /* padding-top: 100px; */
}

.hero-swiper {
    width: 100%;
    min-height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.6) 0%, rgba(15, 23, 42, 0.88) 100%);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: kenburns 30s ease-in-out infinite;
}

@keyframes kenburns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-300);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #EF4444 100%);
    color: var(--white);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -10px rgba(245, 158, 11, 0.6);
}

.btn-hero.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Slider Navigation */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
}

.hero-slider-button-prev,
.hero-slider-button-next {
    width: 60px;
    height: 60px;
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.hero-slider-button-prev:hover,
.hero-slider-button-next:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

/* Hero Slider Pagination */
.hero-slider-pagination {
    position: absolute;
    bottom: 120px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.hero-slider-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    border-radius: 50%;
    transition: var(--transition);
}

.hero-slider-pagination .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: var(--accent);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1.5s both;
    z-index: 10;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-hero {
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    color: var(--primary);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -10px rgba(212, 175, 55, 0.6);
}

.btn-hero.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-hero.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

/* Hero Form Card */
.hero-form-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-2xl);
    animation: fadeInLeft 0.8s ease 0.4s both;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 28px;
    color: var(--white);
    margin-bottom: 10px;
}

.form-header p {
    color: var(--gray-400);
    font-size: 15px;
}

.premium-form .form-group {
    margin-bottom: 20px;
}

.premium-form .form-control {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--white);
    font-size: 15px;
    transition: var(--transition);
}

.premium-form .form-control::placeholder {
    color: var(--gray-400);
}

.premium-form .form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px rgba(212, 175, 55, 0.6);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeIn 1s ease 1.5s both;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   Section Styles
   =================================== */
section {
    /* padding: 100px 0; */
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Why Section
   =================================== */
.why-section {
    /* background: var(--background); */
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg);
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

/* ===================================
   Products Section - Enhanced Professional Design
   =================================== */
.products-section {
    /* background: var(--background); */
    padding: 100px 0 0 0;
}

.product-card {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: 2px solid var(--gray-200);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 350px;
    background: var(--gray-100);
    cursor: pointer;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: 10px;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Image Badge */
.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

/* Zoom Icon Overlay */
.product-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.product-image:hover .product-zoom-icon {
    opacity: 1;
}

.product-content {
    padding: 35px;
    background: var(--white);
}

.product-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-content p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.weight-info {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    color: var(--white);
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.product-card:hover .weight-info {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

/* Product Swiper Slider */
.productSwiper {
    width: 100%;
    height: 100%;
}

.productSwiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.productSwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===================================
   Lightbox Modal Gallery
   =================================== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow: hidden;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-close:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    transform: rotate(90deg) scale(1.1);
}

/* Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    transform: translateY(-50%) scale(1.1);
}

/* Image Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: var(--shadow-xl);
}

/* Loading Spinner */
.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 4px solid rgba(245, 158, 11, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .lightbox-content {
        width: 95%;
        height: 80vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .product-image {
        height: 280px;
    }
    
    .product-content {
        padding: 25px;
    }
    
    .product-content h3 {
        font-size: 20px;
    }
}

/* ===================================
   Parallax Section
   =================================== */
.parallax-section {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.92) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.parallax-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.parallax-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
}

.parallax-content p {
    font-size: 20px;
    color: var(--gray-300);
    margin-bottom: 40px;
}

/* ===================================
   Industries Section
   =================================== */
.industries-section {
    /* background: var(--background); */
}

.industry-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.industry-image {
    width: 100%;
    height: 100%;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.industry-card:hover .industry-image img {
    transform: scale(1.1);
}

.industry-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.8), rgba(31, 41, 55, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: var(--transition);
}

.industry-card:hover .industry-content {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
}

.industry-content i {
    font-size: 48px;
    color: var(--white);
}

.industry-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

/* ===================================
   Infrastructure Timeline
   =================================== */
.infrastructure-section {
    background: var(--white);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.timeline-item:nth-child(even) {
    direction: rtl;
}

.timeline-item:nth-child(even) > * {
    direction: ltr;
}

.timeline-content {
    position: relative;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
    margin-bottom: 25px;
    box-shadow: var(--shadow-xl);
}

.timeline-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
}

.timeline-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.timeline-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.timeline-item:hover .timeline-image img {
    transform: scale(1.05);
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    background: var(--background);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.95), transparent);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 14px;
    color: var(--gray-600);
}

.swiper-pagination-bullet {
    background: var(--accent);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

/* ===================================
   Luxury Slider Section
   =================================== */
.luxury-slider-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    overflow: hidden;
}

.luxury-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--transition);
}

.luxury-slide:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--accent);
    transform: translateY(-10px);
}

.luxury-slide i {
    font-size: 48px;
    color: var(--accent);
}

.luxury-slide h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    text-align: center;
}

.luxury-slide p {
    font-size: 14px;
    color: var(--gray-300);
    text-align: center;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    /* background: var(--background); */
    padding: 0 0 100px 0;
}

.contact-info-card {
    background: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    height: 100%;
    border: 1px solid var(--gray-200);
}

.contact-info-card h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 40px;
}

.contact-form-card {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    margin-bottom: 30px;
}

.contact-form-card .form-header {
    margin-bottom: 30px;
}

.contact-form-card .form-header h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-form-card .form-header p {
    color: var(--gray-600);
    font-size: 15px;
}

.contact-form-card .form-control {
    width: 100%;
    padding: 16px 20px;
    background: var(--background);
    border: 1px solid var(--gray-300);
    border-radius: 12px;
    color: var(--text);
    font-size: 15px;
    transition: var(--transition);
}

.contact-form-card .form-control::placeholder {
    color: var(--gray-500);
}

.contact-form-card .form-control:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(1, 186, 239, 0.1);
}

.contact-form-card .btn-submit {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    color: var(--white);
}

.contact-form-card .btn-submit:hover {
    box-shadow: 0 15px 30px -10px rgba(1, 186, 239, 0.6);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--gray-200);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.7;
}

.contact-details a {
    color: var(--accent);
    font-weight: 600;
}

.contact-details a:hover {
    color: var(--highlight);
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    /* box-shadow: var(--shadow-xl); */
    height: 150px;
    min-height: 175px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.footer-about p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-tagline {
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    color: var(--accent);
    font-style: italic;
    font-weight: 600;
}

.footer-tagline i {
    margin-right: 10px;
}

.footer-links h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray-300);
    font-size: 15px;
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-newsletter h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.footer-newsletter p {
    color: var(--gray-300);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--gray-400);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    border: none;
    border-radius: 50%;
    color: var(--primary);
    cursor: pointer;
    transition: var(--transition);
    padding: 0 15px;
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.social-links {
    display: flex;
    gap: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray-400);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom i {
    color: var(--highlight);
}


.footer-whatsapp-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.footer-whatsapp-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/* ===================================
   Success Modal
   =================================== */
.modal-content {
    border: none;
    border-radius: 24px;
    padding: 40px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

.success-icon i {
    font-size: 50px;
    color: var(--white);
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.modal-body h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.modal-body p {
    color: var(--gray-600);
    font-size: 16px;
    margin-bottom: 30px;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 52px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .timeline-item {
        gap: 40px;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 300px;
        max-width: 85vw;
        height: calc(100vh - 75px);
        background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 5px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 30px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        z-index: 9999;
    }
    
    .nav-menu.active {
        left: 0;
    }

    /* Mobile Menu Overlay */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 75px;
        left: 300px;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    .nav-link {
        width: 100%;
        padding: 14px 16px;
        border-radius: 10px;
        font-size: 15px;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-link::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        opacity: 0;
        transition: var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        opacity: 1;
        transform: translateX(5px);
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(245, 158, 11, 0.15);
        color: var(--accent);
        padding-left: 20px;
    }

    .nav-link::before {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }

    .navbar-content {
        height: 75px;
    }

    .scrolled .navbar-content {
        height: 75px;
    }

    .navbar-custom {
        height: 75px;
    }

    .navbar-custom.scrolled {
        height: 75px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 10000;
    }

    .logo-icon img {
        width: 42px;
        height: 42px;
    }

    .logo-text .brand {
        font-size: 20px;
    }

    .logo-text .tagline {
        font-size: 9px;
    }
    
    /* Mobile Menu Buttons */
    .nav-menu .btn-nav {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        padding: 14px 20px;
        font-size: 15px;
        border-radius: 12px;
    }

    .nav-menu .btn-nav:first-of-type {
        margin-top: 25px;
    }

    .nav-menu .btn-nav.btn-whatsapp {
        background: #25D366;
        border-color: #25D366;
        color: var(--white);
    }

    .nav-menu .btn-nav.btn-whatsapp:hover {
        background: #20bd5a;
        transform: translateY(-2px);
    }

    .nav-menu .btn-nav.btn-quote {
        background: linear-gradient(135deg, var(--accent) 0%, #EF4444 100%);
        border: none;
    }

    .nav-menu .btn-nav.btn-quote:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
        justify-content: center;
    }
}

/* ===================================
   Extra Small Screens (Mobile)
   =================================== */
@media (max-width: 576px) {
    .nav-menu {
        width: 280px;
        max-width: 85vw;
        padding: 25px 15px;
    }

    .logo-icon img {
        width: 38px;
        height: 38px;
    }

    .logo-text .brand {
        font-size: 18px;
    }

    .logo-text .tagline {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .mobile-toggle {
        padding: 6px 8px;
    }

    .mobile-toggle span {
        width: 22px;
    }

    .nav-link {
        padding: 12px 14px;
        font-size: 14px;
    }

    .nav-menu .btn-nav {
        padding: 12px 18px;
        font-size: 14px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .navbar-custom {
        height: 70px;
    }

    .navbar-content {
        height: 70px;
    }

    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu.active::before {
        top: 70px;
    }

    .stat-item {
        min-width: 120px;
    }
    
    .section-title {
        font-size: 34px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-item:nth-child(even) {
        direction: ltr;
    }
    
    .contact-info-card {
        padding: 30px 25px;
        margin-bottom: 30px;
    }
    
    .map-container {
        min-height: 350px;
    }

    .hero-slider-button-prev,
    .hero-slider-button-next {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .hero-slider-pagination {
        bottom: 100px !important;
    }

    .hero-section {
        padding-top: 75px;
    }

    .hero-swiper {
        min-height: calc(100vh - 75px);
    }
}

@media (max-width: 767px) {
    .navbar-content {
        height: 70px;
    }
    
    .scrolled .navbar-content {
        height: 70px;
    }
    
    .navbar-custom {
        height: 70px;
    }
    
    .navbar-custom.scrolled {
        height: 70px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-text .brand {
        font-size: 20px;
    }
    
    .logo-text .tagline {
        font-size: 9px;
    }
    
    .hero-section {
        padding-top: 0px;
    }

    .hero-swiper {
        /* min-height: calc(100vh - 70px); */
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
    }
    
    .hero-form-card {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 24px;
    }
    
    section {
        /* padding: 60px 0; */
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .parallax-content h2 {
        font-size: 32px;
    }
    
    .parallax-content p {
        font-size: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 90px;
        right: 20px;
        font-size: 18px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .timeline-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .product-image {
        height: 250px;
    }
    
    .industry-card {
        height: 220px;
    }
    
    .industry-content i {
        font-size: 36px;
    }
    
    .industry-content h3 {
        font-size: 18px;
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .timeline-content h3 {
        font-size: 22px;
    }
    
    .gallery-item {
        height: 280px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .navbar-custom,
    .whatsapp-float,
    .back-to-top,
    .hero-form-card,
    .footer {
        display: none;
    }
}

/* ===================================
   Accessibility
   =================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .product-card,
    .industry-card,
    .gallery-item,
    .testimonial-card {
        border-width: 2px;
    }
}

/* ===================================
   Utility Classes
   =================================== */
    .text-gradient {
        background: linear-gradient(135deg, var(--accent) 0%, var(--highlight) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .img-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .img-contain {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }


    /* Infrastructure Timeline  */

    .infrastructure-section{
        padding:100px 0 0 0;
        /* background:#f8fafc; */
    }

    .infra-card{
        background:#fff;
        border-radius:25px;
        overflow:hidden;
        box-shadow:0 15px 40px rgba(0,0,0,.08);
        transition:.4s;
        height:100%;
    }

    .infra-card:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 50px rgba(0,0,0,.15);
    }

    .infra-card img{
        width:100%;
        height:250px;
        object-fit:cover;
    }

    .infra-content{
        padding:30px;
        text-align:center;
    }

    .infra-content i{
        width:70px;
        height:70px;
        line-height:70px;
        border-radius:50%;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
        color:#fff;
        font-size:28px;
        margin-bottom:20px;
    }

    .infra-content h4{
        font-size:22px;
        font-weight:700;
        margin-bottom:15px;
        color:#1f2937;
    }

    .infra-content p{
        color:#6b7280;
        line-height:1.8;
        margin:0;
    }

    @media(max-width:768px){

        .infra-card img{
            height:220px;
        }

        .infra-content{
            padding:20px;
        }

    }


    .about-section{
        padding:75px 0 75px 0;
        background:#ffffff;
    }

    .about-content{
        max-width:950px;
        margin:auto;
    }

    .about-text{
        font-size:17px;
        line-height:1.9;
        color:#666;
        margin-bottom:25px;
    }

    .section-badge{
        display:inline-block;
        background:#f8f1d8;
        color:#10b981;
        padding:8px 20px;
        border-radius:30px;
        font-weight:600;
        margin-bottom:20px;
    }

    .section-title{
        font-size:42px;
        font-weight:700;
        margin-bottom:30px;
    }

    .gradient-text{
        color:#10b981;
    }

    .mission-vision-section{
    padding:0 0 50px 0;
    /* background:#f8fafc; */
    }

    .mission-card,
    .vision-card{
        padding:45px 35px;
        border-radius:25px;
        height:100%;
        text-align:center;
        transition:all 0.4s ease;
        position:relative;
        overflow:hidden;
        border-radius:20px;
        border: 1px solid #10b981;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        background: #f9fafb;
    }

    .mission-card:hover,
    .vision-card:hover{
        transform:translateY(-10px);
        box-shadow:0 20px 50px rgba(0,0,0,0.12);
    }

    .mv-icon{
        width:90px;
        height:90px;
        margin:0 auto 25px;
        border-radius:50%;
        background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .mv-icon i{
        font-size:36px;
        color:#fff;
    }

    .mission-card h3,
    .vision-card h3{
        font-size:28px;
        font-weight:700;
        margin-bottom:20px;
        color:#222;
    }

    .mission-card p,
    .vision-card p{
        color:#666;
        line-height:1.9;
        margin-bottom:0;
        font-size:16px;
    }

    @media(max-width:768px){

        .mission-card,
        .vision-card{
            padding:35px 25px;
        }

        .mv-icon{
            width:75px;
            height:75px;
        }

        .mv-icon i{
            font-size:30px;
        }

    }

    @media(max-width:768px){

        .section-title{
            font-size:32px;
        }

        .about-text{
            font-size:16px;
            text-align:left;
        }

    }


    .breadcrumb-section{
        position:relative;
        padding:50px 0 50px;
        background:linear-gradient(
            rgba(15,23,42,.85),
            rgba(15,23,42,.85)
        ),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&q=80');
        background-size:cover;
        background-position:center;
        background-attachment:fixed;
        overflow:hidden;
    }

    .breadcrumb-section::before{
        content:'';
        position:absolute;
        width:400px;
        height:400px;
        background:rgba(212,175,55,.15);
        border-radius:50%;
        top:-150px;
        right:-150px;
    }

    .breadcrumb-section::after{
        content:'';
        position:absolute;
        width:300px;
        height:300px;
        background:rgba(212,175,55,.08);
        border-radius:50%;
        bottom:-120px;
        left:-120px;
    }

    .breadcrumb-content{
        position:relative;
        z-index:2;
        text-align:center;
    }

    .breadcrumb-badge{
        display:inline-block;
        padding:10px 24px;
        background:rgba(212,175,55,.15);
        border:1px solid rgba(212,175,55,.4);
        color:#d4af37;
        border-radius:50px;
        font-size:14px;
        font-weight:600;
        margin-bottom:20px;
    }

    .breadcrumb-content h1{
        color:#fff;
        font-size:58px;
        font-weight:700;
        margin-bottom:20px;
    }

    .breadcrumb{
        background:none;
        margin:0;
        padding:0;
    }

    .breadcrumb-item,
    .breadcrumb-item a{
        color:#fff;
        font-size:16px;
        text-decoration:none;
    }

    .breadcrumb-item.active{
        color:#d4af37;
    }

    .breadcrumb-item + .breadcrumb-item::before{
        color:#d4af37;
    }

    @media(max-width:991px){

        .breadcrumb-section{
            padding:150px 0 80px;
            background-attachment:scroll;
        }

        .breadcrumb-content h1{
            font-size:42px;
        }

    }

    @media(max-width:767px){

        .breadcrumb-content h1{
            font-size:32px;
        }

        .breadcrumb-item,
        .breadcrumb-item a{
            font-size:14px;
        }

    }


    .testimonials-section{
            padding:50px 0;
            background:#f8fafc;
        }

        .testimonial-grid{
            display:grid;
            grid-template-columns:repeat(3,1fr);
            gap:30px;
        }

        .testimonial-card{
            background:#fff;
            padding:35px;
            border-radius:24px;
            position:relative;
            box-shadow:0 15px 40px rgba(0,0,0,.06);
            transition:.4s;
            border:1px solid rgba(0,0,0,.05);
        }

        .testimonial-card:hover{
            transform:translateY(-10px);
            box-shadow:0 25px 50px rgba(0,0,0,.12);
        }

        .quote-icon{
            width:60px;
            height:60px;
            border-radius:50%;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
            display:flex;
            align-items:center;
            justify-content:center;
            margin-bottom:20px;
        }

        .quote-icon i{
            color:#fff;
            font-size:24px;
        }

        .testimonial-rating{
            color:#d4af37;
            font-size:20px;
            letter-spacing:2px;
            margin-bottom:20px;
        }

        .testimonial-card p{
            color:#666;
            line-height:1.9;
            margin-bottom:25px;
            font-size:15px;
        }

        .client-info{
            border-top:1px solid #eee;
            padding-top:20px;
        }

        .client-info h5{
            margin:0;
            font-weight:700;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .client-info span{
            color:#888;
            font-size:14px;
        }

        @media(max-width:991px){

            .testimonial-grid{
                grid-template-columns:repeat(2,1fr);
            }

        }

        @media(max-width:767px){

            .testimonial-grid{
                grid-template-columns:1fr;
            }

            .testimonial-card{
                padding:25px;
            }

        }



    .industries-section{
        padding:100px 0;
        background:#f8fafc;
        }

        .industry-grid{
            display:grid;
            grid-template-columns:repeat(5,1fr);
            gap:25px;
        }

        .industry-box{
            background:#fff;
            padding:35px 25px;
            border-radius:24px;
            text-align:center;
            transition:.4s;
            border:1px solid rgba(0,0,0,.06);
            box-shadow:0 10px 30px rgba(0,0,0,.05);
            height:100%;
        }

        .industry-box:hover{
            transform:translateY(-10px);
            box-shadow:0 20px 40px rgba(0,0,0,.12);
        }

        .industry-box i{
            width:80px;
            height:80px;
            line-height:80px;
            font-size:32px;
            color:#fff;
            border-radius:50%;
            margin-bottom:20px;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--highlight) 100%);
            box-shadow:0 4px 15px rgba(0,0,0,.1);
            border:1px solid rgba(0,0,0,.08);
        }

        .industry-box h4{
            font-size:20px;
            font-weight:700;
            margin-bottom:12px;
            color:#111827;
        }

        .industry-box p{
            font-size:14px;
            line-height:1.8;
            color:#6b7280;
            margin:0;
        }

        @media(max-width:1199px){
            .industry-grid{
                grid-template-columns:repeat(4,1fr);
            }
        }

        @media(max-width:991px){
            .industry-grid{
                grid-template-columns:repeat(3,1fr);
            }
        }

        @media(max-width:767px){
            .industry-grid{
                grid-template-columns:repeat(2,1fr);
                gap:15px;
            }

            .industry-box{
                padding:25px 15px;
            }

            .industry-box i{
                width:65px;
                height:65px;
                line-height:65px;
                font-size:26px;
            }

            .industry-box h4{
                font-size:17px;
            }

            .industry-box p{
                font-size:13px;
            }
        }

        @media(max-width:480px){
            .industry-grid{
                grid-template-columns:1fr;
            }
        }



    /* responsive css */

    @media only screen and (max-width: 600px) {
        body {
            overflow-x: hidden;
        }

        .why-section{
            margin: -100px 0 0 0;
        }

        .social-links {
        display: flex;
        gap: 15px;
        display: flex;
        align-items: center;
        justify-content: start;
        }
    }






/* ===================================
   End of Styles
   =================================== */
