/* === FONT IMPORT: MONTSERRAT === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* --- 1. GLOBAL STYLES & RESET --- */

:root {
    /* Define Color Variables */
    --color-dark-primary: #02375a; /* Deep Blue/Black - Background/Navbar */
    --color-dark-secondary: #1A3251; /* Slightly lighter dark for backgrounds */
    --color-accent-yellow: #FFC700; /* Strong Yellow for CTA/Highlights */
    --color-text-light: #F0F0F0; /* Off-White Text */
    --color-text-dark: #333333; /* Dark Gray Text */
    
    --font-primary: 'Montserrat', sans-serif;
    --font-impact: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; /* IMPACT FONT VARIABLE */
    --navbar-height: 65px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Optional: Smooth scroll for anchor links */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-text-light);
}

h1, h2, h3, h4 {
    font-weight: 700;
}

h2 {
    font-size: 2.2em;
    text-align: center;
    margin-bottom: 1.5em;
}
h6{
    font-size: 2em;
    text-align: center;
    font-weight: 600;
}
a {
    text-decoration: none;
    color: var(--color-accent-yellow);
}

/* Reusable Utility Classes */
.section-padding {
    padding: 4rem 5%;
}

.dark-background {
    background-color: var(--color-dark-secondary);
}

.text-light {
    color: var(--color-text-light);
}

/* --- 2. BUTTON STYLES --- */

.button-primary {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--color-accent-yellow);
    color: var(--color-dark-primary);
    font-size: 1.1em;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-primary:hover {
    background-color: #E6B600; /* Slightly darker yellow on hover */
    transform: translateY(-2px);
}

/* --- 3. NAVIGATION BAR STYLES --- */

#navbar {
    background-color: var(--color-dark-primary);
    color: var(--color-text-light);
    width: 100%;
    position: fixed; /* Makes the navbar stick to the top */
    top: 0;
    left: 0;
    z-index: 1000; /* Ensures it stays on top of other content */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 5000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--navbar-height); 
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--color-text-light);
    font-size: 0.95em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--color-accent-yellow);
}

.nav-links .cta-link {
    /* Using the default text color for consistency with the dark theme navigation */
    color: var(--color-text-light);
    /* Maybe bold the contact link to make it stand out subtly */
    font-weight: 600; 
}

/* Mobile Menu Toggler (hidden on desktop) */
.menu-toggle {
    display: none; 
    background: transparent;
    border: none;
    color: var(--color-text-light);
    font-size: 1.8em;
    cursor: pointer;
}
/* --- HERO SECTION --- */

  /* --- HERO SECTION MOBILE FIX (ONLY CHANGE APPLIED) --- */



    /* Remove overlay on mobile */
    #hero::before {
        display: none;
    }

    .hero-content {
        position: absolute;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        text-align: left;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }




/* --- 5. WHO WE ARE SECTION (#who-we-are) --- */

/* Existing H2 styles (Impact Font) remain the same */
#who-we-are h2{
    font-family: var(--font-impact); 
    margin-bottom: 0.5em; 
    font-size: 4em; 
    color: var(--color-dark-primary);
    letter-spacing: 2px;
}

/* New styles for the full-width image */
.full-width-image-container {
    /* Use the padding defined by .section-padding for a nice inset look */
    max-width: 100%; 
    overflow: hidden; 
     margin-bottom: 0.5em; /* Small space between image and text */
    padding: 0 5%; /* Aligns with the section padding if needed */
}

.who-we-are-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Remove the old, conflicting grid styles if you aren't using them elsewhere */
#who-we-are .content-grid {
    display: block; /* Change from grid to block if not used */
    /* ... or simply delete this block if you're not using the grid anymore ... */
}

/* Remove old placeholder styles */
#who-we-are .image-placeholder {
    display: none;
}

/* New styles for the text block that goes below the image */
.post-image-text {
    text-align: center;
    text-color:black;
    margin-top: 0; 
    /* Remove margin-bottom from the container, relying on internal padding/margins */
    margin-bottom: 0; 
    max-width: 900px; 
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
}

.post-image-text p {
    /* KEY FIX: Set all margins to zero or only bottom margin */
    margin-top: 0; 
    margin-bottom: 0.5em; /* Keep some space *between* lines, but not before the first one */
}

/* Optional: Target the very last paragraph to remove its bottom margin too */
.post-image-text p:last-child {
    margin-bottom: 0;
}
/* --- 6. FEATURES SECTION (#features) --- */

#features {
    padding: 3rem 5%;
    text-align: center;
}

#features h2 {
    margin-bottom: 2rem;
    font-size: 1.8em;
}

.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    flex-basis: 30%;
    background-color: var(--color-dark-primary);
    color: var(--color-text-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 5px solid var(--color-accent-yellow);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.feature-card h3 {
    font-size: 1.1em;
    text-transform: uppercase;
}


/* --- 7. PRODUCTS SECTION (#products) --- */

.product-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.product-card {
    flex-basis: 30%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.product-card [class*="Image"] {
    height: 200px;
    background-color: #EBEBEB;
    margin-bottom: 1rem;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
}


/* --- 8. WHY SAFETY MATTERS SECTION (#why-safety) --- */
#why-safety {
    padding: 4rem 5%;
    text-align: center;
    color:#FFC700;
    background-color: #f9f9f9;
}


/* === RATINGS & REVIEWS SECTION === */
#reviews {
  background: #fff;
  color: #333;
  padding: 80px 20px;
  text-align: center;
}

#reviews .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0C1E35;
  margin-bottom: 40px;
  position: relative;
}

#reviews .section-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #ffc700;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.ratings-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
  margin-bottom: 60px;
}

.rating-overview {
  text-align: right;
}

.rating-score h3 {
  font-size: 3.5rem;
  color: #0C1E35;
}

.rating-score span {
  font-size: 1.5rem;
  color: #555;
}

.rating-score .stars {
  color: #ffc700;
  font-size: 1.8rem;
  margin: 10px 0;
}

.rating-score p {
  color: #666;
  font-size: 1rem;
}

.divider {
  width: 1px;
  height: 150px;
  background: #ddd;
}

.rating-details {
  text-align: left;
}

.rating-bars .bar {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 240px;
  margin-bottom: 6px;
}

.rating-bars .bar-fill {
  height: 8px;
  background: #4CAF50;
  flex: 1;
  border-radius: 5px;
}

.user-satisfaction {
  margin-top: 20px;
}

.user-satisfaction h4 {
  color: #0C1E35;
  margin-bottom: 10px;
}

.satisfaction-bar {
  display: inline-block;
  background: #ddd;
  border-radius: 5px;
  width: 120px;
  height: 8px;
  margin: 0 8px;
  vertical-align: middle;
}

.satisfaction-bar .fill {
  background: #4CAF50;
  height: 100%;
  border-radius: 5px;
}

.sub-title {
  font-size: 1.5rem;
  color: #0C1E35;
  margin-bottom: 30px;
  font-weight: 600;
}

.review-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.review-card {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  width: 320px;
  padding: 20px;
  text-align: left;
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.avatar {
  background: #0C1E35;
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.review-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #0C1E35;
}

.review-header .stars {
  color: #ffc700;
  font-size: 1rem;
}

.review-header .location {
  color: #777;
  font-size: 0.9rem;
}

.review-tags span {
  color: #4CAF50;
  font-weight: 500;
  margin-right: 10px;
  font-size: 0.9rem;
}

.view-more-btn {
  display: inline-block;
  border: 2px solid #0C1E35;
  color: #0C1E35;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background: #0C1E35;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .ratings-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .divider {
    display: none;
  }

  .rating-details {
    text-align: center;
  }
}

/* --- 10. SECONDARY CTA (#secondary-cta) --- */

#secondary-cta {
    background-color: var(--color-accent-yellow);
    color: var(--color-dark-primary);
    text-align: center;
    padding: 3rem 5%;
    font-size: 1.1em;
}

#secondary-cta h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2em;
}
/* ==================== MORE USEFUL INFO SECTION ==================== */
.more-info-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.info-heading {
  font-size: 2.3rem;
  font-weight: 900;
  color: #0C1E35;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 50px;
}

.info-image img {

  height: 450px;
  width: 550px;
  border-radius: 10px;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
}

.info-content {
  flex: 1;
  font-size: 30px;
  margin-bottom: 0px;
  min-width: 280px;
  text-align: justify;
}

.info-content h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0C1E35;
  margin-bottom: 5px;
}

.info-content h3 span {
  color: #0C1E35;
  font-weight: 900;
}

.info-content p {
  color: #333;
  
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 550px;
}

/* ==================== SUPPORT SECTION ==================== */
.support-section {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.support-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.support-text {
  position: relative;
  display: inline-block;
}

.support-text .accent-line {
  position: absolute;
  width: 25px;
  height: 25px;
  border-left: 5px solid #ffc700;
  border-top: 5px solid #ffc700;
  top: 0;
  left: -50px;
}

.support-text .accent-line.right {
  border-left: none;
  border-right: 5px solid #ffc700;
  border-bottom: 5px solid #ffc700;
  right: -50px;
  left: auto;
  top: auto;
  bottom: 0;
}

.support-text h4 {
  color: #0C1E35;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.support-text h2 {
  font-size: 2rem;
  color: #0C1E35;
  font-weight: 800;
  margin-bottom: 40px;
}

.support-btn {
  display: inline-block;
  background-color: #0C1E35;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.support-btn:hover {
  background-color: #ffc700;
  color: #0C1E35;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .info-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .info-content {
    text-align: center;
  }
  .support-text .accent-line,
  .support-text .accent-line.right {
    display: none;
  }
}


/* ===== Contact Section ===== */
.contact-section {
  padding: 60px 0;
  background:#02375a; /* deep-blue panel */
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-header { text-align: left; margin-bottom: 26px; }
.contact-header h2 {
  font-size: 50px; letter-spacing: 1px; margin: 0; color: #ffffff; font-weight: 800;
}

.contact-columns {
  align-items: justify;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* LEFT */
.contact-left { color: rgba(255,255,255,0.95); padding: 36px; }
.contact-left .lead {
  line-height: 1.6;max-width: 560px; margin-bottom: 22px; color: rgba(255,255,255,0.9);
  font-size: 15px;
}

.contact-card { display: flex; flex-direction: column; gap: 18px; max-width: 520px; }
.contact-item { display:flex; gap:14px; align-items:flex-start; }
.icon-wrap {
  width:44px; height:44px; border-radius:10px; background: rgba(212,175,55,0.12);
  display:inline-flex; align-items:center; justify-content:center; color:#d4af37; flex-shrink:0;
}
.muted { color: rgba(255,255,255,0.65); font-size:13px; margin-bottom:4px; }
.strong { color:#fff; font-weight:600; font-size:15px; line-height:1.35; }

/* RIGHT (white card) */
.contact-right { display:flex; justify-content:center; align-items:flex-start; }
.form-card {
  width:100%; max-width:520px; background:#fff; color:#072b33; padding:30px;
  border-radius:16px 16px 16px 60px; box-shadow:0 8px 30px rgba(3,16,22,0.22);
  border: 1px solid rgba(0,0,0,0.04);
}
.form-card h3 { margin:0 0 6px 0; font-size:30px; color:#102633; font-weight:700; }
.form-card .sub { margin:0 0 18px 0; font-size:13px; color:#4a6a72; line-height:1.5; }

/* fields */
.field { display:block; margin-bottom:14px; }
.field .label-text { display:block; font-size:12px; color:#6b8790; margin-bottom:6px; }
.field input[type="text"], .field input[type="email"], .field textarea {
  width:100%; padding:10px 12px; border:0; border-bottom:1px solid #cfdfe3; background:transparent;
  font-size:14px; outline:none; color:#0d2530; transition:border-color .18s ease; resize:vertical;
}
.field input::placeholder, .field textarea::placeholder { color:#9aaeb2; }
.field input:focus, .field textarea:focus { border-bottom-color: #d4af37; }

/* button */
.form-actions { margin-top:10px; text-align:left; }
.btn-send {
  display:inline-block; padding:10px 26px; border-radius:24px; background:#0a5b78; color:#fff;
  border:0; font-weight:700; letter-spacing:.6px; cursor:pointer; box-shadow:0 6px 18px rgba(10,91,120,0.18);
}
.btn-send:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(10,91,120,0.22); }

/* response */
.form-response { margin-top:12px; font-size:13px; color:#0a5b78; }

/* responsive */
@media (max-width:880px) {
  .contact-columns { grid-template-columns:1fr; }
  .contact-left { order:2; padding:20px 0 0 0; }
  .contact-right { order:1; padding-bottom:18px; }
  .contact-header h2 { font-size:32px; }
  .form-card { border-radius:12px; padding:22px; }
}


/* --- 14. MEDIA QUERIES (Responsiveness) --- */

@media (max-width: 900px) {
    /* Navbar Mobile Layout */
    .nav-container {
        padding: 0 15px;
    }
    .nav-links {
        display: none; /* Hide desktop menu */
    }
    .menu-toggle {
        display: block; /* Show hamburger button */
    }

    h1 {
        font-size: 3em !important;
    }
    
    .testimonial-grid,
    .product-cards,
    #who-we-are .content-grid,
    #more-info .info-content,
    .contact-grid {
        grid-template-columns: 1fr; /* Stack columns vertically */
        text-align: center;
    }
    
    .features-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-card {
        flex-basis: 80%; /* Widen card */
    }
    
    #more-info .image-placeholder {
        order: -1; /* Move image above text on mobile */
    }
    
    #contact-us h2, #contact-us .contact-info {
        text-align: center;
        padding-right: 0;
    }
}

/* Remove any overlay effect */
#hero::before,
.hero-overlay {
    display: none !important;
    background: none !important;
    content: none !important;
}


/* Content styling */
.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7); /* Slight shadow for readability */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-impact);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;;
    color: #f4f4f4;
}

.hero-content p {
    font-size: 1.2rem;
}

.hero-content .button-primary {
    background-color: #ffcc00;
    color: #111;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.hero-content .button-primary:hover {
    background-color: #d4af37;
    transform: scale(1.05);
}
/* --- PRODUCT HIGHLIGHT SECTION --- */

#product-highlight {
    background-color: #f7f7f7;
    text-align: center;
    /* FIX: Set top/bottom padding explicitly so space isn't removed */
    padding: 80px 20px; 
}

#product-highlight h2 {
    font-size: 2rem;
    color: #000000;
    /* FIX 1: Remove the space below the h2 */
    margin-bottom: 0; 
    /* FIX 2: Ensure default line-height doesn't add extra space */
    line-height: 1.1; 
}

#product-highlight .highlight-text {
    font-size: 2.2rem;
    color: #042E5F;
    /* FIX 3: Remove the space above the h3 */
    margin-top: 0; 
    /* Adjust this to set the space between the heading block and the button */
    margin-bottom: 20px; 
    line-height: 1.1;
}

#product-highlight .button-primary {
    background-color: #0C1E35;
    color: #fff;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s ease;
}
#product-highlight .button-primary:hover {
    background-color: #FFC700;
    color: #0C1E35;
}
#who-we-are .image-wrapper {
    display: flex; /* Ensures image is centered if smaller than container */
    justify-content: center;
    align-items: center;
    height: 100%; /* Take full height of grid cell */
}

#who-we-are .image-wrapper img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: add a subtle shadow */
}

/* Remove or adjust old image-placeholder styles if they conflict */
#who-we-are .image-placeholder { 
    /* You had a background-image here, remove it or ensure it doesn't conflict */
   background-image: url("../images/how.png");  /* background-image: none; */ 
    /* height: auto; */ /* Adjust as needed */
    /* width: auto; */ /* Adjust as needed */
}
/* ==================== FEATURES SECTION ==================== */
.features-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0C1E35;
  margin-bottom: 60px;
}

.features-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 350px;
  text-align: left;
}

.feature-icon {
  width: 110px;
  height: 110px;
  background-color: #0C1E35;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.feature-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0C1E35;
  margin: 0 0 5px;
} 

.feature-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: #0C1E35;
  line-height: 1.4;
  margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .features-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .feature-item {
    max-width: 90%;
    text-align: center;
    flex-direction: column;
  }

  .feature-text {
    text-align: center;
  }
}
/* === WHY SAFETYXPARTS SECTION === */
.why-section {
  position: relative;
  background-image: url("../images/why.png"); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.why-section .overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for readability */
  padding: 80px 20px;
}

.why-content h2 {
  font-size: 2.5rem;
  color: #ffc700;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-content h2 span {
  color: #ffc700; /* your yellow accent */
}

.why-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  color: #e5e5e5;
}
/* === OUR PRODUCTS SCROLL SECTION === */
#products h2{
    font-family: var(--font-impact); 
    margin-bottom: 0.5em; 
    font-size: 4em; 
    color: var(--color-dark-primary);
    letter-spacing: 2px;
}



.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0C1E35;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.product-scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px;
  justify-content: flex-start;
}

.product-scroll-container::-webkit-scrollbar {
  height: 10px;
}

.product-scroll-container::-webkit-scrollbar-thumb {
  background: #ffc700;
  border-radius: 10px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  min-width: 260px;
  max-width: 260px;
  flex: 0 0 auto;
  padding: 20px;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0C1E35;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-block;
  background-color: #ffc700;
  color: #0C1E35;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition:0.3s;
}

.download-btn:hover {
  background-color: #e0b400;
}
.google-map-embed {
  margin: 40px auto;
  max-width: 900px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
/* ==================== PROTECT YOUR HANDS SECTION ==================== */
.protect-section {
  position: relative;
  background-color: #0C1E35;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden; /* ensures image edges stay clean */
}

.protect-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 2; /* keep text above image */
}

.protect-text {
  flex: 1;
  min-width: 300px;
  z-index: 3;
}

.protect-text h2 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 0%;
  position: relative;
  color: #fff;
  z-index: 3;
}



.connect-btn {
  
  display: inline-block;
  margin-top: 20px;
  margin-left: 500px;
  color: #fff;
  border: 2px solid #ffc700;
  padding: 10px 30px;
  border-radius: 4px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  z-index: 3;
  position: relative;
}

.connect-btn:hover {
  background-color: #ffc700;
  color: #0C1E35;
}

/* ✅ Thumb Glove Image Styling */
.thumb-image {
  position: absolute;
  right: 0;
  top: 70%;
  transform: translateY(-50%) rotate(1deg);
  width: 390px; /* adjust size to match your screenshot */
  height: auto;
  z-index: 1;
}

/* Optional: Add soft shadow behind glove for realism */
.thumb-image {
  filter: drop-shadow(0px 8px 15px rgba(0,0,0,0.2));
}

/* Responsive */
@media (max-width: 900px) {
  .thumb-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    display: block;
    margin: 40px auto 0;
    width: 250px;
  }
  .protect-text h2 {
    text-align: center;
  }
  .protect-container {
    justify-content: center;
  }
}


/* ==================== SUPPORT SECTION WITH GOLD CORNERS ==================== */
.support-wrapper {
    background: #e9e9e9;
    padding: 50px;
    display: flex;
    justify-content: center;
}

.support-box {
    position: relative;
    text-align: center;
    padding: 40px 80px; /* creates tighter box like your image */
    display: inline-block;
}

/* GOLD CORNERS — exact size & position like your provided design */
.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: #d4af37;
}

.corner-tl {
    top: 25px;
    left: 30px;
    border-top: 10px solid #d4af37;
    border-left: 10px solid #d4af37;
}

.corner-br {
    bottom: 0px;
    right: 30px;
    border-bottom: 10px solid #d4af37;
    border-right: 10px solid #d4af37;
}

/* TEXT STYLES */
.support-subtitle {
    font-size: 40px;
    margin-bottom: 0px;
    color: #060606;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.support-title {
    font-size: 50px;
      margin-bottom: 0px;
    color: #0b3b61;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

/* ---------------------------
   LAPTOP (1024px - 1199px)
   --------------------------- */
@media (min-width: 1024px) and (max-width: 1199px) {

  /* Navbar */
  .navbar {
    padding: 14px 36px; /* slightly smaller padding */
  }
  .navbar .nav-links li {
    margin-left: 18px;
    font-size: 15px;
  }
  .logo {
    width: 120px; /* reduce logo a bit */
  }

  /* Hero */
  .hero .hero-content {
    max-width: 980px;
    padding: 60px 28px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.08;
  }
  .hero p.lead {
    font-size: 16px;
  }
  .hero .hero-right-logo {
    width: 220px;
    opacity: 0.95;
  }

  /* Feature cards grid */
  .features .grid {
    grid-template-columns: repeat(3, 1fr); /* keep 3 if plenty of width */
    gap: 20px;
  }
  .service-card, .step-card {
    padding: 18px;
  }

  /* Contact form */
  .contact-container {
    padding: 36px;
  }
  .contact-form input, .contact-form textarea {
    font-size: 15px;
  }

  /* Footer */
  footer .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  /* Buttons */
  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }
}
/* ---------------------------
   MOBILE (max-width: 767px)
   --------------------------- */
@media (max-width: 767px) {

  /* GENERAL LAYOUT */
  html, body {
    font-size: 15px; /* slightly smaller base for mobile */
  }
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
  /* MOBILE HERO IMAGE FIX */


    .hero img,
    .hero .right-image,
    .hero .product-image {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}


  /* NAVBAR */
  .navbar {
    position: fixed; /* keep sticky on top */
    top: 0;
    left: 0;
    right: 0;
    padding: 10px 14px;
    backdrop-filter: blur(4px);
    z-index: 999;
  }
  .navbar .logo {
    width: 92px;
  }
  .navbar .nav-toggle { /* hamburger */
    display: block;
  }
  .nav-links {
    display: none; /* hide default horizontal links; use mobile menu */
  }

  /* HERO */
  .hero {
    padding: 90px 0 30px; /* account for fixed navbar */
    background-position: center top;
  }
  .hero .hero-content {
    text-align: center;
    padding: 36px 12px;
    max-width: 100%;
  }
  .hero h1 {
    font-size: 28px;
    line-height: 1.12;
    margin-bottom: 8px;
  }
  .hero p.lead {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .hero .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
  }
  .hero .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 15px;
  }
  .hero .hero-right-logo {
    display: none; /* hide large decorative right logo on small phones */
  }

  /* FEATURES / SERVICE CARDS */
  .features .grid {
    grid-template-columns: 1fr; /* single column */
    gap: 14px;
  }
  .service-card, .step-card {
    padding: 14px;
    border-radius: 12px;
  }
  .service-card h3 {
    font-size: 16px;
  }

  /* WELCOME / ABOUT SECTIONS */
  .welcome, .about, .services {
    padding: 20px 10px;
  }
  .about p, .welcome p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* CONTACT FORM */
  .contact-container {
    padding: 18px 10px;
  }
  .contact-grid {
    display: block; /* stack form and contact info */
  }
  .contact-form input, .contact-form textarea {
    width: 100%;
    font-size: 14px;
    padding: 12px;
  }
  .contact-form textarea {
    min-height: 120px;
  }

  /* FOOTER */
  footer .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Small UI tweaks */
  .text-center-mobile {
    text-align: center;
  }
  .hide-mobile {
    display: none !important;
  }
  .show-mobile {
    display: block !important;
  }

/* ===== Testimonials Section ===== */
#testimonials {
  background: #fff;
  padding: 60px 20px;
  font-family: var(--font-primary);
  text-align: center;
}

.section-title {
  font-size: 32px;
  font-family: var(--font-impact);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-dark-primary);
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-card {
  background: #f7f7f7;
  border: 2px solid #ddd;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Avatar circle */
.avatar {
  width: 70px;
  height: 70px;
  background: var(--color-dark-primary);
  border-radius: 50%;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #fff;
}

/* Small side cards */
.testimonial-card.small {
  width: 260px;
  opacity: 0.8;
}

/* Large center card */
.testimonial-card.large {
  width: 320px;
  opacity: 1;
  font-size: 18px;
}

.testimonial-card h3 {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color-dark-primary);
}

.testimonial-card p {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-dark);
  margin: 15px 0;
  line-height: 1.5;
}

.stars {
  color: #ffc700;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
}
.logo img {
  height: 60px;   /* fits inside navbar */
  width: auto;
  display: block;
}
.hero-left-text {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: left;
  max-width: 700px;
}

.hero-left-text {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  text-align: left;
  max-width: 800px;
}

.hero-left-text h1 {
  margin: 0;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 3px;
}

/* BOTH LINES – SAME SIZE */
.hero-left-text h1 span {
  display: block;
  font-family: var(--font-impact, 'Arial Black', Impact, sans-serif);
  font-size: 7rem;          /* 🔥 BIG LIKE IMAGE */
  font-weight: 900;
}

/* COLOR ONLY DIFFERENCE */
.line-white {
  color: #ffffff;
}

.line-yellow {
  color: #ffc400;
}
@media (max-width: 1200px) {
  .hero-left-text h1 span {
    font-size: 5.5rem;
  }
}

@media (max-width: 768px) {
  .hero-left-text h1 span {
    font-size: 3.5rem;
  }
}


/* Mobile fix */
@media (max-width: 768px) {
    .hero-left-text {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        text-align: center;
        margin: 0 auto;
        padding-top: 140px;
    }

    .hero-left-text h1 {
        font-size: 2.2rem;
    }
}
/* ================= OUR PRODUCT SECTION ================= */

#products {
  background: #f5f5f5;
  padding: 80px 8%;
}

/* TOP CENTER TITLE */
.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #0b2a4a;
  letter-spacing: 2px;
}

/* MAIN PRODUCT WRAPPER */
.single-product {
  display: flex;
  align-items: center;
  gap: 60px;
  background: #ffffff;
  padding: 50px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* LEFT IMAGE */
.product-image {
  flex: 1;
  text-align: center;
}

.product-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* RIGHT DETAILS */
.product-details {
  flex: 1;
}

/* PRODUCT HEADINGS */
.product-details h4 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  color: #080808;
}

/* INTRO PARAGRAPH */
.product-intro {
  margin-bottom: 8px;
  line-height: 1.7;
  font-size: 15px;
  color: #000000;
}

/* LIST STYLES */
.product-specs,
.product-features {
  padding-left: 18px;
  margin-bottom: 10px;
}

.product-specs li,
.product-features li {
  margin-bottom: 5px;
  font-size: 15px;
  color: #000000;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .single-product {
    flex-direction: column;
    text-align: center;
  }

  .product-specs,
  .product-features {
    text-align: left;
  }
}
/* ================= MOBILE LAYOUT (360 x 800) ================= */
@media (max-width: 400px) {

  /* GENERAL RESET */
  body {
    font-size: 12px;
  }

  .section-padding {
    padding: 40px 16px;
  }

  /* ================= HERO SECTION ================= */
  #hero {
    height: 100vh;
    background-position: center top;
    background-size: cover;
  }

  .hero-left-text {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    text-align: center;
    padding: 120px 16px 40px;
    max-width: 100%;
  }

  .hero-left-text h1 span {
    font-size: 3.2rem;   /* fits 360px screen */
    line-height: 1;
    letter-spacing: 2px;
  }

  /* ================= PROTECT HANDS SECTION ================= */
  .protect-section {
    padding: 50px 16px;
    text-align: center;
  }

  .protect-container {
    flex-direction: column;
  }

  .protect-text h2 {
    font-size: 2rem;
  }

  .connect-btn {
    margin: 20px auto 0;
  }

  .thumb-image {
    position: relative;
    width: 220px;
    
    bottom: 100%;
    
    left: 30%;
    transform: none;
  }

  /* ================= PRODUCT SECTION ================= */
  .single-product {
    flex-direction: column;
    padding: 25px;
    gap: 25px;
  }

  .product-details h4 {
    font-size: 17px;
  }

  .product-intro,
  .product-specs li,
  .product-features li {
    font-size: 14px;
  }

  /* ================= MORE INFO ================= */
  .info-wrapper {
    flex-direction: column;
  }

  .info-image img {
    width: 100%;
    height: auto;
  }

  .info-content {
    text-align: center;
  }

  /* ================= CONTACT ================= */
  .contact-columns {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  /* ================= NAVBAR ================= */
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }
}
/* =========================================================
   UNIVERSAL RESPONSIVE FIXES – ALL DEVICES
   (Safe overrides – does NOT break design)
========================================================= */

/* ---------- GLOBAL SAFETY ---------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- CONTAINER FIX ---------- */
.container,
.nav-container,
.contact-inner,
.protect-container,
.info-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================================================
   LARGE SCREENS (1440px+)
========================================================= */
@media (min-width: 1440px) {
  .hero-left-text h1 span {
    font-size: 7rem;
  }

  .section-padding {
    padding: 100px 8%;
  }
}

/* =========================================================
   LAPTOPS (1024px – 1439px)
========================================================= */
@media (max-width: 1439px) {
  .hero-left-text h1 span {
    font-size: 5.5rem;
  }

  .single-product {
    gap: 40px;
    padding: 40px;
  }
}

/* =========================================================
   TABLETS (768px – 1023px)
========================================================= */
@media (max-width: 1023px) {

  /* NAVBAR */
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  /* HERO */
  #hero {
    height: auto;
    min-height: 520px;
    background-size: contain;
    background-position: center top;
  }

  .hero-left-text {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    text-align: center;
    padding: 140px 20px 40px;
  }

  .hero-left-text h1 span {
    font-size: 4rem;
  }

  /* FLEX → COLUMN */
  .single-product,
  .protect-container,
  .info-wrapper,
  .contact-columns {
    flex-direction: column;
    text-align: center;
  }

  .product-specs,
  .product-features {
    text-align: left;
  }

  /* IMAGE CENTER */
  .thumb-image {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 280px;
    margin: 30px auto 0;
  }
}

/* =========================================================
   MOBILES (480px – 767px)
========================================================= */
@media (max-width: 767px) {

  body {
    font-size: 14px;
  }

  /* HERO TEXT */
  .hero-left-text h1 span {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }

  /* BUTTONS */
  .button-primary,
  .connect-btn {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }

  /* FEATURES */
  .features-grid,
  .features-container {
    flex-direction: column;
    align-items: center;
  }

  .feature-card,
  .feature-item {
    width: 100%;
    max-width: 380px;
  }

  /* PRODUCTS */
  .product-scroll-container {
    padding: 10px;
  }

  /* CONTACT */
  .contact-header h2 {
    font-size: 30px;
  }
}

/* =========================================================
   SMALL PHONES (≤ 400px)
========================================================= */
@media (max-width: 400px) {

  body {
    font-size: 12px;
  }

  /* HERO */
  .hero-left-text {
    padding-top: 120px;
  }

  .hero-left-text h1 span {
    font-size: 2.8rem;
  }

  /* PRODUCT */
  .single-product {
    padding: 20px;
    gap: 20px;
  }

  /* PROTECT IMAGE */
  .thumb-image {
    width: 220px;
  }

  /* CONTACT */
  .contact-header h2 {
    font-size: 26px;
  }
}

/* ================= HERO IMAGE WITH FIXED LEFT TEXT ================= */

#hero {
  width: 100%;
}

/* Image wrapper becomes reference */
.hero-image-wrapper {
  position: relative;
  width: 100%;
}

/* Image fully responsive */
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* TEXT LOCKED INSIDE IMAGE (LEFT SIDE) */
.hero-left-text {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  max-width: 45%;
  text-align: left;
}

/* TEXT STYLE */
.hero-left-text h1 {
  margin: 0;
  line-height: 0.95;
}

.hero-left-text h1 span {
  display: block;
  font-family: Impact, 'Arial Black', sans-serif;
  font-weight: 900;
  font-size: clamp(2.8rem, 5vw, 6.5rem);
}

.line-white { color: #ffffff; }
.line-yellow { color: #ffc400; }

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .hero-left-text {
    max-width: 55%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero-left-text {
    left: 50%;
    top: 65%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 90%;
  }

  .hero-left-text h1 span {
    font-size: clamp(2.2rem, 7vw, 3.5rem);
  }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 400px) {
  .hero-left-text {
    top: 70%;
  }
}
/* ================= NAVBAR VISIBILITY FIX ================= */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* 🔥 higher than hero */
}
#hero {
  margin-top: var(--navbar-height); /* pushes hero below navbar */
}
@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #02375a;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }
}
/* ===================== FINAL NAVBAR FIX ===================== */

/* BASE (DESKTOP DEFAULT) */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #02375a;
  z-index: 1000;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO ALWAYS LEFT */
.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
}

/* MENU VISIBLE ON LAPTOP */
.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
}

/* HAMBURGER HIDDEN ON LAPTOP */
.menu-toggle {
  display: none;
}

/* ===================== MOBILE ONLY ===================== */
@media (max-width: 900px) {

  /* SHOW HAMBURGER */
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
  }

  /* HIDE MENU INITIALLY */
  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #02375a;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  /* SHOW MENU WHEN ACTIVE */
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 12px 0;
  }
}
/* REMOVE HERO GAP ON MOBILE */
@media (max-width: 768px) {

  #hero {
    height: auto !important;
    min-height: auto !important;
  }

  .hero-image-wrapper {
    height: auto;
  }

  .hero-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
  }

}
/* ================= RESPONSIVE RIGHT TOUCH THUMB ================= */

.thumb-image {
  display: block;
  width: clamp(450px, 45vw, 380px);
  height: auto;
  margin-left: auto;      /* push right */      /* touch right edge */
  margin-top: -22px;   
  margin-bottom: -170px;
  margin-right: -20px;    /* space from button */
}

/* For small screens like 360px */
@media (max-width: 400px) {
  .thumb-image {
    width: 85vw;          /* bigger proportion on small devices */
    margin-right: 100px; 
    margin-bottom: -100px;
    
      
      /* slight right touch adjustment */
  }
}
