/* --- OPTIMIZED CSS --- */
/* 1. GLOBAL VARIABLES & RESET */
/* =========================================
   1. GLOBAL VARIABLES & RESET
   ========================================= */
   /* 1. IMPORT POPPINS FONT (Must be at the very top) */
   html {
    scroll-behavior: smooth;
}
/* Width of the scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}

/* Handle (the moving part) */
::-webkit-scrollbar-thumb {
    background: #007bff; /* Matches your Blue theme */
    border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #0056b3; 
}
   @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

   /* --- 1. PAGE ENTRANCE ANIMATION --- */
/* This makes the whole page fade in smoothly on load */
body {
    animation: pageFadeIn 0.8s ease-out;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px); /* Slight slide-down effect */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- 2. STATIC (STICKY) HEADER --- */
/* This keeps your navigation bar fixed at the top while scrolling */
header {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays on top of everything */
    background-color: #ffffff; /* Make sure it has a background color */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Adds a subtle professional shadow */
}
   :root {
       --primary-blue: #148ab8;
       --dark-blue: #222c38;
       --white: #ffffff;
       --text-grey: #666666;
       --header-height: 80px;
       --transition-speed: 0.3s;
   }
   
   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
       font-family: 'Poppins', sans-serif;
   }
   
   body {
       background-color: #f4f4f4;
   }
   
   /* =========================================
      1. BASE HEADER STYLES (Desktop Default)
      ========================================= */
  /* =========================================
   HEADER STYLES - FULLY RESPONSIVE (WORKING MOBILE BUTTON)
   ========================================= */

header {
    background-color: var(--white);
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-container {
    width: 90%;
    max-width: 1400px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-sizing: border-box;
    position: relative;
}

/* Logo */
.logo {
    flex: 0 0 auto;
    z-index: 1001;
    text-decoration: none;
}

.logo img {
    width: clamp(100px, 15vw, 140px);
    display: block;
    height: auto;
}

/* Desktop Navigation */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: clamp(25px, 3vw, 45px);
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    position: relative;
}

.desktop-nav > ul > li > a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: clamp(15px, 1.8vw, 18px);
    transition: color var(--transition-speed);
    white-space: nowrap;
}

.desktop-nav > ul > li > a:hover {
    color: var(--primary-blue);
}

/* Desktop Dropdown Styles */
.desktop-nav .dropdown {
    position: relative;
}

.desktop-nav .dropdown > a::after {
    content: ' ▾';
    font-size: 12px;
    margin-left: 5px;
}

.desktop-nav .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.desktop-nav .dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop-nav .dropdown-content a {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-nav .dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--primary-blue);
}

/* Header Right Section */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: clamp(8px, 1.2vw, 12px) clamp(18px, 2.5vw, 28px);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(13px, 1.5vw, 15px);
    transition: background-color var(--transition-speed);
    white-space: nowrap;
}

.btn-header:hover {
    background-color: var(--dark-blue);
}

/* Hide mobile CTA button on desktop */
.mobile-cta-btn {
    display: none;
}

/* Hide checkbox and hamburger by default */
.nav-toggle {
    display: none;
}

.menu-toggle {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--dark-blue);
    user-select: none;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

.menu-toggle:hover {
    color: var(--primary-blue);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .header-container {
        max-width: 1600px;
    }
}

/* Desktop (1440px - 1920px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .header-container {
        width: 88%;
    }
}

/* Laptop & Small Desktop (1024px - 1439px) */
@media (min-width: 1025px) and (max-width: 1439px) {
    .header-container {
        width: 92%;
    }

    .desktop-nav ul {
        gap: 25px;
    }

    .desktop-nav > ul > li > a {
        font-size: 16px;
    }

    .btn-header {
        padding: 9px 20px;
        font-size: 14px;
    }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .header-container {
        width: 95%;
    }

    .desktop-nav ul {
        gap: 20px;
    }

    .desktop-nav > ul > li > a {
        font-size: 15px;
    }

    .btn-header {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* =========================================
   MOBILE & TABLET (768px and below) - WORKING BUTTON
   ========================================= */
@media (max-width: 768px) {
    
    header {
        height: 70px;
    }

    .header-container {
        width: 95%;
        padding: 0 15px;
    }

    /* Show Hamburger Icon */
    .menu-toggle {
        display: block;
        font-size: 32px;
        z-index: 1002;
        position: relative;
    }

    /* Hide Desktop Button */
    .btn-header {
        display: none;
    }

    /* MOBILE NAVIGATION MENU */
    .desktop-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        border-top: 1px solid #eee;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        
        /* CLOSED STATE */
        transform: translateX(-100%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s 0.4s;
        
        display: block;
        overflow-y: auto;
        z-index: 999;
    }

    /* OPEN MENU */
    #nav-toggle:checked ~ .header-container .desktop-nav {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0s 0s;
    }

    /* Stack links vertically */
    .desktop-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        padding: 20px 0;
    }

    .desktop-nav li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .desktop-nav > ul > li > a {
        display: block;
        padding: 18px 25px;
        width: 100%;
        font-size: 16px;
        font-weight: 600;
    }

    /* MOBILE - Hide dropdown arrow */
    .desktop-nav .dropdown > a::after {
        display: none;
    }

    /* COMPLETELY HIDE DROPDOWN CONTENT ON MOBILE */
    .desktop-nav .dropdown-content {
        display: none !important;
    }

    /* SHOW MOBILE CTA BUTTON - REAL CLICKABLE LINK */
    .mobile-cta-btn {
        display: block;
        background-color: var(--primary-blue);
        color: var(--white);
        padding: 14px 25px;
        margin: 20px 25px 30px 25px;
        text-align: center;
        border-radius: 5px;
        font-weight: 600;
        font-size: 15px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .mobile-cta-btn:hover {
        background-color: var(--dark-blue);
    }

    /* Remove the ::after pseudo-element */
    .desktop-nav::after {
        display: none;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    
    header {
        height: 65px;
    }

    .header-container {
        padding: 0 12px;
    }

    .logo img {
        width: 90px;
    }

    .menu-toggle {
        font-size: 28px;
    }

    .desktop-nav {
        top: 65px;
        height: calc(100vh - 65px);
    }

    .desktop-nav > ul > li > a {
        padding: 16px 20px;
        font-size: 15px;
    }

    .mobile-cta-btn {
        margin: 15px 20px 25px 20px;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    header {
        height: 60px;
    }

    .header-container {
        padding: 0 10px;
    }

    .logo img {
        width: 80px;
    }

    .menu-toggle {
        font-size: 26px;
    }

    .desktop-nav {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .desktop-nav > ul > li > a {
        font-size: 14px;
        padding: 15px 18px;
    }

    .mobile-cta-btn {
        margin: 12px 18px 20px 18px;
        padding: 11px 18px;
        font-size: 13px;
    }
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .header-container {
        max-width: 1800px;
    }
}

/* =========================================
   3. HERO SECTION
   ========================================= */
/* =========================================
   1. GLOBAL FONT & RESET
   ========================================= */
 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

 :root {
    --primary-blue: #148ab8;
    --dark-blue: #222c38;
    --red-button: #148ab8;
    --white: #ffffff;
    --text-grey: #666666;
    --header-height: 80px;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

.main-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.main-heading {
    width: 100%;
    text-align: center;
    font-size: clamp(28px, 5vw, 50px);
    font-weight: 600;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 60px;
    text-transform: capitalize;
    padding: 0 20px;
}

/* ===========================================
   AUTO-PLAY HERO SLIDER (5 SECONDS PER SLIDE)
   =========================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    margin-top: var(--header-height);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
}

/* AUTO-PLAY: 5 seconds per slide = 15 seconds total cycle */
.slide-1 {
    animation: fadeSlide1 15s infinite;
}

.slide-2 {
    animation: fadeSlide2 15s infinite;
}

.slide-3 {
    animation: fadeSlide3 15s infinite;
}

/* Slide 1: Shows from 0-5s */
@keyframes fadeSlide1 {
    0% { opacity: 1; z-index: 2; }
    33.33% { opacity: 1; z-index: 2; }
    35% { opacity: 0; z-index: 1; }
    100% { opacity: 0; z-index: 1; }
}

/* Slide 2: Shows from 5-10s */
@keyframes fadeSlide2 {
    0% { opacity: 0; z-index: 1; }
    33.33% { opacity: 0; z-index: 1; }
    35% { opacity: 1; z-index: 2; }
    66.66% { opacity: 1; z-index: 2; }
    68% { opacity: 0; z-index: 1; }
    100% { opacity: 0; z-index: 1; }
}

/* Slide 3: Shows from 10-15s */
@keyframes fadeSlide3 {
    0% { opacity: 0; z-index: 1; }
    66.66% { opacity: 0; z-index: 1; }
    68% { opacity: 1; z-index: 2; }
    98% { opacity: 1; z-index: 2; }
    100% { opacity: 0; z-index: 1; }
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

.slide-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(34, 44, 56, 0.85), rgba(34, 44, 56, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 90%;
    max-width: 1400px;
    z-index: 2;
    color: var(--white);
}

.hero-content h1 {
    font-size: clamp(32px, 5.5vw, 70px);
    line-height: 1.15;
    margin-bottom: clamp(15px, 2vw, 25px);
    font-weight: 700;
    text-align: left;
    max-width: 900px;
    color: white;
}

.hero-content p {
    font-size: clamp(15px, 1.4vw, 18px);
    color: whitesmoke;
    margin-bottom: clamp(25px, 3vw, 40px);
    max-width: 600px;
    line-height: 1.6;
    text-align: left;
}

/* Hero Buttons */
.btn-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: clamp(10px, 1vw, 13px) clamp(24px, 2.5vw, 35px);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    transition: all var(--transition-speed) ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-blue);
    border-color: var(--white);
}

.btn-fill-red {
    background-color: var(--red-button);
    color: var(--white);
    border: 2px solid var(--red-button);
}

.btn-fill-red:hover {
    background-color: transparent;
    color: var(--red-button);
    transform: translateY(-2px);
}

.btn i {
    font-size: 13px;
}

/* Slider Dots with Auto Animation */
.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-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

/* Auto-animate dots */
.dot-1 {
    animation: dotActive1 15s infinite;
}

.dot-2 {
    animation: dotActive2 15s infinite;
}

.dot-3 {
    animation: dotActive3 15s infinite;
}

@keyframes dotActive1 {
    0%, 33.33% {
        background-color: white;
        transform: scale(1.3);
        border-color: rgba(255, 255, 255, 0.5);
    }
    35%, 100% {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1);
        border-color: transparent;
    }
}

@keyframes dotActive2 {
    0%, 33.33% {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1);
        border-color: transparent;
    }
    35%, 66.66% {
        background-color: white;
        transform: scale(1.3);
        border-color: rgba(255, 255, 255, 0.5);
    }
    68%, 100% {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1);
        border-color: transparent;
    }
}

@keyframes dotActive3 {
    0%, 66.66% {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1);
        border-color: transparent;
    }
    68%, 98% {
        background-color: white;
        transform: scale(1.3);
        border-color: rgba(255, 255, 255, 0.5);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.4);
        transform: scale(1);
        border-color: transparent;
    }
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .slide {
        padding-left: 10%;
    }
    
    .hero-content, .main-container {
        max-width: 1600px;
    }
    
    .main-heading {
        margin-bottom: 80px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .slide {
        padding-left: 5%;
    }
    
    .hero-content, .main-container {
        max-width: 1400px;
    }
}

/* Laptop (1024px - 1439px) - FIXED LEFT ALIGNMENT */
@media (max-width: 1439px) {
    .hero-slider {
        min-height: 550px;
    }
    
    .slide {
        justify-content: flex-start;
        padding-left: 5%;
    }
    
    .hero-content {
        width: 90%;
        max-width: 1400px;
        margin: 0;
    }
    
    .main-heading {
        margin-bottom: 50px;
    }
}

/* MacBook Air / Small Laptop (1366px) */
@media (max-width: 1366px) {
    .slide-background {
        background-attachment: scroll;
    }
    
    .slide {
        padding-left: 5%;
    }
    
    .hero-content {
        width: 90%;
        max-width: 1400px;
    }
    
    .hero-content p {
        max-width: 550px;
    }
}

/* Specific fix for 1280px laptops */
@media (max-width: 1280px) {
    .slide {
        padding-left: 5%;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slide {
        justify-content: center;
        padding-left: 0;
    }
    
    .hero-content {
        width: 90%;
        margin: 0 auto;
    }
    
    .main-heading {
        margin-bottom: 40px;
    }
    
    .hero-content p {
        max-width: 500px;
    }
}

/* Tablet Portrait / Large Mobile (481px - 767px) */
@media (max-width: 767px) {
    :root {
        --header-height: 60px;
    }
    
    .hero-slider {
        min-height: 100vh;
    }
    
    .slide {
        text-align: center;
        background-attachment: scroll;
        padding: 80px 20px 40px;
        justify-content: flex-start;
    }
    
    .slide-background {
        background-attachment: scroll;
    }
    
    .hero-content {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        text-align: center;
        margin-bottom: 18px;
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-content p {
        text-align: center;
        margin-bottom: 30px;
        max-width: 100%;
        font-size: 15px;
    }
    
    .btn-container {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        padding: 12px 24px;
        justify-content: center;
    }
    
    .main-heading {
        margin-bottom: 35px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .hero-slider {
        min-height: 100vh;
    }
    
    .slide {
        padding: 0 20px;
        justify-content: flex-start;
        padding-top: 80px;
    }
    
    .hero-content {
        width: 90%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 14px;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .btn-container {
        gap: 12px;
        width: 100%;
        flex-direction: column;
    }
    
    .btn {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        font-size: 14px;
    }
    
    .main-heading {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 10px;
    }
}

/* Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .btn-container {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        min-width: unset;
    }
}
/* =========================================
   3. ABOUT SECTION STYLES
   ========================================= */
/* =========================================
   3. ABOUT SECTION (Fully Responsive)
   ========================================= */
/* =========================================
   ABOUT SECTION STYLES
   ========================================= */

/* =========================================
   GLOBAL RESET & CONTAINER
   ========================================= */
:root {
    --primary-blue: #148ab8;
    --dark-blue: #222c38;
    --white: #ffffff;
    --text-grey: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Container: Perfectly aligned with Logo on Desktop */
.main-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

/* =========================================
   ABOUT SECTION - PROFESSIONAL FIX
   ========================================= */
.about-section {
    padding: clamp(50px, 8vw, 100px) 0;
    background-color: var(--white);
}

.two-column-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 60px);
    width: 100%;
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Default Desktop Alignment */
    text-align: left;
}

/* Main Heading (Blue Text) */
.about-section .main-heading {
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 700;
    color: #003366; /* Matching professional dark blue */
    line-height: 1.2;
    margin-bottom: 25px;
    /* FIX: Ensure no justification */
    text-align: left; 
    width: 100%;
}

/* Sub-Heading (Black Bold Text) */
.left-content h3 {
    font-size: clamp(20px, 2.8vw, 32px);
    color: var(--dark-blue);
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Body Text */
.sub-heading-text p {
    font-size: clamp(14px, 1.2vw, 17px);
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

/* FIX: Explore More Button (Professional Style) */
.btn-blue {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 138, 184, 0.3);
}

.btn-blue:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
    color: var(--white);
}

/* Image Styling */
.right-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 15px;
}

/* =========================================
   MOBILE RESPONSIVENESS FIXES
   ========================================= */

@media (max-width: 1023px) {
    .two-column-layout {
        flex-direction: column;
        gap: 40px;
    }

    .left-content {
        align-items: center;
        text-align: center; /* Center align for professional mobile look */
        width: 100%;
    }

    /* FIX: Un-justify and Center Headings */
    .about-section .main-heading {
        text-align: center;
        font-size: 24px;
        padding: 0 10px;
    }

    .left-content h3 {
        text-align: center;
        font-size: 20px;
    }

    .sub-heading-text p {
        text-align: center; /* No more justified edges */
        font-size: 15px;
        padding: 0 5px;
    }

    /* FIX: Button Layout on Mobile */
    .btn-blue {
        width: 100%; 
        max-width: 280px; /* Comfortable thumb width */
        margin: 0 auto;
    }

    .right-image {
        justify-content: center;
        width: 100%;
    }

    .right-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section .main-heading {
        font-size: 22px;
    }
    
    .left-content h3 {
        font-size: 18px;
    }
}v
/* =========================================
   5. FEATURES SECTION (Why Choose Us)
   ========================================= */
/* =========================================
   FEATURES SECTION (ALIGNED 1400px)
   ========================================= */
 /* =========================================
   FEATURES SECTION (Fixed Alignment)
   ========================================= */
/* =========================================
   5. FEATURES SECTION (Why Choose Us)
   ========================================= */
 /* =========================================
   FEATURES SECTION STYLES
   ========================================= */

/* ==========================================
   FEATURES SECTION - EXACT ALIGNMENT FIX
   ========================================== */

.features-section {
    padding: 80px 0 60px 0;
    background-color: #ffffff;
    width: 100%;
}

/* Container - Match the width of text below */
.features-section .main-container {
    width: 90%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
}

/* Heading */
.features-section .main-heading {
    width: 100%;
    text-align: left;
    margin: 0 0 50px 0;
    padding: 0;
    color: var(--dark-blue);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.3;
}

/* Grid - Must match container exactly */
.features-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin: 0 0 28px 0;
    padding: 0;
}

.features-row:last-child {
    margin-bottom: 0;
}

/* Cards */
.feature-card {
    position: relative;
    padding: 42px 32px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(20, 138, 184, 0.3);
}

.card-number {
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 6.5rem;
    font-weight: 800;
    color: var(--white);
    opacity: 0.1;
    line-height: 1;
}

.card-icon {
    width: 62px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
    .features-section {
        padding: 65px 0 50px 0;
    }
    
    .features-section .main-heading {
        text-align: center;
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .features-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .feature-card {
        min-height: 230px;
    }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
    .features-section {
        padding: 50px 0 40px 0;
    }
    
    .features-section .main-heading {
        font-size: 26px;
        margin-bottom: 32px;
    }
    
    .features-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    
    .feature-card {
        padding: 36px 26px;
        min-height: auto;
    }
    
    .card-icon {
        width: 52px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
    }
    
    .card-number {
        font-size: 5rem;
    }
}
/* =========================================
   SIMPLE ZOOM IN ANIMATION
   ========================================= */

/* 1. Define the Zoom In Keyframes */

/* =========================================
   SERVICES SECTION (ALIGNED WITH UPPER SECTION)
   ========================================= */

  .services-section {
    padding: clamp(50px, 8vw, 100px) 0;
    background-color: var(--light-bg);
    width: 100%;
}

/* Container - Matching Other Sections */
.services-section .container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Main Heading - Left Aligned & Matching About Section */
.section-heading {
    text-align: left;
    font-size: clamp(24px, 3vw, 38px);
    color: #000;
    margin-bottom: clamp(30px, 5vw, 60px);
    font-weight: 600;
    max-width: 100%;
    line-height: 1.3;
    padding: 0;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 2.5vw, 30px);
}

/* General Card Styles */
.service-card {
    background-color: var(--white);
    padding: clamp(30px, 3.5vw, 40px) clamp(20px, 2.5vw, 30px);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(20, 138, 184, 0.15);
}

.icon-box {
    height: clamp(50px, 5vw, 60px);
    margin-bottom: clamp(18px, 2.5vw, 25px);
}

.icon-box img {
    height: 100%;
    width: auto;
    display: block;
}

.service-card h3 {
    font-size: clamp(1.2rem, 1.6vw, 1.5rem);
    color: #333;
    margin-bottom: clamp(12px, 1.5vw, 15px);
    font-weight: 600;
}

.service-card p {
    font-size: clamp(0.9rem, 1vw, 0.95rem);
    color: var(--text-grey);
    line-height: 1.6;
    margin-bottom: clamp(20px, 2.5vw, 30px);
    flex-grow: 1;
}

.card-divider {
    width: 100%;
    height: 1px;
    background-color: #eeeeee;
    margin-bottom: clamp(15px, 2vw, 20px);
}

.read-more-btn {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    transition: color 0.3s ease;
}

.read-more-btn span {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    transition: transform 0.3s ease;
}

.service-card:hover .read-more-btn span {
    transform: translateX(5px);
}

/* HIGHLIGHT CARD (MIDDLE GRADIENT) */
.service-card.gradient-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 15px 40px rgba(20, 138, 184, 0.3);
}

.service-card.gradient-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.service-card.gradient-card h3,
.service-card.gradient-card p,
.service-card.gradient-card .read-more-btn {
    color: var(--white);
}

.service-card.gradient-card .card-divider {
    background-color: rgba(255, 255, 255, 0.2);
}

.service-card.gradient-card .icon-box img {
    filter: brightness(0) invert(1);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .services-section .container {
        max-width: 1600px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .services-section .container {
        max-width: 1400px;
    }
}

/* Laptop (1024px - 1439px) */
@media (max-width: 1439px) {
    .services-section .container {
        max-width: 1400px;
    }
    
    .services-grid {
        gap: 25px;
    }
}

/* MacBook Air / Small Laptop (1280px - 1366px) */
@media (max-width: 1366px) {
    .services-section {
        padding: 70px 0;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-section .container {
        width: 92%;
    }
    
    .section-heading {
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-card.gradient-card {
        transform: scale(1);
    }
    
    .service-card.gradient-card:hover {
        transform: translateY(-10px) scale(1);
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-section .container {
        width: 95%;
    }
    
    .section-heading {
        text-align: center;
        margin-bottom: 35px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-section .container {
        width: 95%;
    }
    
    .section-heading {
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .icon-box {
        height: 50px;
        margin-bottom: 18px;
    }
}

/* Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .service-card h3 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.88rem;
    }
}


/* =========================================
   REPUTATION SECTION (LEFT ALIGNED)
   ========================================= */

 /* =========================================
   REPUTATION SECTION (ALIGNED 1400px)
   ========================================= */

.reputation-section {
    --brand-dark: #222e37;
    --brand-blue: #1489b9;
    --white: #ffffff;
    
    padding: clamp(40px, 6vw, 100px) 0;
    background-color: var(--brand-dark);
    color: var(--white);
    width: 100%;
    overflow: hidden;
}

/* Container - Responsive widths for all devices */
.reputation-section .main-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box; /* ADDED */
}

/* Main Heading - FIXED OVERFLOW */
.rep-main-heading {
    text-align: left;
    margin-bottom: clamp(25px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.25; /* Increased for better readability */
    color: var(--white);
    
    /* CRITICAL FIX - Forces text to wrap properly */
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word; /* ADDED - breaks long words */
    hyphens: auto;
    
    /* Prevents overflow */
    max-width: 100%;
    width: 100%; /* ADDED */
    overflow: hidden; /* ADDED */
    
    /* Responsive font sizing - ADJUSTED FOR LAPTOPS */
    font-size: clamp(28px, 3.2vw, 48px);
}

/* Description text */
.rep-description {
    font-size: clamp(14px, 1.8vw, 18px);
    line-height: 1.6;
    margin-bottom: clamp(20px, 3vw, 30px);
    color: rgba(255, 255, 255, 0.9);
    max-width: 100%;
}

/* Hide line breaks on smaller screens */
.rep-main-heading br {
    display: block;
}

/* Grid Layout - Flexible for all screens */
.rep-grid-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(30px, 5vw, 60px);
}

.rep-left-container {
    flex: 1.2;
    min-width: 0; /* CRITICAL - Prevents flex item overflow */
    max-width: 100%;
}

.rep-right-container {
    flex: 1;
    position: relative;
    width: 100%;
    min-width: 0;
}

/* Feature List - Responsive grid */
.rep-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(12px, 2vw, 20px) clamp(15px, 3vw, 30px);
    list-style: none;
    padding: 0;
    margin: clamp(20px, 3vw, 35px) 0;
}

.rep-feature-list li {
    display: flex;
    align-items: center;
    font-size: clamp(13px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.4;
}

.check-icon {
    color: var(--brand-blue);
    margin-right: clamp(8px, 1.5vw, 12px);
    font-weight: bold;
    font-size: clamp(14px, 1.8vw, 18px);
    flex-shrink: 0;
}

/* Button styling */
.btn-rep-outline {
    display: inline-block;
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 30px);
    font-size: clamp(13px, 1.6vw, 16px);
    font-weight: 600;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-rep-outline:hover {
    background-color: var(--brand-blue);
    color: var(--white);
}

/* Image wrapper */
.rep-image-wrapper {
    position: relative;
    width: 100%;
}

.rep-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: clamp(8px, 1.5vw, 12px);
    display: block;
    object-fit: cover;
}

/* Testimonial Box */
.rep-testimonial {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background-color: var(--brand-blue);
    padding: clamp(15px, 2.5vw, 25px);
    border-radius: clamp(6px, 1vw, 10px);
    max-width: clamp(250px, 35vw, 350px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.rep-testimonial p {
    margin: 0 0 10px 0;
    font-size: clamp(13px, 1.5vw, 15px);
    line-height: 1.5;
}

.rep-testimonial-author {
    font-weight: 600;
    font-size: clamp(12px, 1.4vw, 14px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Large Screens (Mac Studio Display, 27" iMac) */
@media (min-width: 1920px) {
    .reputation-section .main-container {
        max-width: 1600px;
    }
    
    .rep-main-heading {
        font-size: 52px;
    }
}

/* Desktop & MacBook Air (1440px - 1920px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .reputation-section .main-container {
        width: 85%;
    }
    
    .rep-main-heading {
        font-size: 44px;
    }
}

/* Laptops & Small Desktops (1024px - 1439px) - YOUR SCREEN */
@media (min-width: 1025px) and (max-width: 1439px) {
    .reputation-section .main-container {
        width: 88%;
    }
    
    .rep-main-heading {
        font-size: 36px; /* REDUCED from 40px */
        line-height: 1.3;
    }
    
    .rep-grid-layout {
        gap: 40px;
    }
}

/* Tablets & iPad (768px - 1024px) */
@media (max-width: 1024px) {
    .rep-main-heading br {
        display: none;
    }
    
    .rep-grid-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .rep-left-container,
    .rep-right-container {
        flex: 1;
        width: 100%;
    }
    
    .rep-testimonial {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .rep-main-heading {
        font-size: 32px;
    }
}

/* Small Tablets (600px - 767px) */
@media (max-width: 767px) {
    .reputation-section .main-container {
        width: 92%;
        padding: 0 15px;
    }
    
    .rep-main-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .rep-feature-list {
        gap: 12px 15px;
    }
}

/* Mobile Landscape (481px - 599px) */
@media (max-width: 599px) {
    .rep-main-heading {
        font-size: 26px;
        text-align: center;
    }
    
    .rep-description {
        text-align: center;
    }
}

/* Mobile Portrait - iPhone & Android (max 480px) */
@media (max-width: 480px) {
    .reputation-section {
        padding: 40px 0;
    }
    
    .reputation-section .main-container {
        width: 95%;
        padding: 0 10px;
    }
    
    .rep-main-heading {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .rep-description {
        text-align: center;
        font-size: 15px;
        margin-bottom: 25px;
    }
    
    .rep-feature-list {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 25px 0;
    }
    
    .rep-feature-list li {
        font-size: 14px;
    }
    
    .btn-rep-outline {
        display: block;
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }
    
    .rep-testimonial {
        padding: 18px;
        margin-top: 15px;
    }
}

/* Extra Small Devices (max 375px - iPhone SE, etc.) */
@media (max-width: 375px) {
    .rep-main-heading {
        font-size: 22px;
    }
    
    .rep-description {
        font-size: 14px;
    }
    
    .rep-feature-list li {
        font-size: 13px;
    }
}

/* Ultra-wide screens (2560px+) */
@media (min-width: 2560px) {
    .reputation-section .main-container {
        max-width: 1800px;
    }
    
    .rep-main-heading {
        font-size: 56px;
    }
}

/* =========================================
   FOOTER STYLES (MATCHING IMAGE)
   ========================================= */

  .site-footer {
    background-color: #030303;
    color: #b0b0b0;
    padding: clamp(50px, 8vw, 80px) 0 0 0;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
}

/* Container */
.site-footer .main-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Top Section Layout --- */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: clamp(30px, 4vw, 40px);
    padding-bottom: clamp(40px, 6vw, 60px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget h3 {
    color: #ffffff;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    margin-bottom: clamp(18px, 2.5vw, 25px);
    font-weight: 600;
}

/* 1. Quick Contact Styling */
.contact-widget {
    flex: 1.2;
    max-width: 350px;
}

.contact-desc {
    margin-bottom: clamp(15px, 2vw, 20px);
    line-height: 1.6;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
}

.phone-link {
    display: block;
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #3b55e6;
    text-decoration: none;
    margin-bottom: clamp(15px, 2vw, 20px);
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #5a75ff;
}

.phone-icon {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    vertical-align: middle;
}

.address {
    line-height: 1.6;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
}

/* 2. Links Group (Company & Industries) */
.footer-links-group {
    color: white;
    display: flex;
    gap: clamp(40px, 6vw, 60px);
    flex: 1;
}

.footer-links {
    color: white;
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: clamp(10px, 1.5vw, 15px);
}

.footer-links a {
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
    position: relative;
    padding-left: 15px;
    font-size: clamp(0.88rem, 1vw, 0.95rem);
    opacity: 0.8;
    display: inline-block;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #ffffff;
    opacity: 0.5;
    font-size: 0.8rem;
    top: 1px;
}

.footer-links a:hover {
    opacity: 1;
    padding-left: 20px;
}

/* 3. Newsletter Widget (Dark Card) */
.newsletter-widget {
    flex: 1.2;
    background-color: #1a1a1a;
    padding: clamp(25px, 3vw, 30px);
    border-radius: 8px;
}

.newsletter-form {
    display: flex;
    position: relative;
    margin-top: clamp(15px, 2vw, 20px);
}

.newsletter-form input {
    width: 100%;
    background-color: #000000;
    border: 1px solid #333;
    padding: clamp(12px, 1.5vw, 15px) 50px clamp(12px, 1.5vw, 15px) clamp(15px, 2vw, 20px);
    border-radius: 50px;
    color: #fff;
    outline: none;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #ff2a2a;
}

.send-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(36px, 4vw, 40px);
    height: clamp(36px, 4vw, 40px);
    background-color: #ff2a2a;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.send-btn:hover {
    background-color: #d60000;
    transform: translateY(-50%) scale(1.1);
}

/* --- Bottom Section Layout --- */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(25px, 3vw, 30px) 0;
}

.footer-logo {
    height: clamp(80px, 10vw, 120px);
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-bottom-right {
    text-align: right;
}

.legal-links {
    list-style: none;
    display: flex;
    gap: clamp(15px, 2vw, 20px);
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.legal-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
    transition: opacity 0.3s ease;
}

.legal-links a:hover {
    opacity: 0.7;
}

.copyright {
    opacity: 0.6;
    font-size: clamp(0.75rem, 0.9vw, 0.8rem);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .site-footer .main-container {
        max-width: 1600px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .site-footer .main-container {
        max-width: 1400px;
    }
}

/* Laptop (1024px - 1439px) */
@media (max-width: 1439px) {
    .site-footer .main-container {
        max-width: 1400px;
    }
}

/* MacBook Air / Small Laptop (1280px - 1366px) */
@media (max-width: 1366px) {
    .footer-top {
        gap: 35px;
    }
    
    .footer-links-group {
        gap: 50px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .site-footer {
        padding: 60px 0 0 0;
    }
    
    .site-footer .main-container {
        width: 92%;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-widget,
    .newsletter-widget {
        max-width: 100%;
    }
    
    .footer-links-group {
        justify-content: flex-start;
        gap: 60px;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .site-footer {
        padding: 50px 0 0 0;
    }
    
    .site-footer .main-container {
        width: 95%;
    }
    
    .footer-top {
        gap: 35px;
        padding-bottom: 40px;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        text-align: center;
        padding: 25px 0;
    }
    
    .footer-bottom-right {
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .footer-logo {
        height: 90px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .site-footer {
        padding: 40px 0 0 0;
    }
    
    .site-footer .main-container {
        width: 95%;
    }
    
    .footer-top {
        gap: 30px;
        padding-bottom: 35px;
    }
    
    .footer-widget h3 {
        margin-bottom: 15px;
    }
    
    .phone-link {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }
    
    .newsletter-widget {
        padding: 20px;
    }
    
    .newsletter-form input {
        padding: 12px 45px 12px 15px;
        font-size: 0.85rem;
    }
    
    .send-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        gap: 20px;
        padding: 20px 0;
    }
    
    .footer-logo {
        height: 80px;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .footer-top {
        gap: 25px;
    }
    
    .phone-link {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .newsletter-form input {
        padding: 10px 40px 10px 12px;
    }
    
    .send-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* =========================================
   CONTACT PAGE STYLES (Static & Clean)
   ========================================= */
.bottle-contact-section {
    padding: clamp(100px, 12vw, 140px) 20px clamp(60px, 8vw, 100px);
    background-color: var(--dark-blue);
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-box {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    max-width: 1200px;
    width: 100%;
}

/* --- Left Side: Static Visual (Blue) --- */
.static-visual {
    flex: 1;
    background-color: var(--primary-blue);
    padding: clamp(40px, 5vw, 60px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: clamp(15px, 2vw, 20px);
    line-height: 1.2;
}

.text-content .sub-text {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    opacity: 0.9;
    margin-bottom: clamp(35px, 5vw, 50px);
    line-height: 1.6;
}

/* Info List Styling */
.info-list-vertical {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 30px);
}

.info-row {
    display: flex;
    align-items: center;
}

.icon-circle {
    width: clamp(45px, 4.5vw, 50px);
    height: clamp(45px, 4.5vw, 50px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: clamp(15px, 2vw, 20px);
    flex-shrink: 0;
    font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.info-data strong {
    display: block;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.info-data p, .info-data a {
    color: #fff;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

.info-data a:hover {
    text-decoration: underline;
}

/* --- Right Side: Form (White) --- */
.quote-form-container {
    flex: 1.3;
    padding: clamp(40px, 5vw, 60px);
    background-color: #fff;
}

.quote-form h3 {
    margin-bottom: clamp(20px, 3vw, 30px);
    color: var(--dark-blue);
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 700;
}

.form-group {
    margin-bottom: clamp(18px, 2.5vw, 25px);
}

.form-group label {
    display: block;
    margin-bottom: clamp(8px, 1vw, 10px);
    font-weight: 600;
    color: #444;
    font-size: clamp(0.88rem, 1vw, 0.95rem);
}

.quote-form input, 
.quote-form select, 
.quote-form textarea {
    width: 100%;
    padding: clamp(12px, 1.5vw, 15px);
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: clamp(0.9rem, 1vw, 1rem);
    outline: none;
    transition: 0.3s;
}

.quote-form input:focus,
.quote-form textarea:focus,
.quote-form select:focus {
    border-color: var(--primary-blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(20, 138, 184, 0.1);
}

/* Placeholder Styling */
.quote-form input::placeholder,
.quote-form textarea::placeholder {
    color: #999;
    font-size: clamp(0.85rem, 1vw, 0.9rem);
}

/* Button */
.btn-submit-industry {
    width: 100%;
    padding: clamp(14px, 1.8vw, 18px);
    background-color: var(--dark-blue);
    color: #fff;
    border: none;
    font-weight: 800;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 6px;
    margin-top: 10px;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    letter-spacing: 1px;
}

.btn-submit-industry:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .contact-box {
        max-width: 1400px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .contact-box {
        max-width: 1200px;
    }
}

/* Laptop (1024px - 1439px) */
@media (max-width: 1439px) {
    .contact-box {
        max-width: 1100px;
    }
}

/* MacBook Air / Small Laptop (1280px - 1366px) */
@media (max-width: 1366px) {
    .bottle-contact-section {
        padding: 120px 20px 80px;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .bottle-contact-section {
        padding: 100px 20px 60px;
        min-height: auto;
    }
    
    .contact-box {
        flex-direction: column;
        max-width: 700px;
    }
    
    .static-visual {
        padding: 50px 40px;
    }
    
    .quote-form-container {
        padding: 50px 40px;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .bottle-contact-section {
        padding: 80px 15px 50px;
    }
    
    .contact-box {
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }
    
    .static-visual {
        padding: 40px 30px;
    }
    
    .quote-form-container {
        padding: 40px 30px;
    }
    
    .text-content h2 {
        margin-bottom: 15px;
    }
    
    .text-content .sub-text {
        margin-bottom: 30px;
    }
    
    .info-list-vertical {
        gap: 25px;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .bottle-contact-section {
        padding: 70px 12px 40px;
    }
    
    .contact-box {
        border-radius: 6px;
    }
    
    .static-visual {
        padding: 35px 25px;
    }
    
    .quote-form-container {
        padding: 35px 25px;
    }
    
    .text-content h2 {
        font-size: 1.6rem;
    }
    
    .text-content .sub-text {
        font-size: 0.92rem;
        margin-bottom: 25px;
    }
    
    .info-list-vertical {
        gap: 20px;
    }
    
    .icon-circle {
        width: 42px;
        height: 42px;
        margin-right: 12px;
        font-size: 0.95rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .btn-submit-industry {
        padding: 14px;
        font-size: 0.95rem;
    }
}

/* Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .static-visual {
        padding: 30px 20px;
    }
    
    .quote-form-container {
        padding: 30px 20px;
    }
    
    .text-content h2 {
        font-size: 1.5rem;
    }
    
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .info-data p, .info-data a {
        font-size: 0.9rem;
    }
}
/* =========================================
   ADD THIS TO THE BOTTOM OF STYLE.CSS
   ========================================= */

/* --- Page Banner --- */
/* --- PAGE BANNER --- */
.page-banner {
    background-color: #002855;
    padding: clamp(100px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
    text-align: center;
    color: white;
}

.page-banner .main-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.banner-content {
    padding-top: 20px;
}

.banner-content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: clamp(15px, 2vw, 20px);
    line-height: 1.2;
    margin-top: 0;
    color: #ffffff;
}

.banner-content p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    color: #ffffff !important;
    opacity: 1;
}

/* --- GRID LAYOUT SECTION --- */
.section-spacer {
    padding: clamp(50px, 8vw, 80px) 0;
}

.bg-light {
    background-color: whitesmoke;
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 7vw, 70px);
    align-items: center;
}

/* --- TEXT ALIGNMENT (COMPLETELY FIXED) --- */
.content-column {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0; /* Remove any padding */
    margin: 0; /* Remove any margin */
}

.main-heading {
    color: #002855;
    font-size: clamp(1.8rem, 2.8vw, 2.5rem);
    line-height: 1.3;
    margin: 0 0 clamp(18px, 2.5vw, 25px) 0; /* Reset all margins */
    padding: 0; /* Remove padding */
    font-weight: 800;
    text-align: left;
}

.sub-heading {
    color: #00a8e8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin: 0 0 clamp(12px, 1.5vw, 15px) 0; /* Reset all margins */
    padding: 0; /* Remove padding */
    display: block;
    text-align: left;
    font-size: clamp(0.85rem, 1vw, 0.95rem);
}

.content-column p {
    color: #555;
    line-height: 1.8;
    margin: 0 0 clamp(15px, 2vw, 20px) 0; /* Reset all margins */
    padding: 0; /* Remove padding */
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    text-align: left;
}

/* --- Signature Bar --- */
.highlight-bar {
    border-left: 5px solid #00a8e8;
    padding-left: clamp(15px, 2vw, 20px);
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
    margin: clamp(20px, 3vw, 30px) 0 0 0;
}

.signature {
    font-weight: bold;
    color: #002855;
    margin: 0;
    padding: 0;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
}

/* --- Image Styling --- */
.image-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.image-column img {
    width: 100%;
    height: auto;
    border-radius: clamp(8px, 1.2vw, 12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
    margin: 0;
    padding: 0;
}

/* --- Professional List (COMPLETELY FIXED) --- */
.pro-list {
    list-style: none;
    padding: 0;
    margin: clamp(20px, 2.5vw, 25px) 0 0 0;
    text-align: left;
}

.pro-list li {
    display: flex;
    align-items: flex-start;
    margin: 0 0 clamp(12px, 1.5vw, 15px) 0;
    padding: 0;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: #333;
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
}

.pro-list li i {
    color: #00a8e8;
    font-size: clamp(1.1rem, 1.3vw, 1.2rem);
    margin-right: clamp(12px, 1.5vw, 15px);
    margin-top: 4px;
    margin-left: 0;
    margin-bottom: 0;
    padding: 0;
    flex-shrink: 0;
}

.pro-list li:last-child {
    margin-bottom: 0;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Screens (1920px+) */
@media (min-width: 1920px) {
    .grid-container,
    .page-banner .main-container {
        max-width: 1600px;
    }
    
    .grid-container {
        gap: 80px;
    }
    
    .main-heading {
        font-size: 2.8rem;
        margin-bottom: 28px;
    }
    
    .content-column p {
        font-size: 1.15rem;
        margin-bottom: 22px;
    }
    
    .pro-list li {
        font-size: 1.15rem;
        margin-bottom: 18px;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .grid-container,
    .page-banner .main-container {
        max-width: 1400px;
    }
    
    .grid-container {
        gap: 70px;
    }
    
    .main-heading {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .content-column p {
        font-size: 1.08rem;
        margin-bottom: 20px;
    }
    
    .pro-list li {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
}

/* Laptop (1024px - 1439px) - MAIN FIX */
@media (min-width: 1024px) and (max-width: 1439px) {
    .grid-container {
        max-width: 1200px;
        gap: 50px;
        padding: 0 30px;
    }
    
    .content-column {
        padding: 0;
        margin: 0;
    }
    
    .main-heading {
        font-size: 2rem;
        line-height: 1.3;
        margin: 0 0 20px 0;
        padding: 0;
    }
    
    .sub-heading {
        font-size: 0.9rem;
        margin: 0 0 12px 0;
        padding: 0;
    }
    
    .content-column p {
        font-size: 1.02rem;
        line-height: 1.8;
        margin: 0 0 18px 0;
        padding: 0;
    }
    
    .pro-list {
        margin: 22px 0 0 0;
        padding: 0;
    }
    
    .pro-list li {
        font-size: 1.02rem;
        margin: 0 0 14px 0;
        padding: 0;
    }
    
    .pro-list li i {
        margin-right: 14px;
        margin-top: 4px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .highlight-bar {
        margin: 25px 0 0 0;
        padding-left: 18px;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
    }
}

/* MacBook Air / Small Laptop (1280px - 1366px) */
@media (min-width: 1024px) and (max-width: 1366px) {
    .page-banner {
        padding: 110px 0 80px;
    }
    
    .section-spacer {
        padding: 65px 0;
    }
    
    .grid-container {
        gap: 45px;
        padding: 0 30px;
    }
    
    .main-heading {
        font-size: 1.9rem;
        margin: 0 0 18px 0;
    }
    
    .content-column p {
        font-size: 1rem;
        margin: 0 0 16px 0;
    }
    
    .pro-list li {
        font-size: 1rem;
        margin: 0 0 13px 0;
    }
}

/* Tablet Landscape (768px - 1023px) */
@media (max-width: 1023px) {
    .page-banner {
        padding: 100px 0 70px;
    }
    
    .page-banner .main-container {
        width: 92%;
    }
    
    .section-spacer {
        padding: 60px 0;
    }
    
    .grid-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 30px;
    }
    
    .content-column {
        padding: 0;
        margin: 0;
    }
    
    .content-column,
    .main-heading,
    .sub-heading,
    .content-column p {
        text-align: left !important;
    }
    
    .main-heading {
        font-size: 2rem;
        margin: 0 0 20px 0;
        padding: 0;
    }
    
    .sub-heading {
        margin: 0 0 12px 0;
        padding: 0;
    }
    
    .content-column p {
        margin: 0 0 18px 0;
        padding: 0;
    }
    
    .pro-list {
        text-align: left !important;
        margin: 22px 0 0 0;
        padding: 0;
    }
    
    .pro-list li {
        justify-content: flex-start;
        text-align: left !important;
        margin: 0 0 14px 0;
        padding: 0;
    }
    
    .highlight-bar {
        border-left: 5px solid #00a8e8;
        padding-left: 20px;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        margin: 25px 0 0 0;
    }
    
    .reverse-mobile .image-column {
        order: -1;
    }
}

/* Tablet Portrait (481px - 767px) */
@media (max-width: 767px) {
    .page-banner {
        padding: 90px 0 60px;
    }
    
    .page-banner .main-container {
        width: 95%;
    }
    
    .banner-content {
        padding-top: 15px;
    }
    
    .section-spacer {
        padding: 50px 0;
    }
    
    .grid-container {
        gap: 35px;
        padding: 0 20px;
    }
    
    .banner-content h1 {
        margin-bottom: 15px;
        color: #ffffff;
    }
    
    .banner-content p {
        color: #ffffff !important;
    }
    
    .main-heading {
        font-size: 1.8rem;
        margin: 0 0 18px 0;
        padding: 0;
    }
    
    .sub-heading {
        margin: 0 0 12px 0;
        padding: 0;
    }
    
    .content-column p {
        font-size: 0.98rem;
        margin: 0 0 16px 0;
        padding: 0;
    }
    
    .pro-list {
        margin: 20px 0 0 0;
        padding: 0;
    }
    
    .pro-list li {
        font-size: 1rem;
        margin: 0 0 13px 0;
        padding: 0;
    }
    
    .image-column img {
        border-radius: 10px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .page-banner {
        padding: 90px 0 50px;
        min-height: auto;
    }
    
    .page-banner .main-container {
        width: 95%;
    }
    
    .banner-content {
        padding-top: 10px;
    }
    
    .banner-content h1 {
        font-size: 1.9rem;
        margin-bottom: 12px;
        margin-top: 0;
        padding: 0 10px;
        color: #ffffff;
    }
    
    .banner-content p {
        font-size: 0.95rem;
        padding: 0 10px;
        color: #ffffff !important;
    }
    
    .section-spacer {
        padding: 40px 0;
    }
    
    .grid-container {
        gap: 30px;
        padding: 0 15px;
    }
    
    .content-column {
        padding: 0;
        margin: 0;
    }
    
    .main-heading {
        font-size: 1.6rem;
        margin: 0 0 15px 0;
        padding: 0;
        line-height: 1.3;
    }
    
    .sub-heading {
        font-size: 0.8rem;
        margin: 0 0 12px 0;
        padding: 0;
    }
    
    .content-column p {
        font-size: 0.93rem;
        margin: 0 0 15px 0;
        padding: 0;
        line-height: 1.7;
    }
    
    .pro-list {
        margin: 20px 0 0 0;
        padding: 0;
    }
    
    .pro-list li {
        font-size: 0.95rem;
        margin: 0 0 15px 0;
        padding: 0;
        text-align: left !important;
        line-height: 1.6;
    }
    
    .pro-list li i {
        font-size: 1.1rem;
        margin-right: 12px;
        margin-top: 3px;
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .highlight-bar {
        margin: 20px 0 0 0;
        padding-left: 15px;
        padding-top: 0;
        padding-bottom: 0;
        padding-right: 0;
        border-left: 4px solid #00a8e8;
    }
    
    .signature {
        font-size: 0.92rem;
        margin: 0;
        padding: 0;
    }
    
    .image-column img {
        border-radius: 8px;
    }
}

/* Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .banner-content h1 {
        font-size: 1.7rem;
        margin-top: 0;
        color: #ffffff;
    }
    
    .banner-content p {
        font-size: 0.9rem;
        color: #ffffff !important;
    }
    
    .main-heading {
        font-size: 1.5rem;
        line-height: 1.3;
        margin: 0 0 15px 0;
    }
    
    .grid-container {
        gap: 25px;
    }
    
    .content-column p {
        font-size: 0.9rem;
        margin: 0 0 14px 0;
    }
    
    .pro-list li {
        font-size: 0.9rem;
        margin: 0 0 13px 0;
    }
}

/* Landscape Mode */
@media (max-width: 1023px) and (orientation: landscape) {
    .section-spacer {
        padding: 50px 0;
    }
    
    .grid-container {
        gap: 35px;
    }
}

/* =========================================
   PRODUCTS PAGE STYLES (UPDATED)
   ========================================= */

/* --- Intro Text Area --- */
/* =========================================
   PRODUCTS INTRO SECTION
   ========================================= */

.products-intro {
    margin-top: clamp(70px, 10vw, 90px);
    text-align: center;
    padding: clamp(40px, 6vw, 60px) clamp(15px, 3vw, 20px) clamp(30px, 5vw, 40px);
    background-color: #f8f9fa;
    width: 100%;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
}

/* Sub-heading */
.intro-sub-heading {
    color: #1097cc;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 1.5px);
    margin-bottom: clamp(10px, 2vw, 15px);
    font-family: 'Poppins', sans-serif;
}

/* Main Heading */
.intro-main-heading {
    color: #002855 !important;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.3;
    margin: 0;
    padding: 0 10px;
}

/* =========================================
   BANNER SECTION
   ========================================= */

.products-category-section {
    padding: clamp(20px, 4vw, 40px) 0 clamp(40px, 8vw, 80px);
    background-color: #f8f9fa;
}

/* Banner Card Container */
.category-banner {
    display: block;
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto clamp(20px, 4vw, 30px);
    height: clamp(250px, 40vw, 400px);
    border-radius: clamp(6px, 1vw, 10px);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Background Image */
.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

/* Blue Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 40, 85, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(15px, 3vw, 30px);
    transition: background 0.3s ease;
}

/* Banner Title */
.banner-title {
    color: #ffffff;
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: clamp(20px, 4vw, 30px);
    line-height: 1.2;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
    padding: 0 15px;
}

/* Button Styles */
.banner-btn {
    background-color: #1489b9;
    color: white;
    padding: clamp(12px, 2vw, 14px) clamp(30px, 5vw, 45px);
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    letter-spacing: clamp(0.5px, 0.1vw, 1px);
    transition: all 0.3s ease;
    border: 2px solid #1489b9;
    display: inline-block;
}

/* =========================================
   HOVER ANIMATIONS (Desktop only)
   ========================================= */

@media (hover: hover) {
    .category-banner:hover .banner-bg {
        transform: scale(1.1);
    }

    .category-banner:hover .banner-overlay {
        background: rgba(0, 40, 85, 0.45);
    }

    .category-banner:hover .banner-btn {
        background-color: transparent;
        border-color: #ffffff;
        transform: translateY(-3px);
    }
}

/* =========================================
   DROPDOWN MENU STYLES
   ========================================= */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top: 3px solid #002855;
    border-radius: 0 0 4px 4px;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.9rem;
    transition: background 0.2s, padding 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f4f7fa;
    color: #00a8e8;
    padding-left: 20px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
   ========================================= */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .intro-container {
        max-width: 1000px;
    }
    
    .category-banner {
        height: 450px;
        max-width: 1600px;
    }
    
    .banner-title {
        font-size: 4rem;
        margin-bottom: 35px;
    }
    
    .banner-btn {
        padding: 16px 50px;
        font-size: 1.1rem;
    }
}

/* Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .products-intro {
        padding: 60px 30px 40px;
    }
    
    .category-banner {
        height: 400px;
        max-width: 1400px;
    }
    
    .banner-title {
        font-size: 3.5rem;
    }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .products-intro {
        margin-top: 80px;
        padding: 50px 25px 35px;
    }
    
    .intro-main-heading {
        font-size: 2.2rem;
    }
    
    .category-banner {
        height: 350px;
        margin-bottom: 28px;
    }
    
    .banner-title {
        font-size: 3rem;
        margin-bottom: 28px;
    }
    
    .banner-btn {
        padding: 13px 40px;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .products-intro {
        margin-top: 75px;
        padding: 45px 20px 30px;
    }
    
    .intro-sub-heading {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .intro-main-heading {
        font-size: 1.9rem;
        padding: 0 15px;
    }
    
    .products-category-section {
        padding: 25px 15px 60px;
    }
    
    .category-banner {
        height: 300px;
        margin-bottom: 25px;
    }
    
    .banner-title {
        font-size: 2.5rem;
        margin-bottom: 25px;
    }
    
    .banner-btn {
        padding: 12px 35px;
        font-size: 0.9rem;
    }
}

/* Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .products-intro {
        margin-top: 70px;
        padding: 35px 15px 25px;
    }
    
    .intro-sub-heading {
        font-size: 0.75rem;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }
    
    .intro-main-heading {
        font-size: 1.6rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .products-category-section {
        padding: 20px 12px 45px;
    }
    
    .category-banner {
        height: 280px;
        margin-bottom: 20px;
        border-radius: 8px;
    }
    
    .banner-overlay {
        padding: 20px 15px;
    }
    
    .banner-title {
        font-size: 2rem;
        margin-bottom: 22px;
        line-height: 1.2;
    }
    
    .banner-btn {
        padding: 12px 32px;
        font-size: 0.88rem;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .products-intro {
        margin-top: 65px;
        padding: 30px 12px 20px;
    }
    
    .intro-container {
        padding: 0 5px;
    }
    
    .intro-sub-heading {
        font-size: 0.7rem;
        letter-spacing: 0.8px;
        margin-bottom: 8px;
    }
    
    .intro-main-heading {
        font-size: 1.4rem;
        line-height: 1.35;
        padding: 0 8px;
    }
    
    .products-category-section {
        padding: 15px 10px 35px;
    }
    
    .category-banner {
        height: 250px;
        margin-bottom: 18px;
        border-radius: 6px;
    }
    
    .banner-overlay {
        padding: 15px 10px;
        background: rgba(0, 40, 85, 0.7);
    }
    
    .banner-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
        line-height: 1.2;
        padding: 0 10px;
    }
    
    .banner-btn {
        padding: 11px 28px;
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .dropdown:hover .dropdown-content {
        display: none;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .products-intro {
        margin-top: 60px;
        padding: 25px 10px 18px;
    }
    
    .intro-main-heading {
        font-size: 1.3rem;
        line-height: 1.4;
    }
    
    .category-banner {
        height: 230px;
        margin-bottom: 16px;
    }
    
    .banner-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }
    
    .banner-btn {
        padding: 10px 25px;
        font-size: 0.8rem;
    }
}

/* Landscape Mode */
@media (max-width: 767px) and (orientation: landscape) {
    .products-intro {
        padding: 25px 15px 20px;
        margin-top: 60px;
    }
    
    .intro-main-heading {
        font-size: 1.5rem;
    }
    
    .category-banner {
        height: 200px;
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 18px;
    }
    
    .banner-btn {
        padding: 10px 30px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .category-banner:active .banner-overlay {
        background: rgba(0, 40, 85, 0.5);
    }
    
    .banner-btn:active {
        transform: scale(0.98);
    }
}
/* =========================================
   BLOW SECTION STYLES
   ========================================= */

/* --- Intro Text --- */
/* =========================================
   PRODUCT CARDS (Big Image & Perfect Fit)
   ========================================= */

  /* --- SECTION WRAPPER --- */
  .product-showcase-section {
    padding: clamp(40px, 8vw, 100px) 0;
    background-color: #f8f9fa;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 40px);
}

/* --- 1. GRID LAYOUT --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: clamp(20px, 3vw, 30px);
    padding: 0 clamp(5px, 2vw, 10px);
    justify-items: center;
}

/* --- 2. CARD CONTAINER --- */
.detail-card {
    background: #ffffff;
    border-radius: clamp(8px, 1.5vw, 12px);
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 450px;
}

.detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 40, 85, 0.12);
    border-color: #00a8e8;
}

/* --- 3. IMAGE BOX - SIGNIFICANTLY LARGER WITH BACKGROUND REMOVAL --- */
.card-image-box {
    background: transparent;
    /* MUCH LARGER BASE HEIGHT */
    height: clamp(350px, 40vw, 500px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* REDUCED PADDING TO GIVE MORE SPACE FOR IMAGE */
    padding: clamp(15px, 2vw, 25px);
    border-bottom: 1px solid #f9f9f9;
    overflow: hidden;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    /* CONTAIN ENSURES FULL DRUM IS VISIBLE */
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    /* MAXIMUM IMAGE QUALITY */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    /* REMOVE WHITE BACKGROUND IF IMAGE HAS TRANSPARENCY */
    mix-blend-mode: multiply;
}

/* Alternative if images have transparent backgrounds */
.card-image-box img.transparent-bg {
    mix-blend-mode: normal;
    /* ADD SUBTLE SHADOW FOR DEPTH IF BACKGROUND IS REMOVED */
    filter: drop-shadow(0 10px 25px rgba(0, 40, 85, 0.15));
}

/* Zoom effect on hover (disabled on touch devices) */
@media (hover: hover) {
    .detail-card:hover .card-image-box img {
        transform: scale(1.15);
    }
}

/* --- 4. CONTENT STYLES --- */
.card-content {
    padding: clamp(18px, 3vw, 24px);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.detail-card h3 {
    color: #002855;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: clamp(6px, 1vw, 8px);
    line-height: 1.3;
}

.category-tag {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #00a8e8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: clamp(0.5px, 0.15vw, 1px);
    margin-bottom: clamp(12px, 2vw, 16px);
    display: block;
}

.detail-card p {
    color: #666;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.6;
    margin-bottom: clamp(18px, 3vw, 22px);
    flex-grow: 1;
}

/* --- 5. BUTTON STYLES --- */
.explore-link {
    color: #002855;
    font-weight: 700;
    text-decoration: none;
    font-size: clamp(0.85rem, 1.6vw, 0.95rem);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: clamp(6px, 1.5vw, 8px);
    transition: color 0.3s ease;
    margin-top: auto;
    letter-spacing: 0.5px;
}

.explore-link:hover {
    color: #00a8e8;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card-image-box {
        height: 300px;
        padding: 15px;
    }
    
    .detail-card {
        max-width: 100%;
    }
}

/* Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-image-box {
        height: 350px;
        padding: 18px;
    }
    
    .detail-card {
        max-width: 100%;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        justify-items: stretch;
    }
    
    .card-image-box {
        height: 380px;
        padding: 20px;
    }
    
    .main-container {
        max-width: 960px;
    }
    
    .detail-card {
        max-width: 100%;
    }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        justify-items: stretch;
    }
    
    .card-image-box {
        height: 420px;
        padding: 22px;
    }
    
    .main-container {
        max-width: 1200px;
    }
    
    .detail-card {
        max-width: 100%;
    }
}

/* Large Desktop / MacBook Air (1440px - 1919px) - YOUR SCREEN */
@media (min-width: 1440px) and (max-width: 1919px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 35px;
        justify-items: stretch;
    }
    
    .card-image-box {
        /* SIGNIFICANTLY LARGER FOR MAC AIR SCREENS */
        height: 500px;
        padding: 20px;
    }
    
    .main-container {
        max-width: 1400px;
    }
    
    .detail-card {
        max-width: 100%;
    }
    
    .detail-card h3 {
        font-size: 1.5rem;
    }
    
    .detail-card p {
        font-size: 1.05rem;
    }
}

/* MacBook Pro 16" and similar large laptops */
@media (min-width: 1680px) and (max-width: 1919px) {
    .card-image-box {
        height: 550px;
        padding: 25px;
    }
}

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
        gap: 40px;
        justify-items: stretch;
    }
    
    .card-image-box {
        /* LARGEST FOR EXTRA LARGE SCREENS */
        height: 600px;
        padding: 30px;
    }
    
    .main-container {
        max-width: 1600px;
    }
    
    .detail-card {
        max-width: 100%;
    }
    
    .detail-card h3 {
        font-size: 1.6rem;
    }
    
    .detail-card p {
        font-size: 1.1rem;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .detail-card:active {
        transform: translateY(-4px);
    }
    
    .explore-link {
        padding: 8px 0;
        min-height: 44px;
    }
}

/* Landscape mobile optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .product-showcase-section {
        padding: 30px 0 60px;
    }
    
    .card-image-box {
        height: 280px;
        padding: 15px;
    }
}

/* Special handling for exactly 2 cards on larger screens */
@media (min-width: 1024px) {
    .product-grid:has(.detail-card:nth-child(2):last-child) {
        grid-template-columns: repeat(2, 1fr);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    /* When there are only 2 cards, make images MUCH bigger */
    .product-grid:has(.detail-card:nth-child(2):last-child) .card-image-box {
        height: 520px;
    }
}

/* Special optimization for MacBook Air specifically (1440x900) */
@media (min-width: 1440px) and (max-width: 1680px) and (max-height: 950px) {
    .card-image-box {
        height: 480px;
        padding: 18px;
    }
    
    /* For 2-card layout on MacBook Air */
    .product-grid:has(.detail-card:nth-child(2):last-child) .card-image-box {
        height: 500px;
    }
}
/* =========================================
   PREMIUM ZIG-ZAG LIST LAYOUT (UNIFORM BACKGROUND)
   ========================================= */

   /* =========================================
   CLEAN PRODUCT GRID STYLES (Use this for the Redesign)
   ========================================= */



body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* --- HERO BANNER STYLES --- */
.hero-banner {
    position: relative;
    /* Responsive height: smaller on mobile, larger on desktop */
    height: clamp(60vh, 85vh, 90vh);
    min-height: clamp(400px, 60vw, 500px);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Better for mobile performance */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* The dark overlay to make text readable against the image */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* A modern gradient overlay (darker at top, slightly lighter bottom) */
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
    z-index: 1;
}

/* Container for the text and button */
.hero-content {
    position: relative;
    z-index: 2; /* Ensures content sits above the overlay */
    padding: clamp(20px, 4vw, 40px);
    max-width: clamp(90%, 900px, 1100px);
    width: 100%;
    color: #ffffff;
    /* Subtle animation for entrance */
    animation: fadeInUp 1s ease-out;
}

/* Main Heading Style */
.hero-heading {
    /* Fluid font size: scales from 1.8rem (mobile) to 4.5rem (large screens) */
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.3vw, 3px);
    margin-bottom: clamp(24px, 5vw, 40px);
    line-height: 1.2;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5); /* Adds depth */
    word-wrap: break-word;
}

/* Button Style */
.hero-btn {
    display: inline-block;
    /* Responsive padding */
    padding: clamp(14px, 2.5vw, 18px) clamp(30px, 6vw, 50px);
    background-color: #00a8e8; 
    color: white;
    text-decoration: none;
    /* Fluid font size */
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 700;
    border-radius: 50px; /* Rounded "pill" shape */
    text-transform: uppercase;
    letter-spacing: clamp(0.5px, 0.15vw, 1px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 168, 232, 0.3); /* Soft glow shadow */
    cursor: pointer;
    /* Minimum touch target size for mobile */
    min-height: 44px;
    min-width: 120px;
}

/* Button Hover Effects (only on devices that support hover) */
@media (hover: hover) {
    .hero-btn:hover {
        background-color: #0086ba; /* Slightly darker blue on hover */
        transform: translateY(-5px); /* Lifts up slightly */
        box-shadow: 0 15px 30px rgba(0, 168, 232, 0.5); /* Larger shadow */
    }
}

/* Button Active State for touch devices */
.hero-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 168, 232, 0.4);
}

/* Simple animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    .hero-banner {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-heading {
        font-size: 1.8rem;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    
    .hero-btn {
        padding: 14px 30px;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-content {
        padding: 20px 15px;
    }
}

/* Mobile (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .hero-banner {
        height: 65vh;
        min-height: 450px;
    }
    
    .hero-heading {
        font-size: 2.2rem;
        letter-spacing: 1.5px;
        margin-bottom: 28px;
    }
    
    .hero-btn {
        padding: 15px 38px;
        font-size: 0.95rem;
    }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .hero-banner {
        height: 75vh;
        min-height: 480px;
    }
    
    .hero-heading {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 32px;
    }
    
    .hero-btn {
        padding: 16px 42px;
        font-size: 1rem;
    }
    
    .hero-content {
        max-width: 800px;
    }
}

/* Laptop (1024px - 1439px) */
@media (min-width: 1024px) and (max-width: 1439px) {
    .hero-banner {
        height: 80vh;
        min-height: 500px;
    }
    
    .hero-heading {
        font-size: 3.5rem;
        letter-spacing: 2.5px;
        margin-bottom: 36px;
    }
    
    .hero-btn {
        padding: 17px 46px;
        font-size: 1.05rem;
    }
    
    .hero-content {
        max-width: 900px;
    }
}

/* Large Desktop / MacBook Air (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-banner {
        height: 85vh;
        min-height: 550px;
    }
    
    .hero-heading {
        font-size: 4rem;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }
    
    .hero-btn {
        padding: 18px 50px;
        font-size: 1.1rem;
    }
    
    .hero-content {
        max-width: 1000px;
    }
}

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .hero-banner {
        height: 90vh;
        min-height: 600px;
    }
    
    .hero-heading {
        font-size: 4.5rem;
        letter-spacing: 3.5px;
        margin-bottom: 45px;
    }
    
    .hero-btn {
        padding: 20px 55px;
        font-size: 1.15rem;
    }
    
    .hero-content {
        max-width: 1100px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 767px) and (orientation: landscape) {
    .hero-banner {
        height: 100vh;
        min-height: 350px;
    }
    
    .hero-heading {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .hero-btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }
    
    .hero-content {
        padding: 15px;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
    .hero-banner {
        height: 90vh;
    }
    
    .hero-heading {
        font-size: 2.8rem;
    }
}

/* High DPI / Retina Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-banner {
        background-size: cover;
    }
    
    .hero-heading {
        text-shadow: 3px 5px 12px rgba(0,0,0,0.6);
    }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-content {
        animation: none;
    }
    
    .hero-btn {
        transition: none;
    }
    
    .hero-btn:hover {
        transform: none;
    }
}

/* Dark Mode Support (if needed) */
@media (prefers-color-scheme: dark) {
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.7));
    }
}
/* =========================================
   CSS-ONLY SCROLL ANIMATIONS
   ========================================= */

/* --- 1. FADE UP Animation --- */
/* --- 1. Define the Keyframes --- */
/* ========================================
   SCROLL-TRIGGERED ANIMATIONS
   ======================================== */

/* Keyframes */
/* =========================================
   PURE CSS SCROLL ANIMATIONS (NO JS NEEDED)
   ========================================= */

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

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

/* REMOVE the initial hidden state - this was causing the problem */
/* Elements are now VISIBLE by default */

/* Apply animations directly - they play on page load */
.about-section .main-container {
    animation: zoomIn 1s ease-out forwards;
}

.features-section .section-title {
    animation: fadeUp 0.8s ease-out forwards;
}

.features-section .feature-card {
    animation: fadeUp 0.8s ease-out forwards;
}

.features-section .feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.features-section .feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.features-section .feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Second row of feature cards */
.features-section .features-row:nth-child(3) .feature-card:nth-child(1) {
    animation-delay: 0.4s;
}

.features-section .features-row:nth-child(3) .feature-card:nth-child(2) {
    animation-delay: 0.5s;
}

.features-section .features-row:nth-child(3) .feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.services-section .section-heading {
    animation: fadeLeft 1s ease-out forwards;
}

.services-section .service-card {
    animation: fadeUp 0.8s ease-out forwards;
}

.services-section .service-card:nth-child(1) {
    animation-delay: 0.2s;
}

.services-section .service-card:nth-child(2) {
    animation-delay: 0.4s;
}

.services-section .service-card:nth-child(3) {
    animation-delay: 0.6s;
}

.reputation-section .main-container {
    animation: zoomIn 1s ease-out forwards;
}

/* Mobile optimization */
@media (max-width: 768px) {
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    @keyframes fadeLeft {
        from { opacity: 0; transform: translateX(-30px); }
        to { opacity: 1; transform: translateX(0); }
    }
    
    /* Faster animations on mobile */
    .about-section .main-container,
    .features-section .section-title,
    .features-section .feature-card,
    .services-section .section-heading,
    .services-section .service-card,
    .reputation-section .main-container {
        animation-duration: 0.6s !important;
    }
    
    /* Remove stagger delays on mobile for faster load */
    .features-section .feature-card,
    .services-section .service-card {
        animation-delay: 0s !important;
    }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .about-section .main-container,
    .features-section .section-title,
    .features-section .feature-card,
    .services-section .section-heading,
    .services-section .service-card,
    .reputation-section .main-container {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
/* --- 3. The "No-JS" Scroll Trigger (Chrome/Edge Only) --- */
/* This block only runs if the browser supports scroll animations */
/* --- 1. UNIQUE VARIABLES (Scoped) --- */
.page-banner, 
.product-detail-container,
.overlay {
    --hm-blue: #0a2e5c;       
    --hm-accent: #00a8e8;     
    --hm-bg: #f8f9fa;
    --hm-text: #666666;
    --hm-white: #ffffff;
}

/* --- SCROLL ANIMATIONS --- */
@supports (animation-timeline: view()) {
    .fade-up {
        opacity: 0;
        animation: autoFadeUp linear both;
        animation-timeline: view();
        animation-range: entry 10% cover 30%;
    }
    @keyframes autoFadeUp { 
        from { opacity: 0; transform: translateY(20px); } 
        to { opacity: 1; transform: translateY(0); } 
    }
}

/* --- 2. PAGE BANNER (FULLY FIXED) --- */
.page-banner {
    background: linear-gradient(rgba(10, 46, 92, 0.9), rgba(10, 46, 92, 0.8)), url('images/factory-bg.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 180px !important;
    padding-bottom: 120px !important;
    padding-left: clamp(15px, 4vw, 40px);
    padding-right: clamp(15px, 4vw, 40px);
    text-align: center;
    color: #ffffff;
    margin-bottom: clamp(40px, 6vw, 60px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.page-banner * {
    color: #ffffff !important;
}

.page-banner h1 {
    font-size: clamp(1.9rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-top: 0 !important;
    margin-bottom: clamp(20px, 4vh, 30px) !important;
    padding-top: 0 !important;
    color: #ffffff !important;
    line-height: 1.3;
}

.page-banner p {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    font-weight: 500;
    color: #ffffff !important;
    letter-spacing: clamp(0.5px, 0.2vw, 1.5px);
    text-transform: uppercase;
    margin: 0 !important;
    padding: 0 !important;
}

/* --- 3. LAYOUT CONTAINER --- */
.product-detail-container {
    max-width: 1400px;
    margin: 0 auto clamp(60px, 8vw, 100px) auto;
    padding: 0 clamp(15px, 3vw, 20px);
    display: grid;
    grid-template-columns: 320px 1fr; 
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
}

/* --- 4. SIDEBAR --- */
.sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 25px);
    z-index: 10;
}

.widget {
    background: var(--hm-bg);
    padding: clamp(20px, 3vw, 30px);
    border-radius: clamp(8px, 1.5vw, 12px);
    border: 1px solid #e5e7eb;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.widget h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #00a8e8;
    margin-bottom: clamp(12px, 2vw, 15px);
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: clamp(10px, 1.5vw, 12px);
    margin-top: 0;
}

.widget p {
    font-size: clamp(0.9rem, 1.5vw, 0.95rem);
    color: var(--hm-text);
    margin-bottom: clamp(20px, 3vw, 25px);
    line-height: 1.6;
}

/* Sidebar Buttons */
.sidebar-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: clamp(14px, 2.5vw, 16px) clamp(18px, 3vw, 22px);
    border-radius: clamp(6px, 1vw, 8px);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.9rem);
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: clamp(10px, 2vw, 12px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    box-sizing: border-box;
    min-height: 48px;
}

.red-btn {
    background-color: #00a8e8;
    color: var(--hm-white);
    border: 1px solid #00a8e8;
}

.red-btn:hover {
    background-color: var(--hm-blue);
    border-color: var(--hm-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 168, 232, 0.2);
    color: var(--hm-white);
}

.dark-btn {
    background-color: var(--hm-blue);
    color: var(--hm-white);
    justify-content: center;
}

.dark-btn:hover {
    background-color: var(--hm-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(10, 46, 92, 0.2);
    color: var(--hm-white);
}

/* --- 5. MAIN CONTENT AREA --- */
.content-section {
    margin-bottom: clamp(40px, 6vw, 60px);
}

.content-section h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    color: #00a8e8;
    margin-bottom: clamp(20px, 3vw, 25px);
    padding-left: clamp(15px, 2.5vw, 20px);
    border-left: clamp(4px, 0.8vw, 6px) solid var(--hm-accent);
    margin-top: 0;
    line-height: 1.2;
}

.content-section p {
    margin-bottom: clamp(16px, 2.5vw, 20px);
    color: var(--hm-text);
    line-height: 1.8;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Bullet List Styling */
.bullet-list {
    list-style: none;
    margin-top: clamp(25px, 4vw, 30px);
    background: #ffffff;
    padding: clamp(20px, 3.5vw, 30px);
    border-radius: clamp(8px, 1.5vw, 12px);
    border: 1px solid #f0f0f0;
    border-left: clamp(4px, 0.6vw, 5px) solid var(--hm-blue);
    margin-bottom: 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.bullet-list li {
    margin-bottom: clamp(12px, 2vw, 15px);
    position: relative;
    padding-left: clamp(20px, 3vw, 25px);
    color: #333;
    font-weight: 500;
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--hm-accent);
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    line-height: 1;
    top: -2px;
}

/* --- 6. FEATURE GRID --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
    gap: clamp(15px, 2.5vw, 20px);
    margin-top: clamp(30px, 5vw, 40px);
}

.feature-box {
    background: var(--hm-white);
    border: 1px solid #eee;
    padding: clamp(18px, 3vw, 25px);
    border-radius: clamp(8px, 1.5vw, 10px);
    display: flex;
    align-items: center;
    gap: clamp(12px, 2vw, 15px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    transition: 0.3s ease;
}

.feature-box:hover {
    border-color: var(--hm-accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box i {
    color: var(--hm-accent);
    font-size: clamp(1.2rem, 2vw, 1.4rem);
}

.feature-box span {
    font-weight: 700;
    color: var(--hm-blue);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
}

/* --- 7. POPUP (MODAL) - FULLY FIXED --- */
.overlay {
    position: fixed;
    top: 0; 
    bottom: 0; 
    left: 0; 
    right: 0;
    background: rgba(10, 46, 92, 0.95);
    transition: opacity 0.4s ease;
    visibility: hidden;
    opacity: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(15px, 3vw, 20px);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    background: var(--hm-white);
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    border-radius: clamp(12px, 2vw, 16px);
    padding: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    margin: auto;
}

.popup-header {
    background: var(--hm-bg);
    padding: clamp(15px, 2.5vw, 20px) clamp(20px, 4vw, 30px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.popup-header h3 {
    margin: 0;
    color: #00a8e8;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 600;
}

.popup .close {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--hm-text);
    text-decoration: none;
    line-height: 1;
    transition: 0.2s;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.popup .close:hover {
    color: #00a8e8;
    transform: rotate(90deg);
}

.popup-content {
    padding: clamp(20px, 4vw, 30px);
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* CRITICAL: Image responsiveness in popup */
.popup-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Table responsiveness in popup */
.popup-content table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    overflow-x: auto;
    display: block;
}

.popup-content table td,
.popup-content table th {
    padding: clamp(8px, 1.5vw, 12px);
    border: 1px solid #ddd;
    text-align: left;
}

.popup-content table th {
    background: var(--hm-bg);
    font-weight: 600;
    color: var(--hm-blue);
}

/* ========================================= */
/* RESPONSIVE BREAKPOINTS                    */
/* ========================================= */

/* --- LARGE DESKTOP (1920px+) --- */
@media (min-width: 1920px) {
    .page-banner {
        padding-top: 200px !important;
        padding-bottom: 140px !important;
        min-height: 500px;
    }
    
    .page-banner h1 {
        font-size: 4rem;
        margin-bottom: 35px !important;
    }
    
    .page-banner p {
        font-size: 1.4rem;
    }
    
    .product-detail-container {
        max-width: 1600px;
        grid-template-columns: 360px 1fr;
        gap: 70px;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
}

/* --- DESKTOP (1440px - 1919px) --- */
@media (min-width: 1440px) and (max-width: 1919px) {
    .page-banner {
        padding-top: 180px !important;
        padding-bottom: 120px !important;
        min-height: 450px;
    }
    
    .page-banner h1 {
        font-size: 3.5rem;
        margin-bottom: 30px !important;
    }
    
    .page-banner p {
        font-size: 1.2rem;
    }
    
    .product-detail-container {
        max-width: 1400px;
        grid-template-columns: 320px 1fr;
        gap: 60px;
    }
}

/* --- LAPTOP (1024px - 1439px) --- */
@media (min-width: 1024px) and (max-width: 1439px) {
    .page-banner {
        padding-top: 160px !important;
        padding-bottom: 110px !important;
        min-height: 420px;
    }
    
    .page-banner h1 {
        font-size: 3rem;
        margin-bottom: 28px !important;
    }
    
    .page-banner p {
        font-size: 1.1rem;
    }
    
    .product-detail-container {
        max-width: 1200px;
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
    
    .sidebar {
        top: 80px;
    }
}

/* --- TABLET (768px - 1023px) --- */
@media (min-width: 768px) and (max-width: 1023px) {
    .page-banner {
        padding-top: 140px !important;
        padding-bottom: 100px !important;
        min-height: 380px;
    }
    
    .page-banner h1 {
        font-size: 2.8rem;
        margin-bottom: 25px !important;
    }
    
    .page-banner p {
        font-size: 1.05rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
        max-width: 900px;
    }
    
    .sidebar {
        order: -1;
        position: static;
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .widget {
        padding: 25px;
    }
    
    .popup {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .popup-content {
        padding: 25px 20px;
    }
}

/* --- MOBILE LANDSCAPE (568px - 767px) --- */
@media (min-width: 568px) and (max-width: 767px) {
    .page-banner {
        padding-top: 120px !important;
        padding-bottom: 90px !important;
        min-height: 340px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
        margin-bottom: 22px !important;
    }
    
    .page-banner p {
        font-size: 0.95rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        order: -1;
        position: static;
        gap: 15px;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- MOBILE (480px - 567px) --- */
@media (min-width: 480px) and (max-width: 567px) {
    .page-banner {
        padding-top: 120px !important;
        padding-bottom: 90px !important;
        min-height: 340px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
        margin-bottom: 20px !important;
    }
    
    .page-banner p {
        font-size: 0.9rem;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        order: -1;
        position: static;
        gap: 15px;
    }
    
    .sidebar-btn {
        padding: 16px 20px;
        font-size: 0.9rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .popup {
        max-width: 95%;
        max-height: 88vh;
        border-radius: 12px;
    }
    
    .popup-header {
        padding: 15px 20px;
    }
    
    .popup-header h3 {
        font-size: 1rem;
    }
    
    .popup-content {
        padding: 20px 15px;
    }
    
    .popup-content img {
        width: 100%;
    }
    
    .popup-content table {
        font-size: 0.75rem;
    }
    
    .popup-content table td,
    .popup-content table th {
        padding: 6px;
    }
}

/* --- SMALL MOBILE (320px - 479px) --- */
@media (max-width: 479px) {
    .page-banner {
        padding-top: 110px !important;
        padding-bottom: 80px !important;
        min-height: 320px;
    }
    
    .page-banner h1 {
        font-size: 1.8rem;
        margin-bottom: 18px !important;
        margin-top: 0 !important;
    }
    
    .page-banner p {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
        padding: 0 15px;
    }
    
    .sidebar {
        order: -1;
        position: static;
        gap: 12px;
    }
    
    .widget {
        padding: 20px;
    }
    
    .widget h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .sidebar-btn {
        padding: 16px 18px;
        font-size: 0.85rem;
        min-height: 50px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
        padding-left: 12px;
        border-left-width: 4px;
        margin-bottom: 18px;
    }
    
    .content-section p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    .bullet-list {
        padding: 18px;
        margin-top: 20px;
    }
    
    .bullet-list li {
        font-size: 0.85rem;
        margin-bottom: 10px;
        padding-left: 18px;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
    }
    
    .feature-box {
        padding: 15px;
        flex-direction: row;
        gap: 12px;
    }
    
    .feature-box i {
        font-size: 1.1rem;
    }
    
    .feature-box span {
        font-size: 0.85rem;
    }
    
    .overlay {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }
    
    .popup {
        max-width: 100%;
        max-height: 95vh;
        border-radius: 10px;
        margin: 0;
    }
    
    .popup-header {
        padding: 12px 15px;
    }
    
    .popup-header h3 {
        font-size: 0.95rem;
        line-height: 1.3;
        padding-right: 10px;
    }
    
    .popup .close {
        font-size: 1.5rem;
        min-width: 36px;
        min-height: 36px;
    }
    
    .popup-content {
        padding: 15px 12px;
    }
    
    .popup-content img {
        width: 100%;
        height: auto;
        border-radius: 6px;
    }
    
    .popup-content table {
        font-size: 0.7rem;
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .popup-content table td,
    .popup-content table th {
        padding: 5px;
        font-size: 0.7rem;
    }
}

/* --- LANDSCAPE MODE OPTIMIZATION --- */
@media (max-width: 767px) and (orientation: landscape) {
    .page-banner {
        padding-top: 100px !important;
        padding-bottom: 70px !important;
        min-height: 280px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
        margin-bottom: 18px !important;
        margin-top: 0 !important;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .popup {
        max-height: 95vh;
    }
    
    .popup-header {
        padding: 10px 15px;
    }
    
    .popup-content {
        padding: 15px;
    }
}

/* --- VERY SMALL SCREENS (iPhone SE, etc) --- */
@media (max-width: 375px) {
    .page-banner {
        padding-top: 100px !important;
        padding-bottom: 70px !important;
    }
    
    .page-banner h1 {
        font-size: 1.6rem;
    }
    
    .popup {
        border-radius: 8px;
    }
    
    .popup-header h3 {
        font-size: 0.9rem;
    }
    
    .popup-content {
        padding: 12px 10px;
    }
    
    .popup-content table {
        font-size: 0.65rem;
    }
}

/* --- TOUCH DEVICE OPTIMIZATIONS --- */
@media (hover: none) and (pointer: coarse) {
    .sidebar-btn:active {
        transform: scale(0.98);
    }
    
    .feature-box:active {
        transform: translateY(-2px);
    }
    
    .red-btn:hover,
    .dark-btn:hover,
    .feature-box:hover {
        transform: none;
    }
}

/* --- REDUCED MOTION FOR ACCESSIBILITY --- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .sidebar-btn,
    .feature-box {
        transition: none;
    }
}