  .clients-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .clients-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #0177BF;
    }

    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .client-logo {
      background: #ffffff;
      border-radius: 15px;
      padding: 20px;
      width: 150px;
      height: 100px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-logo:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    .client-logo img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .client-logo {
        width: 120px;
        height: 90px;
      }
    }/* =========================================
   QUALITY PAGE SPECIFIC STYLES
   ========================================= */

/* Layout for Intro Section (Text vs Tolerance Panel) */
.quality-intro-grid {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 2 parts content, 1 part tolerance box */
    gap: 40px;
    align-items: start;
}

/* Facility List Styling */
.facility-list ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for list items */
    gap: 15px;
}

.list-dots li {
    position: relative;
    padding-left: 25px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 8px;
}

/* Custom Dot for List Items */
.list-dots li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

/* =========================================
   TOLERANCE DATA PANEL (Styled Box)
   ========================================= */
.tolerance-panel {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px; /* Sticky while scrolling */
}

.panel-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.panel-header h3 {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    margin: 0;
}

.panel-content {
    padding: 20px;
}

.tolerance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns inside the box */
    gap: 15px;
}

.t-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.t-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.t-val {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .quality-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .facility-list ul {
        grid-template-columns: 1fr; /* Stack list on mobile */
    }

    .tolerance-panel {
        position: static; /* Remove sticky on mobile */
    }
}/* =========================================
   PROCESSES PAGE SPECIFIC STYLES
   ========================================= */

/* Layout for the Intro Section (Text vs Image) */
.process-intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Two Columns for the Bullet List */
.process-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.process-column ul {
    list-style: none;
    padding: 0;
}

.process-column li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Custom Arrow Icon for List Items */
.process-column li::before {
    content: '\f0a9'; /* FontAwesome arrow-circle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Right Side Highlight Image */
.process-highlight-img {
    position: sticky;
    top: 100px;
}

.img-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.img-box img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.img-box:hover img {
    transform: scale(1.05);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 140, 194, 0.9);
    color: white;
    padding: 10px;
    text-align: center;
}

/* =========================================
   MACHINE GRID (Gallery)
   ========================================= */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.machine-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.machine-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.machine-name {
    padding: 15px;
    text-align: center;
    margin: 0;
    font-weight: 500;
    color: var(--secondary-color);
    background: var(--light-gray);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .process-intro-grid {
        grid-template-columns: 1fr;
    }
    
    .process-list {
        grid-template-columns: 1fr;
    }

    .machine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .machine-grid {
        grid-template-columns: 1fr;
    }
    
    .process-highlight-img {
        position: static; /* Unstick image on mobile */
    }
}/* =========================================
   PRODUCT GALLERY (Specific to Products Page)
   ========================================= */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px; /* Fixed height for consistency */
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-overlay {
    position: absolute;
    bottom: -100%; /* Hidden by default */
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 140, 194, 0.85); /* Primary color with opacity */
    color: white;
    text-align: center;
    transition: bottom 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card:hover .product-overlay {
    bottom: 0; /* Slide up on hover */
}

.product-card:hover img {
    transform: scale(1.1); /* Zoom effect */
}

/* Pagination Styling */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.page-item {
    border: 1px solid #ddd;
    border-radius: 4px;
}

.page-link {
    display: block;
    padding: 10px 15px;
    color: var(--secondary-color);
    text-decoration: none;
    transition: 0.3s;
}

.page-link:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.page-item.active .page-link {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Mobile Responsiveness for Product Grid */
@media (max-width: 991px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
} /* =========================================
   HERO SECTION (SINGLE IMAGE)
   ========================================= */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh; /* Full viewport height minus header roughly */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0px; /* Offset for fixed header */
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('file:///C:/Users/Administrator/Desktop/Anjali%20T%20Precision/img/home-3-Banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
    z-index: 2;
}

.hero-container { position: relative; z-index: 3; width: 100%; max-width: 1200px; }

.hero-content {
    color: var(--white);
    text-align: left;
    max-width: 800px;
    padding: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.5s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.hero-btns { display: flex; gap: 15px; }

/* Animation */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrapper img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-content p { margin-bottom: 20px; font-size: 1.05rem; }

/* =========================================
   SPECIALITIES (Why Choose Us)
   ========================================= */
.specialities { background-color: var(--light-gray); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* =========================================
   INDUSTRIES / SERVICES
   ========================================= */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
}
.service-item {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}
.service-item i {
    font-size: 2.5rem;
    color: var(--text-gray);
    margin-bottom: 15px;
    transition: var(--transition);
}
.service-item:hover i { color: var(--primary-color); }
.service-item h4 {
    font-weight: 500;
    color: var(--secondary-color);
}

/* =========================================
   STATS SECTION
   ========================================= */
.stats-section {
    background: url('https://picsum.photos/seed/factory_bg/1920/600.jpg') no-repeat center center/cover;
    position: relative;
    color: var(--white);
}
.stats-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 140, 194, 0.9); /* Primary color overlay */
    z-index: 1;
}
.stats-container { position: relative; z-index: 2; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.stat-item p { font-size: 1.1rem; font-weight: 500; }

/* =========================================
   TEAM SECTION
   ========================================= */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-img-box {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-box img { transform: scale(1.1); }

.social-overlay {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background: rgba(0, 140, 194, 0.9);
    padding: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: var(--transition);
}

.team-card:hover .social-overlay { bottom: 0; }

.social-overlay a { color: var(--white); font-size: 1.2rem; }
.social-overlay a:hover { color: var(--accent-color); }

.team-info { padding: 20px; text-align: center; }
.team-info h4 { font-size: 1.2rem; margin-bottom: 5px; }
.team-role { color: var(--primary-color); font-weight: 500; font-size: 0.9rem; }

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section { background: var(--light-gray); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.form-group { margin-bottom: 20px; }

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control { resize: vertical; height: 120px; }

/* --- VARIABLES & RESET --- */
:root {
    --primary: #008cc2; /* Steel Blue */
    --primary-dark: #006a94;
    --accent: #d89d0e; /* Gold */
    --dark: #1a1a1a;
    --light: #f4f6f8;
    --white: #ffffff;
    --text-gray: #555555;
    --border-radius: 4px;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- UTILITIES --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 0%; height: 100%;
    background-color: var(--accent);
    z-index: -1;
    transition: var(--transition);
}

.btn-primary:hover::before { width: 100%; }

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- NAVIGATION --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--accent); }
.navbar.scrolled .logo { color: var(--dark); }

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    position: relative;
    font-size: 0.9rem;
}

.navbar.scrolled .nav-link { color: var(--dark); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.nav-link:hover::after { width: 100%; }

.hamburger {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.navbar.scrolled .hamburger { color: var(--dark); }

/* --- HERO SLIDER (BANNER) --- */
.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomEffect 6s linear infinite;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    z-index: 3;
}

.slide-content {
    max-width: 800px;
    color: var(--white);
    padding: 0 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.3s;
}

.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.slide-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    transform: translateY(-50%);
}

.slider-btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* --- ABOUT SECTION --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(45deg, rgba(0,140,194,0.8), rgba(216,157,14,0.2));
    opacity: 0.3;
    transition: var(--transition);
}

.about-img-wrapper:hover::after { opacity: 0; }

.about-img { width: 100%; transition: transform 0.8s ease; }
.about-img-wrapper:hover .about-img { transform: scale(1.05); }

.section-header {
    margin-bottom: 30px;
    position: relative;
    padding-left: 20px;
    border-left: 4px solid var(--accent);
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* --- SPECIALITIES --- */
.specialities { background-color: var(--light); }

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    text-align: center;
    border-bottom: 3px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 20px 40px rgba(0,140,194,0.15);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    transition: var(--transition);
}

.card:hover .card-icon {
    color: var(--accent);
    transform: rotateY(180deg);
}

/* --- PRODUCTS --- */
.product-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 0 40px 0;
    scroll-snap-type: x mandatory;
}

.product-card {
    min-width: 300px;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    scroll-snap-align: center;
    transition: var(--transition);
}

.product-card:hover { box-shadow: 0 15px 30px rgba(0,0,0,0.2); }

.product-img-container {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img { transform: scale(1.1); }

.product-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,140,194,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay { opacity: 1; }

/* --- STATS --- */
.stats-section {
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://picsum.photos/seed/factory/1920/1080.jpg') fixed center/cover;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3.5rem;
    color: var(--accent);
    margin-bottom: 10px;
}

/* --- TEAM --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.team-card:hover { transform: translateY(-5px); }

.team-img-box { position: relative; height: 300px; overflow: hidden; }
.team-img-box img { width: 100%; height: 100%; object-fit: cover; }

.social-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: var(--primary);
    display: flex;
    justify-content: center;
    padding: 10px;
    transition: var(--transition);
}

.team-card:hover .social-overlay { bottom: 0; }
.social-overlay a { color: var(--white); font-size: 1.2rem; margin: 0 10px; }

/* --- CONTACT --- */
.contact-section { background-color: var(--light); }

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item { margin-bottom: 30px; display: flex; align-items: flex-start; }
.info-icon { font-size: 1.5rem; color: var(--accent); margin-right: 20px; margin-top: 5px; }
.contact-form-wrapper { padding: 50px; }
.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,140,194,0.1);
}

/* --- FOOTER --- */
.footer {
    background: #111;
    color: #aaa;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr  2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.8rem;
}
.footer-brand h2 span { color: var(--primary); }

.footer h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links li { margin-bottom: 12px; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; transition: var(--transition); }

/* --- FOOTER BOTTOM WITH LOGOS --- */
.footer-bottom {
    border-top: 1px solid #333;
    padding: 30px 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-logos {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-logo-img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-logo-img:hover { opacity: 1; }

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .about-grid, .contact-container, .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .slide-title { font-size: 2.5rem; }
    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    }
    .nav-menu.active { right: 0; }
    .hamburger { display: block; z-index: 1001; }
    .hamburger.active { color: var(--white); }
    .slider-controls { display: none; } /* Hide arrows on mobile */
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    color: var(--dark);
    padding: 20px;
    border-left: 5px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(200%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}
.toast.show { transform: translateX(0); }