/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --navy: #003366;
  --soft-blue: #4A90E2;
  --gray: #B0B0B0;
  --green: #008000;
  --offwhite: #F5F5F5;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Pre Top Contact Bar */
.pre-top-bar {
  background: #0b1f33; /* darker than header */
  color: #ffffff;
  font-size: 13px;
}

.pre-top-container {
  max-width: 1200px;
  margin: auto;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pre-top-bar a {
  color: #ffffff;
  text-decoration: none;
  margin-right: 18px;
}

.pre-top-bar a:hover {
  text-decoration: underline;
}

.pre-right {
  white-space: nowrap;
}

/* Hide contact bar on mobile */
@media (max-width: 768px) {
  .pre-top-bar {
    display: none;
  }
}

/* ---------- header layout ---------- */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* brand left, right-controls right */
  padding: 10px 20px;
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
  gap: 12px;
}

/* brand: logo + text */
.brand .brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo { height:56px; width:auto; display:block; }
/* social (horizontal row on the right) */
.social-media { display:flex; gap:10px; align-items:center; }

/* pill / circle base (re-using your styles) */
.social {
  width:44px; height:44px;
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%;
  background: rgba(0,0,0,0.06);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  text-decoration:none;
  overflow:hidden;
}
.social svg { width:20px; height:20px; display:block; fill:#333; transition: fill .12s ease; }
.social:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.social:hover svg { fill: #fff; }
@media (max-width: 768px) {

  .logo {
    height: 36px;   /* try 36–42px if needed */
  }

  .brand .brand-link {
    gap: 7px;       /* reduce spacing between logo & text */
  }

/* right-controls groups social */
.right-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}  
  .social-media,
  .social {
    display: none !important;
  }

}

/* menu-bar (bottom nav) */
.menu-bar { background:#0d2233; padding:8px 20px; }
.menu-list { display:flex; gap:18px; list-style:none; margin:0; padding:0; align-items:center; }
.menu-list a { color:#fff; text-decoration:none; font-weight:600; padding:6px 8px; }



/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* hide desktop nav */
  .menu-bar {
    display: none;
  }

}

/* Hero Section */
.hero {
    background:#0d2233;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: left;
    color: #f3f3f3;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#0d2233;
}

.hero-content {
    position: relative;
    z-index: 1;
}
.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.hero-top h1 {
    margin: 0;
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}
/* Download Catalogue Button */
.download-btn {
    background-color: #cfa530;   /* Red */
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 10px 0 20px 0;
    transition: 0.3s ease;
}

.download-btn:hover {
    background-color: #c72e3a;  /* Darker red */
}


.hero p {
    font-size: 24px;
    margin-bottom: 30px;
    animation:fadeInUp 1s ease-out 1s both  ;
}

.hero-description {
    font-size: 20px;
    margin-top: 20px;
    display: block;
    line-height: 1.4;
    color: #cacbce;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c53030;
}
/* ================= HERO MOBILE FIX ================= */
@media (max-width: 900px) {

  .hero {
    height: auto;                 /* allow content to grow */
    padding: 70px 20px 50px;      /* spacing for mobile */
    text-align: center;           /* center text */
  }

  .hero-top {
    flex-direction: column;       /* stack text & button */
    align-items: center;
    gap: 12px;
  }

  .hero-top h1 {
    font-size: 28px;              /* smaller heading */
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .download-btn {
    width: 100%;
    max-width: 260px;
    text-align: center;
    margin: 10px auto 20px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    font-size: 16px;
    padding: 12px;
    margin: 0 auto;
  }
}
/* -------- OUR BUSINESS SECTION -------- */

.business-section {
  padding: 75px 25px;
  background: #ffffff;
}

.business-container {
  max-width: 1100px;
  margin: auto;
}
.section-line {
  width: 100px;
  height: 5px;
  margin-bottom: 3px;
  background: linear-gradient(
    90deg,
    #007bff,
    #00c6ff,
    #7ad957,
    #ffd200
  );
  border-radius: 3px;
}

.section-title {
  font-size: 40px;
  color: #000000;
  font-weight: 900;
  margin-bottom: 20px;
}

.section-description {
  max-width: 700px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 50px;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.business-item {
  text-align: center;
}

.icon-circle {
  width: 90px;
  height: 90px;
  border: 2px solid #0d2233;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #0d2233;
  margin: 0 auto 15px;
}

.business-item h4 {
  font-size: px;
  color: #0d2233;
  font-weight: 600;
}

.discover-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0d2233;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 500;
}

/* -------- RESPONSIVE -------- */

@media (max-width: 768px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .discover-btn {
    display: flex;
    flex-direction: column;
    align-items: center;

  }
}

@media (max-width: 480px) {
  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 26px;
  }
}


/*  products images cards */


.premium-section {
  padding: 70px 40px;
  background: radial-gradient(
    circle at top,
    #1f4c5b,
    #0b1f2a 65%
  );
}
.section-header {
  text-align: center;
  margin-bottom: 45px;
  color: #fff;
}

.section-header span {
  font-size: 11px;
  letter-spacing: 2px;
  color: #7dd3fc;
}

.section-header h2 {
  font-size: 34px;
  margin-top: 8px;
}

.section-header h2::after {
  content: "";
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #007bff,
    #00c6ff,
    #7ad957,
    #ffd200
  );
  border-radius: 3px;
  display: block;
  margin: 10px auto 0;
}
.simple-card {
  flex: 0 0 240px;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  transition: transform 0.3s ease;
}

.simple-card:hover {
  transform: translateY(-8px);
}

.simple-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-title {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0)
  );
}
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 0;
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Left arrow */
.nav-btn.left {
  display: none;
  left: -20px;   /* adjust if needed */
}

/* Right arrow */
.nav-btn.right {
  display: none;
  right: -20px;
}

/* product container */

.product-container {
    background-color: #0d2233;
    border-radius: 20px;
    max-width: 1200px;
    margin: 70px auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.bio-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
}

.bio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.16);
}

.bio-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #002B5B;
    margin-bottom: 12px;
}

.bio-card p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

.bio-card a {
    text-decoration: none;
    background: #FFB100;
    padding: 10px 18px;
    display: inline-block;
    border-radius: 8px;
    font-weight: 600;
    color: #111;
}

.bio-card a:hover {
    background: #e09a00;
}

/* connect section*/
.connect-section {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0d2233, #00c6a7);
  padding: 40px 20px;
}

.connect-content {
  text-align: center;
  color: #fff;
  max-width: 800px;
}

.connect-content h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.connect-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.connect-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #0d2233, #0044cc);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .connect-content h1 {
    font-size: 28px;
  }

  .connect-content p {
    font-size: 16px;
  }
}
/* vission mission */
.vision-mission {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.vm-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #1a365d;
}

.vm-item.vision {
    border-left-color: #1a365d;
}

.vm-item.mission {
    border-left-color: #e53e3e;
}

.vm-item h2 {
    color: #1a365d;
    margin-bottom: 20px;
    font-size: 28px;
}

.vm-item p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}
@media (max-width: 768px) {
  
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vm-item {
        padding: 30px;
    }
}
/* -------- FOOTER -------- */

.site-footer {
  background: linear-gradient(135deg, #0b1c2d, #06101d);
  color: #d1d5db;
  font-family: Inter, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #00c6ff;
}

/* Newsletter */

.newsletter-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  padding: 10px 15px;
  border-radius: 5px 0 0 5px;
  border: none;
  outline: none;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #00c6ff;
  border: none;
  color: #000;
  font-weight: 600;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a {
  margin-left: 15px;
  color: #d1d5db;
  text-decoration: none;
}

/* Responsive */

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  /* Make brand & contact full width */
  .footer-container .footer-col:nth-child(1),
  .footer-container .footer-col:nth-child(4) {
    grid-column: span 2;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer-col h4 {
    font-size: 15px;
  }

  .footer-col ul li a {
    font-size: 13px;
  }
}
/* Client Section */

.clients-hero {
    position: relative;
    height: 35vh;
    background:#0d2233;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.client-hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}

.client-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}

.client-hero-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}
.client-section {
    padding: 80px 20px;
    text-align: center;
}

.client-title {
    font-size: 36px;
    font-weight: 800;
    color: #002B5B;
    margin-bottom: 50px;
}

/* Grid Layout */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
}

/* Individual Client Box */
.client-item {
    text-align: center;
    transition: 0.3s ease;
    padding: 10px;
}

.client-item img {
    width: 150px;
    height: 100px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: 0.3s ease;
}

.client-item p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #1B1B1D;
}

/* Hover animations */
.client-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.client-item:hover p {
    color: #FFB100;
}

.client-testimonials {
    padding: 60px 0;
  }
  
  .section-title {
    text-align: start;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a1f36;
    font-weight: 700;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    border-left: 4px solid #1e88e5; /* blue accent */
  }
  
  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 28px rgba(0,0,0,0.12);
  }
  
  .testimonial-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #3b3b3b;
  }
  
  .testimonial-card cite {
    display: block;
    margin-top: 12px;
    font-style: normal;
    color: #1e88e5;
    font-weight: 600;
  }
  
  /* CTA Section */
  .cta-section {
    padding: 70px 0;
  }
  
  .cta-box {
    text-align: center;
    background: #1e88e5;
    color: #fff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.18);
  }
  
  .cta-box h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  /* ============================
   MOBILE VIEW (max-width: 768px)
   ============================ */
@media (max-width: 768px) {

    .section-title {
      font-size: 26px;
      margin-bottom: 30px;
    }
  
    .testimonial-grid {
      grid-template-columns: 1fr; /* One column on mobile */
      gap: 18px;
    }
  
    .testimonial-card {
      padding: 20px;
      border-radius: 14px;
    }
  
    .testimonial-card p {
      font-size: 15px;
      line-height: 1.6;
    }
  
    .testimonial-card cite {
      font-size: 14px;
    }
  
    /* CTA BOX MOBILE */
    .cta-box {
      padding: 30px 20px;
      border-radius: 14px;
    }
  
    .cta-box h2 {
      font-size: 24px;
      line-height: 1.3;
    }
  
    .cta-box p {
      font-size: 16px;
      margin-bottom: 20px;
    }
  
  }
  
  /* ============================
     VERY SMALL DEVICES (max-width: 480px)
     ============================ */
  @media (max-width: 480px) {
  
    .section-title {
      font-size: 22px;
    }
  
    .testimonial-card {
      padding: 18px;
    }
  
    .cta-box h2 {
      font-size: 22px;
    }
  
    .cta-box p {
      font-size: 15px;
    }
  }
  
  
/* catalouge Section */
.catalogue-hero {
background: #0d2233;
height: 35vh;
padding: 80px 20px;
text-align: center;
color: #fff;
}

.catalogue-hero h1 {
font-size: 42px;
font-weight: 800;
margin-bottom: 10px;
font-family: 'Montserrat', sans-serif;
}

.catalogue-hero p {
font-size: 18px;
opacity: 0.9;
}

/* Catalogue Grid */
.catalogue-section {
padding: 60px 20px;
background: #f8f9fb;
}

.catalogue-grid {
display: grid;
gap: 30px;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalogue-card {
background: #fff;
padding: 25px;
border-radius: 16px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
opacity: 0;
animation: fadeUp 0.8s forwards;
}

.catalogue-card img {
width: 85px;
margin-bottom: 20px;
}

.catalogue-card h3 {
font-size: 20px;
font-weight: 700;
color: #002B5B;
margin-bottom: 10px;
}

.catalogue-card p {
font-size: 15px;
color: #444;
margin-bottom: 20px;
line-height: 1.5;
}

.catalogue-card:hover {
transform: translateY(-8px);
box-shadow: 0 10px 22px rgba(0,0,0,0.2);
}

/* Download Button */
.download-btn {
background: #FFB100;
color: #1B1B1D;
padding: 12px 20px;
border-radius: 25px;
font-weight: 700;
display: inline-flex;
align-items: center;
gap: 8px;
text-decoration: none;
transition: background 0.3s ease, transform 0.2s ease;
box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.download-btn:hover {
background: #e99c00;
transform: translateY(-3px);
}

.pdf-icon {
font-size: 20px;
}

/* Fade Up Animation */
@keyframes fadeUp {
0% { opacity: 0; transform: translateY(25px); }
100% { opacity: 1; transform: translateY(0); }
}
 /* contact Section */
   .contact-hero {
    background:#0d2233;
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f3f3f3;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color:#0d2233;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}


.hero-buttons {
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    background-color: #e53e3e;
    color: #fff;
    border: none;
    padding: 15px 30px;
    margin: 0 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #c53030;
}
/* =================contact==================*/
.contact-section {
padding: 60px 5%;
background: #fff;
}
.contact-container {
display: flex;
gap: 50px;
flex-wrap: wrap;
justify-content: space-evenly;                
}
.contact-hero-content {
  position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}
.contact-hero-content h1 {
  font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}
.contact-hero-content p {
   font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}
.contact-form {
          flex: 1;
      }
      .contact-form h3 {
          color: #0d2233;
          font-size: 40px;
      }
      .contact-form input,
      .contact-form textarea {
          width: 100%;
          padding: 14px;
          margin: 10px 0;
          border: 1px solid #ccc;
          border-radius: 6px;
      }
      .contact-form textarea {
          height: 150px;
      }
      .btn {
          background: rgba(30, 255, 0, 0.422);
          color: rgb(0, 0, 0);
          padding: 12px 25px;
          border: none;
          cursor: pointer;
          border-radius: 6px;
          font-size: 16px;
      }
      
      /* Right Info */
      .contact-info {
        background: rgba(30, 255, 0, 0.234);
        padding: 30px 35px;
        border-radius:60px;
        box-shadow:0 4px 20px rgba(0,0,0,0.08);
        border:1px solid #f9fafb;
        flex:1;
      }
      .contact-info h2 {
          margin-bottom: 10px;
      }
      .info-list p {
          margin: 10px 0;
      }
      @media (max-width: 768px) {

  .contact-section {
    padding: 40px 6%;
  }

  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-form h3 {
    font-size: 28px;
    text-align: center;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    font-size: 15px;
  }

  .btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
  }

  .contact-info {
    padding: 25px;
    border-radius: 30px;
    text-align: center;
  }

  .contact-info h2 {
    font-size: 22px;
  }

  .info-list p {
    font-size: 14px;
    margin: 8px 0;
  }
}


  /* About Hero (same style as catalogue hero) */
 /* Modern Hero */
.about-hero-modern {
    position: relative;
    height: 35vh;
    background:#0d2233;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.about-hero-content-modern {
    position: relative;
    text-align: center;
    color: #fff;
    padding: 20px;
    animation: fadeUp 1s ease-out;
}

.about-hero-content-modern h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 1px;
}

.about-hero-content-modern p {
    font-size: 20px;
    opacity: 0.9;
    margin-top: 10px;
}
/* Split Intro Section */
.intro-split {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    gap: 50px;
}

.intro-left {
    flex: 1;
}

.intro-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #002B5B;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-top: 15px;
    color: #444;
}

.intro-right {
    flex: 1;
}

.intro-right img {
    display: flex;
  padding-left: 100px;
    width: 60%;
    border-radius: 18px;

}
/* Expertise Modern */
.expertise-modern {
    padding: 70px 20px;
    text-align: center;
    background: #f8fafc;
}

.expertise-modern h2 {
    font-size: 34px;
    color: #002B5B;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
    gap: 20px;
    margin-top: 40px;
}

.exp-card {
    padding: 22px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    font-size: 18px;
    transition: 0.3s ease;
    font-weight: 600;
}

.exp-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
    background: #002B5B;
    color: #fff;
}
/* Modern Manufacturing */
.manufacturing-wide {
    padding: 80px 5%;
    text-align: center;
}

.manufacturing-wide h2 {
    font-size: 34px;
    color: #002B5B;
}

.manufacturing-wide p {
    max-width: 800px;
    margin: auto;
    font-size: 17px;
    color: #444;
    margin-top: 10px;
}

.manufacturing-img-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.manufacturing-img-row img {
    width: 48%;
    border-radius: 15px;
}
@media (max-width: 768px) {

  /* ===== About Hero ===== */
  .about-hero-modern {
    height: 25vh;
  }

  .about-hero-content-modern h1 {
    font-size: 28px;
  }

  .about-hero-content-modern p {
    font-size: 16px;
  }

  /* ===== Intro Split Section ===== */
  .intro-split {
    flex-direction: column;
    padding: 50px 6%;
    gap: 30px;
    text-align: center;
  }

  .intro-left h2 {
    font-size: 26px;
  }

  .intro-left p {
    font-size: 15px;
  }

  .intro-right img {
    width: 100%;
    padding-left: 0; /* remove desktop padding */
    margin-top: 10px;
  }

  /* ===== Expertise Section ===== */
  .expertise-modern {
    padding: 50px 10px;
  }

  .expertise-modern h2 {
    font-size: 26px;
  }

  .exp-grid {
    grid-template-columns: 1fr; /* single column on mobile */
  }

  .exp-card {
    font-size: 16px;
    padding: 18px;
  }

  /* ===== Manufacturing Section ===== */
  .manufacturing-wide {
    padding: 50px 6%;
  }

  .manufacturing-wide h2 {
    font-size: 26px;
  }

  .manufacturing-wide p {
    font-size: 15px;
  }

  .manufacturing-img-row {
    flex-direction: column;
  }

  .manufacturing-img-row img {
    width: 100%;
  }
}
