/* GlobalSource Pro - Main Stylesheet */
/* Mobile-First Responsive Design with Dark Green Theme */

/* CSS Variables - Premium Light Blue & Grey Theme */
:root {
    /* ===== PREMIUM CORPORATE LUXURY THEME ===== */

    /* Primary – deep charcoal (premium feel) */
    --primary-color: #2b2f36;
    --primary-dark: #1f2329;
    --primary-light: #3a3f46;

    /* Secondary – soft graphite */
    --secondary-color: #6b7280;

    /* Accent – muted slate blue (very premium, not flashy) */
    --accent-color: #4c5d73;
    --accent-light: #cfd6df;

    /* Status colors (keep readable) */
    --success-color: #0f766e;
    --error-color: #b91c1c;
    --whatsapp-color: #25d366;

    /* Text colors */
    --text-color: #2f343b;
    --text-light: #6b7280;
    --text-dark: #111827;

    /* Backgrounds (THIS is premium secret) */
    --bg-white: #ffffff;
    --bg-light: #f7f8fa;      /* warm off-white, not grey */

    /* Borders & separators */
    --border-color: #e6e8ec;

    /* Shadows – softer, more depth */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 30px 60px rgba(0,0,0,0.12);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 22px;

    --transition: all 0.3s ease;

    /* Premium gradients */
    --gradient-premium: linear-gradient(
        135deg,
        #2b2f36 0%,
        #3a3f46 50%,
        #2b2f36 100%
    );

    --gradient-light: linear-gradient(
        135deg,
        #f7f8fa 0%,
        #eef1f5 100%
    );
}


/* Reset & Base - Mobile First */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
    min-width: 320px;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-light);
}

ul {
    list-style: none;
}

/* Container - Mobile First */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Typography - Mobile First */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons - Mobile Optimized */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

.btn-white:hover {
    background-color: var(--bg-light);
    color: var(--primary-dark);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    font-size: 0.9rem;
    padding: 10px 18px;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
}

/* Header - Mobile First */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-weight: 700;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}



/* Mobile Navigation - Default State */
.main-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-white);
    padding: 20px;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    overflow-y: auto;
    z-index: 999;
}

.main-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.main-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.main-nav a {
    display: block;
    padding: 14px 16px;
    color: var(--text-color);
    font-weight: 500;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-color);
    background-color: var(--bg-light);
}

.main-nav .nav-cta {
    margin-top: 12px;
    text-align: center;
    color: white !important;
}

.main-nav .nav-cta:hover {
    background-color: var(--primary-light);
    color: white !important;
}

.nav-cta.btn-primary {
    color: white !important;
}

.nav-cta.btn-primary:hover {
    color: white !important;
}

/* Mobile Menu Toggle - Visible by Default */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}

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

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

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

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

/* Hero Section - Mobile First */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: 1.75rem;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-buttons .btn {
    width: 100%;
}

/* Hero Slider - Premium Modern Style */
.hero-slider {
    margin-top: 60px;
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.hero-slide > .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.hero-slide.slide-1 {
    background: linear-gradient(135deg, #4a6fa5 0%, #3d5a80 50%, #2c5282 100%);
}

.hero-slide.slide-2 {
    background: linear-gradient(135deg, #5c7a99 0%, #4a6fa5 50%, #3d5a80 100%);
}

.hero-slide.slide-3 {
    background: linear-gradient(135deg, #3d5a80 0%, #2c5282 50%, #1e3a5f 100%);
}

.hero-slide.slide-4 {
    background: linear-gradient(135deg, #6b8cbe 0%, #4a6fa5 50%, #3d5a80 100%);
}

.hero-slide.has-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.has-image .slide-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.25;
    color: white;
    text-align: center;
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0 0 24px 0;
    line-height: 1.6;
    text-align: center;
}

.slide-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0;
    justify-content: center;
    align-items: center;
}

.slide-buttons .btn {
    width: auto;
    min-width: 160px;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

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

.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transition: var(--transition);
    display: none;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.heroSwiper .swiper-pagination {
    bottom: 20px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition);
}

.heroSwiper .swiper-pagination-bullet-active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* Sections - Mobile First */
.section {
    padding: 50px 0;
}

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

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

.section-header {
    text-align: center;
    max-width: 100%;
    margin: 0 auto 30px;
}

.section-header h2 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.section-header p {
    color: var(--text-light);
    font-size: 1rem;
}

.section-dark .section-header h2 {
    color: white;
}

.section-dark .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

/* Cards Grid - Mobile First */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.card p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.card-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
}

.card-link::after {
    content: '\2192';
    transition: var(--transition);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Features Section - Mobile First */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    text-align: center;
    padding: 20px 12px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
}

.feature-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.feature-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* CTA Section - Mobile First */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 50px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 0.75rem;
}

.cta-section p {
    opacity: 0.9;
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 1.5rem;
}

/* Page Header - Mobile First */
.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.page-header h1 {
    color: white;
    margin-bottom: 0.75rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 100%;
    margin: 0 auto;
    font-size: 1rem;
}

/* Vision/Mission - Mobile First */
.vision-mission {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.vm-item {
    background: var(--bg-white);
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.vm-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

/* Timeline - Mobile First */
.timeline {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

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

.timeline-content {
    width: 100%;
    background: var(--bg-white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.timeline-dot {
    position: absolute;
    left: -22px;
    top: 20px;
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    border: 3px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* Team Grid - Mobile First */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.team-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h3 {
    margin-bottom: 4px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Products Grid - Mobile First */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.product-image {
    height: 160px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Product Details Page - Mobile First */
.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: var(--accent-color);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.product-detail-images {
    text-align: center;
}

.main-product-image {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-lg);
    padding: 60px;
    font-size: 6rem;
    margin-bottom: 16px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-thumbnail {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.product-detail-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-detail-info h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.product-full-desc {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    padding: 10px 0 10px 32px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.1rem;
}

.product-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 2rem;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-lg);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

.category-tag:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (min-width: 600px) {
    .product-cta-buttons {
        flex-direction: row;
    }
    
    .main-product-image {
        font-size: 8rem;
        padding: 80px;
    }
}

@media (min-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 50px;
        align-items: start;
    }
    
    .product-detail-info h2 {
        font-size: 1.75rem;
    }
    
    .main-product-image {
        font-size: 10rem;
        padding: 100px;
    }
    
    .product-thumbnail {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* Contact Page - Mobile First */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 28px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    color: white;
    margin-bottom: 1.25rem;
}

.contact-details {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.contact-icon-box {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-text h4 {
    color: white;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.contact-text p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

.contact-form-section {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-section h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-color);
}

/* Forms - Mobile First */
.form-group {
    margin-bottom: 16px;
}

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

.form-group label .required {
    color: var(--error-color);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition);
    background: var(--bg-white);
    -webkit-appearance: none;
}

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

.form-control::placeholder {
    color: var(--text-light);
}

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

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

/* Alerts */
.alert {
    padding: 14px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-weight: 500;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Network/Offices Grid - Mobile First */
.offices-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.office-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
}

.office-card h3 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.office-region {
    font-size: 0.8rem;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 400;
}

.office-card p {
    font-size: 0.9rem;
}

/* Careers/Job Cards - Mobile First */
.job-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
    transition: var(--transition);
}

.job-card:hover {
    box-shadow: var(--shadow-lg);
}

.job-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 12px;
}

.job-title h3 {
    margin-bottom: 6px;
    color: var(--primary-color);
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.job-tag {
    background: var(--bg-light);
    color: var(--text-color);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.job-tag.featured {
    background: var(--primary-color);
    color: white;
}

.job-card p {
    font-size: 0.9rem;
}

/* Footer - Mobile First */
.main-footer {
    background: var(--primary-color);
    color: white;
    padding: 40px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
}

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.contact-icon {
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

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

.footer-bottom-links a:hover {
    color: white;
}

/* ========================================
   TABLET BREAKPOINT (min-width: 600px)
   ======================================== */
@media (min-width: 600px) {
    .container {
        padding: 0 24px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .page-header {
        padding: 120px 0 50px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.05rem;
    }
    
    /* Hero Slider - Tablet */
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.25rem;
        margin: 0 0 24px 0;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin: 0 0 28px 0;
    }
    
    .slide-buttons {
        flex-direction: row;
        gap: 16px;
    }
    
    .slide-buttons .btn {
        width: auto;
    }
    
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        display: flex;
    }
}

/* ========================================
   DESKTOP BREAKPOINT (min-width: 900px)
   ======================================== */
@media (min-width: 900px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .main-header {
        padding: 15px 0;
    }
    
    /* Desktop Navigation */
    .main-nav {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
        overflow: visible;
    }
    
    .main-nav .nav-list {
        flex-direction: row;
        align-items: center;
        gap: 4px;
    }
    
    .main-nav a {
        padding: 8px 14px;
        font-size: 0.95rem;
    }
    
    .main-nav .nav-cta {
        margin-top: 0;
        margin-left: 8px;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .hero {
        padding: 160px 0 100px;
    }
    
    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content {
        max-width: 700px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .card {
        padding: 30px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
    
    /* Hero Slider - Desktop */
    .hero-slider {
        height: 600px;
    }
    
    .slide-content {
        max-width: 700px;
    }
    
    .slide-content h1 {
        font-size: 3rem;
        margin: 0 0 28px 0;
    }
    
    .slide-content p {
        font-size: 1.25rem;
        margin: 0 0 32px 0;
    }
    
    .slide-buttons {
        gap: 20px;
    }
    
    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 50px;
        height: 50px;
    }
    
    .heroSwiper .swiper-button-next::after,
    .heroSwiper .swiper-button-prev::after {
        font-size: 20px;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .team-image {
        height: 280px;
    }
    
    .offices-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .vision-mission {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .vm-item {
        padding: 40px 30px;
    }
    
    /* Desktop Timeline */
    .timeline {
        padding-left: 0;
        max-width: 800px;
    }
    
    .timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .timeline-item {
        display: flex;
        margin-bottom: 40px;
    }
    
    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }
    
    .timeline-content {
        width: 45%;
        padding: 25px;
    }
    
    .timeline-dot {
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.5fr;
        gap: 50px;
    }
    
    .contact-info-card {
        padding: 40px;
    }
    
    .contact-form-section {
        padding: 40px;
    }
    
    .job-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .page-header {
        padding: 140px 0 60px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
        gap: 40px;
    }
    
    .footer-section h4 {
        margin-bottom: 20px;
    }
}

/* ========================================
   LARGE DESKTOP (min-width: 1200px)
   ======================================== */
@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .hero h1 {
        font-size: 3.25rem;
    }
    
    .feature-number {
        font-size: 2.5rem;
    }
}




/* ================================
   PRODUCT DETAILS – IMAGE GALLERY
   ================================ */

/* Main grid layout */
.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: flex-start;
}

/* Left image column */
.product-detail-images {
    max-width: 480px;
    width: 100%;
}

/* Main product image – always square & full fit */
.main-product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    cursor: zoom-in;
    padding: 0;
}

/* FORCE image to fill full box */
.main-product-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    display: block;
}

/* Thumbnail container */
.product-thumbnails {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Thumbnail box */
.product-thumbnail {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s ease, transform 0.15s ease;
}

/* Thumbnail image */
.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-thumbnail:hover {
    transform: translateY(-2px);
}

/* Active thumbnail highlight */
.product-thumbnail.is-active {
    border-color: #2563eb; /* blue outline */
}

/* Right content column fix */
.product-detail-info {
    max-width: 640px;
}

/* ================================
   LIGHTBOX – FULLSCREEN IMAGE VIEW
   ================================ */

.image-lightbox {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.image-lightbox.is-open {
    display: block;
}

.image-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
}

.image-lightbox-content {
    position: absolute;
    inset: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-lightbox-content img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.5);
    background: #fff;
}

.image-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 32px;
    line-height: 1;
    border: none;
    background: transparent;
    color: #ffffff;
    cursor: pointer;
}

/* Disable scrolling when lightbox is open */
.no-scroll {
    overflow: hidden;
}

/* ================================
   RESPONSIVE FIXES
   ================================ */

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-images {
        max-width: 100%;
    }

    .image-lightbox-content {
        inset: 20px 10px;
    }
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 600;
    color: #1f2937;
    font-size: 18px;
}



.footer-link {
    color: inherit;          /* same color as normal text */
    text-decoration: none;   /* no underline */
    font-weight: 600;        /* optional: thoda bold look */
}

.footer-link:hover {
    color: #000000;          /* hover par dark color */
    text-decoration: underline; /* optional underline on hover, remove if not needed */
}


.footer-logo {
    margin-bottom: 14px;
}

.footer-logo-img {
    height: 48px;     /* footer ke liye perfect size */
    width: auto;
    display: block;
}


/* =========================
   PORTFOLIO DROPDOWN – FIXED
   ========================= */

.nav-dropdown {
    position: relative;
}

/* clickable area thora bara */
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
}

/* dropdown base */
.nav-dropdown .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

/* =========================
   DESKTOP BEHAVIOUR
   ========================= */
@media (min-width: 900px) {

    .nav-dropdown .dropdown-menu {
        position: absolute;
        top: 100%;                /* GAP REMOVE */
        left: 0;
        min-width: 220px;
        background: var(--bg-white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        border: 1px solid var(--border-color);

        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 3000;
    }

    /* KEEP OPEN when hovering parent OR menu */
    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li a {
        display: block;
        padding: 10px 16px;
        font-weight: 500;
        color: var(--text-color);
        white-space: nowrap;
    }

    .dropdown-menu li a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
}

/* =========================
   MOBILE BEHAVIOUR
   ========================= */
@media (max-width: 899px) {

    .nav-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding-left: 12px;
    }

    .dropdown-menu li a {
        padding: 10px 14px;
        display: block;
    }
}


/*Loader*/


#pageLoader{
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* center box */
.loader-inner{
  text-align: center;
  font-family: Arial, sans-serif;
}

/* spinner */
.spinner{
  width: 36px;
  height: 36px;
  border: 3px solid #ddd;
  border-top: 3px solid #555;
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
}

.loader-inner small{
  display: block;
  margin-top: 10px;
  color: #777;
}

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