* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  color: #222;
   font-family: 'IBM Plex Sans', sans-serif;
}

/* 🔷 Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* 🔷 Top Bar */
.top-bar {
   
  background: #102A43;
  color: #fff;
  font-size: 16px;
}

.top-content {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
}
/* 🔷 Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #0b2c4d;
}

.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #222222;
  font-weight: 500;
}

.nav a:hover {
  color: #0b2c4d;
}

/* 🔷 Carousel */
.carousel {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slides {
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-repeat: no-repeat; 
  background-color: #f6f8fb; 
    background-position: center top; 
  opacity: 0;
  transition: opacity 1s ease;
  cursor: pointer;
}

.slide.active {
  opacity: 1;
   background-size: 100%;
}


.overlay {
  position: absolute;
  bottom: 15%;
  left: 10%;
  background: rgba(12, 133, 238, 0.88);  /* deep navy blue */
  color: #ffffff;
  padding: 35px 45px;
  max-width: 520px;
  border-left: 5px solid #d62828;     /* controlled professional red */
}


.overlay h1 {
  font-size: 36px;        /* slightly reduced = more elegant */
  font-weight: 600;
}

.overlay p {
  font-size: 15.5px;      /* more refined */
  line-height: 1.8;
}

/* 🔷 Controls */
.carousel-controls span {
  position: absolute;
  top: 50%;
  font-size: 50px;
  color: white;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.carousel-controls span:first-child {
  left: 20px;
}

.carousel-controls span:last-child {
  right: 20px;
}
.top-left i {
  margin-right: 6px;
}

.top-right a {
  color: #fff;
  margin-left: 15px;
  font-size: 18px;
  text-decoration: none;
}

.top-right a i {
  font-size: 15px;
}

.top-right a:hover {
  color: #cbd5e1;
}

.quote-btn {
  background: #e63946;
  padding: 6px 14px;
  border-radius: 3px;
  font-weight: 500;
}

.quote-btn:hover {
  background: #c62828;
}
/* Company Profile Section */
.company-profile {
  position: relative;
  padding: 140px 0 120px;
  background: #ffffff;
  overflow: hidden;
}


.bg-text-top {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 150px;
  font-weight: 700;
  letter-spacing: 6px;
  color: rgba(6, 81, 146, 0.045);
  white-space: nowrap;
  pointer-events: none;
}


/* Section Title */
.stats-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;                     /* ⬇ reduced gap */
  margin-bottom: 70px;
}

.stat h3 {
  font-size: 44px;               /* ⬆ larger numbers */
  font-weight: 600;
  color: #082137;
  margin-left: 70px;
}

.stat p {
  font-size: 25px;
  color: #555;
  margin-top: 6px;
  letter-spacing: 0.4px;
}


/* Content Block */
.profile-block {
  display: grid;
  grid-template-columns: 60% 40%;   /* ⬅ weighted layout */
  align-items: center;
  gap: 60px;
}
.profile-image {
  display: flex;
  justify-content: flex-end;       /* ⬅ pushes image to extreme right */
}


.profile-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 2px;
}
.profile-text {
  padding-left: 40px;              /* ⬅ subtle right shift */
}

.profile-text h3 {
      font-family: 'IBM Plex Sans', sans-serif;
  font-size: 34px;                 /* ⬆ bigger */
  font-weight: 700;                /* ⬆ bolder */
  letter-spacing: 1.5px;
  color: #082137;
  margin-bottom: 22px;
}

.profile-text p {
    font-family: 'IBM Plex Sans', sans-serif;
  font-size: 18px;   
  font-weight: 600;              /* ⬆ more readable */
  line-height: 2;                  /* premium spacing */
  color: #3f3f3f;
  margin-bottom: 22px;
}
.section-title {
      font-family: 'IBM Plex Sans', sans-serif;
  font-size: 44px;              /* ⬆ bigger, authoritative */
  font-weight: 700;             /* ⬆ strong but professional */
  color: #082137;
  letter-spacing: 2.5px;        /* executive spacing */
  text-align: center;

  margin-top: 0px;            /* ⬅ brings it BETWEEN ABOUT US */
  margin-bottom: 55px;
}





/* Scroll Animation */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}
/* Product Overview Section */
.product-overview {
  padding: 110px 0 120px;
  background: #ffffff;
}

/* Section Title */
.product-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #082137;
  margin-bottom: 70px;
  text-align: center;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

/* Product Item */
.product-item {
  border-bottom: 2px solid rgba(8, 33, 55, 0.08);
  padding-bottom: 25px;
}


/* Product Info */
.product-info h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-top: 22px;
  color: #082137;
}

.product-info p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 15.5px;
  line-height: 1.9;
  color: #4a4a4a;
  margin-top: 12px;
}
/* Contact Button */
.contact-btn {
  display: inline-block;
  margin-top: 22px;
  padding: 12px 30px;

  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  color: #c1121f;                 /* industrial red */
  border: 2px solid #c1121f;      /* red outline */
  background: transparent;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover – decisive but professional */
.contact-btn:hover {
  background: #c1121f;
  color: #ffffff;
}


/* Phone Number */
.contact-number {
  margin-top: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: #444;
}
.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.top-left a:hover {
  text-decoration: underline;
}
/* Products Section */
.products-section {
  padding: 120px 0 140px;
  background: #f4f6f9;
}

/* Section Title */
.products-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #082137;
  text-align: center;
  margin-bottom: 90px;
}

/* 4-column grid (BIG & PROFESSIONAL) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 per row */
  gap: 55px 40px; /* vertical | horizontal spacing */
}

/* Product Card */
.product-card {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(193, 18, 31, 0.12); /* subtle red */
}



/* Product Name */
.product-card h3 {
  margin-top: 28px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #082137;
}

/* Buttons container */
.product-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.btn-contact {
  padding: 10px 26px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #ffffff;
  background: #c1121f;
  border: 2px solid #c1121f;
  text-decoration: none;
}

.btn-read {
  padding: 10px 26px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #082137;
  border: 2px solid #082137;
  text-decoration: none;
}
@media (max-width: 1199px) {

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }

  .product-img img {
    height: 260px;
  }

  .products-title {
    font-size: 40px;
  }

  .product-card h3 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {

  /* Section spacing */
  .products-section {
    padding: 90px 0 100px;
  }

  /* Single column */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  /* Image size */
  .product-img img {
    height: 240px;
  }

  /* Product title */
  .product-card h3 {
    font-size: 21px;
    margin-top: 22px;
  }

  /* Buttons stack vertically */
  .product-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-contact,
  .btn-read {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {

  .profile-block {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .profile-text {
    padding-left: 0;
    border-right: none;
    text-align: center;
  }

  .profile-image {
    justify-content: center;
  }

  .profile-text h3 {
    font-size: 30px;
  }

  .profile-text p {
    font-size: 17px;
    line-height: 1.9;
  }

  .stats-row {
    flex-direction: column;
    gap: 35px;
    align-items: center;
  }
}
@media (max-width: 1199px) {

  .carousel {
    height: 65vh;
  }

  .overlay {
    max-width: 480px;
    padding: 30px 36px;
  }
  .slide {
      background-size: cover !important;
    background-position: center !important;  /* natural mobile framing */
  }

  .overlay h1 {
    font-size: 32px;
  }

  .overlay p {
    font-size: 15.5px;
  }
}
@media (max-width: 767px) {

  /* Carousel height */
  .carousel {
    height: 55vh;
  }

  /* Overlay box */
  .overlay {
    left: 50%;
    bottom: 12%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 22px 24px;
  }

  /* Text sizes */
  .overlay h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .overlay p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Controls – easier to tap */
  .carousel-controls span {
    font-size: 40px;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .carousel-controls {
    display: none;
  }
}
/* Footer */
.site-footer {
  background: #b1121f;          /* professional industrial red */
  color: #ffffff;
  padding: 90px 0 0;
  font-family: 'IBM Plex Sans', sans-serif;
}


/* Footer layout */
.footer-content {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.5fr;
  gap: 80px;
  padding-bottom: 70px;
}

/* Footer columns */
.footer-col h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1.4px;
  margin-bottom: 22px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
  position: relative;
}

/* Red accent under headings (very subtle) */
.footer-col h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 2px;
  background: #7a0c14;          /* darker red accent */
  margin-top: 8px;
}


/* Company info */
.footer-company p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #f1f5f9;               /* soft white for red background */
  margin-bottom: 18px;
}


.footer-company a {
  color: #ffffff;
  text-decoration: none;
}

.footer-company a:hover {
  color: #c1121f;
}

/* Footer lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #f1f5f9;               /* readable, not harsh white */
  font-size: 15.5px;
  text-decoration: none;
  transition: color 0.3s ease;
}


.footer-col ul li a:hover,
.footer-company a:hover {
  color: #ffe4e6;               /* subtle professional hover */
}


/* Bottom bar */
.footer-bottom {
  background: #8f0e18;          /* deeper red for depth */
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
  color: #f1f5f9;
}

/* Product Logo */
.product-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.product-logo img {
  height: 100px;          /* subtle, premium size */
  opacity: 0.85;
  width: auto;
}

/* Product Name */
.product-name {
  text-align: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.3px;
  color: #082137;
  margin-bottom: 18px;
}

/* Product Card Refinement */
.product-item {
  text-align: center;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(193, 18, 31, 0.12);
}

/* Product Description */
.product-info p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #4a4a4a;
  margin-top: 18px;
}
/* Product short description */
.product-desc {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: #4a4a4a;
  font-family: 'IBM Plex Sans', sans-serif;
}

/* =========================
   PROFESSIONAL MEGA MENU
   ========================= */

/* Base Nav */
/* =========================
   BASE NAVIGATION
   ========================= */

/* =========================
   BASE NAVIGATION
   ========================= */

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Wrapper for Product Center */
.nav-item {
  position: relative;
    display: flex;  
}
.logo img {
  height: 60px;   
   max-width: 180px;     /* professional header height */
  width: 250px;         /* keeps aspect ratio */
  display: block;      /* removes inline spacing bug */
}

/* Product Center trigger */
.mega-trigger {
  position: relative;
  padding-bottom: 6px;
  text-decoration: none;
  color: #222;
  font-weight: 500;
}

/* =========================
   FULL-WIDTH MEGA MENU
   ========================= */

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;

  width:420px;       /* 🔑 prevents overflow */
  background: #ffffff;
  display: none;
  z-index: 9999;

  border-top: 2px solid #c1121f;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;

     width: 100%;
  max-width: 100%;        /* 🔑 prevents overflow */
  background: #ffffff;
  display: none;
  z-index: 9999;

  border-top: 2px solid #c1121f;
  box-sizing: border-box;
}

}
html, body {
  overflow-x: hidden;
}
/* ===============================
   REQUEST QUOTE MODAL (PREMIUM)
   =============================== */

.quote-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 33, 55, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.quote-box {
  background: #ffffff;
  width: 520px;
  max-width: 92%;
  padding: 42px 46px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0,0,0,0.25);
}

.quote-box h2 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #082137;
}

.quote-subtitle {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 14px 0 28px;
}

.quote-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #888;
}

.quote-close:hover {
  color: #c1121f;
}

/* Grid inputs */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-box input,
.quote-box select,
.quote-box textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  font-size: 14.5px;
  font-family: 'IBM Plex Sans', sans-serif;
  outline: none;
}

.quote-box input:focus,
.quote-box select:focus,
.quote-box textarea:focus {
  border-color: #c1121f;
}

.quote-box textarea {
  margin-top: 16px;
  resize: none;
}

.quote-submit {
  margin-top: 26px;
  width: 100%;
  padding: 14px;
  background: #c1121f;
  color: #ffffff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

.quote-submit:hover {
  background: #a10f19;
}

.quote-success {
  display: none;
  margin-top: 18px;
  color: #15803d;
  font-size: 14.5px;
  font-weight: 500;
}

/* Mobile */
@media (max-width: 640px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}
.quote-box input,
.quote-box textarea {
  border-radius: 2px;
}

.quote-box textarea {
  margin-top: 16px;
}






/* Show mega menu on hover (desktop) */
.nav-item:hover .mega-menu {
  display: block;
}

/* =========================
   VERTICAL MENU CONTENT
   ========================= */

.mega-content {
  display: flex;
  flex-direction: column;
  padding: 0;              /* 🔴 IMPORTANT */
}

/* =========================
   MENU ITEMS (BOXED + LINES)
   ========================= */

.mega-content a {
  display: block;
  width: 100%;

  padding: 16px 24px;      /* balanced, professional */

  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: 0.6px;

  color: #082137;
  text-decoration: none;

  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;

  box-sizing: border-box;  /* 🔴 VERY IMPORTANT */
  transition: background 0.25s ease, color 0.25s ease;
}


/* Hover state – calm, industrial, premium */
.mega-content a:hover {
  background: #f8fafc;
  color: #c1121f;
}

/* Product Image */
.product-image img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}
/* Large Image */
.product-img img {
    width: 100%;
  aspect-ratio: 4 / 3;        /* consistent card height */
  background: #ffffff;       /* white padding effect */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  display: block;
  max-width: 100%;
  max-height: 100%;


  object-fit: contain;

}
.product-actions {
  margin-top: auto;   /* 🔑 forces equal card height */
}
.plus {
  margin-left: 4px;
  font-weight: 600;
}
.counter::after {
  content: "+";
  font-size: inherit;      /* 🔑 EXACT same size */
  font-weight: inherit;    /* 🔑 EXACT same weight */
  margin-left: 4px;        /* subtle professional spacing */
}
.counter.no-plus::after {
  content: "";
}
/* =========================
   CONTACT US – ELITE STYLE
   ========================= */

.contact-section {
  padding: 110px 0 120px;
  background: #ffffff;
}

/* Title */
.contact-title {
  text-align: center;
  font-family: 'Rajdhani', 'IBM Plex Sans', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #082137;
  margin-bottom: 90px;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #c1121f;
  margin: 18px auto 0;
}

/* Layout */
.contact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  align-items: start;
}

/* Item */
.contact-item {
  text-align: center;
}

/* Red icons ONLY */
.contact-item i {
  font-size: 34px;
  color: #c1121f;
  margin-bottom: 18px;
}

/* Headings */
.contact-item h3 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #082137;
  margin-bottom: 16px;
}

/* Text */
.contact-item p {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  color: #4b5563;
}

/* Links */
.contact-item a {
  color: #082137;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: #c1121f;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 992px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .contact-title {
    font-size: 36px;
  }
}
/* ===============================
   QUOTE + MAP SECTION
   =============================== */

.quote-map-section {
  padding: 120px 0;
  background: #ffffff;
}

.quote-map-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

/* LEFT – FORM */
.quote-form-area {
  padding-right: 20px;
}

.section-heading {
  font-family: 'Rajdhani', 'IBM Plex Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #082137;
  margin-bottom: 14px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #c1121f;
  margin-top: 10px;
}

.section-subtext {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 34px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 14.5px;
  outline: none;
}

.quote-form input:focus,
.quote-form textarea:focus {
  border-color: #c1121f;
}

.quote-form textarea {
  resize: none;
}

.quote-submit-btn {
  margin-top: 12px;
  padding: 15px;
  background: #c1121f;
  color: #ffffff;
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-submit-btn:hover {
  background: #a10f19;
}

/* RIGHT – MAP */
.map-area {
  width: 100%;
  height: 100%;
  border-left: 1px solid #e5e7eb;
  padding-left: 20px;
}

.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: none;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 992px) {
  .quote-map-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .map-area {
    padding-left: 0;
    border-left: none;
  }
}
/* Sticky Right Contact Button */
.contact-sticky {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    background-color: #ff1a1a; /* Vibrant Professional Red */
    color: #ffffff;
    
    padding: 22px 30px;
    text-decoration: none;
    
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 18px;
    font-weight: 800; /* Extra Bold */
    letter-spacing: 1.5px;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    box-shadow: -4px 8px 25px rgba(0, 0, 0, 0.35);
    
    transition: all 0.3s ease;
    
    z-index: 9999;
}

/* Arrow Styling */
.contact-sticky .arrow {
    font-size: 20px;
    margin-bottom: 6px;
    font-weight: 900;
}

/* Hover Effect */
.contact-sticky:hover {
    background-color: #cc0000;
    padding-left: 35px;
}
/* Top Bar Adjustment for 1000px screens */
@media (max-width: 1100px) {

  .top-bar {
    font-size: 13px;   /* smaller text */
  }

  .top-content {
    padding: 8px 0;    /* reduced height */
  }

  .top-right a {
    font-size: 13px;
    margin-left: 10px;
  }

  .top-right a i {
    font-size: 12px;
  }

  .quote-btn {
    padding: 4px 10px;
    font-size: 12px;
  }

}
@media (max-width: 1400px) {
  html { font-size: 15px; }
}

@media (max-width: 1200px) {
  html { font-size: 14.5px; }
}

@media (max-width: 992px) {
  html { font-size: 14px; }
}

@media (max-width: 768px) {
  html { font-size: 13.5px; }
}

@media (max-width: 576px) {
  html { font-size: 13px; }
}
@media (max-width: 1200px) {
  .top-bar {
    font-size: 14px;
  }

  .top-content {
    padding: 10px 0;
  }

  .top-right a {
    margin-left: 12px;
    font-size: 14px;
  }

  .quote-btn {
    padding: 5px 12px;
  }
}

@media (max-width: 992px) {
  .top-content {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-left,
  .top-right {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-content {
    padding: 6px 0;
  }

  .top-right a {
    margin-left: 8px;
    font-size: 12px;
  }
}
@media (max-width: 1200px) {
  .top-bar {
    font-size: 14px;
  }

  .top-content {
    padding: 10px 0;
  }

  .top-right a {
    margin-left: 12px;
    font-size: 14px;
  }

  .quote-btn {
    padding: 5px 12px;
  }
}

@media (max-width: 992px) {
  .top-content {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-left,
  .top-right {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-content {
    padding: 6px 0;
  }

  .top-right a {
    margin-left: 8px;
    font-size: 12px;
  }
}
/* =================================
   PROFESSIONAL TOP BAR SYSTEM
   ================================= */

@media (max-width: 1200px) {
  .top-bar {
    font-size: 14px;
  }

  .top-content {
    padding: 10px 0;
  }

  .top-right a {
    margin-left: 12px;
    font-size: 14px;
  }

  .quote-btn {
    padding: 5px 12px;
  }
}

@media (max-width: 992px) {
  .top-content {
    flex-wrap: wrap;
    gap: 8px;
  }

  .top-left,
  .top-right {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .top-bar {
    font-size: 12px;
  }

  .top-content {
    padding: 6px 0;
  }

  .top-right a {
    margin-left: 8px;
    font-size: 12px;
  }
}
/* =================================
   PROFESSIONAL HEADER SCALING
   ================================= */

@media (max-width: 1200px) {
  .nav {
    gap: 20px;
  }

  .nav a {
    margin-left: 18px;
  }

  .logo img {
    height: 52px;
  }
}

@media (max-width: 992px) {
  .header-content {
    padding: 14px 0;
  }

  .logo img {
    height: 48px;
  }
}
/* =================================
   PROFESSIONAL SECTION SPACING
   ================================= */

@media (max-width: 1200px) {
  .company-profile,
  .product-overview,
  .products-section,
  .contact-section,
  .quote-map-section {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  .company-profile,
  .product-overview,
  .products-section,
  .contact-section,
  .quote-map-section {
    padding: 70px 0;
  }
}
/* =================================
   PROFESSIONAL GRID CONTROL
   ================================= */

@media (max-width: 1400px) {
  .products-grid {
    gap: 45px 30px;
  }
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contact-sticky {
    font-size: 14px;
    padding: 16px 20px;
  }

  .contact-sticky .arrow {
    font-size: 16px;
  }
}
/* =====================================
   ENTERPRISE MOBILE NAVIGATION SYSTEM
   ===================================== */

/* Hamburger base (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #082137;
  transition: all 0.3s ease;
}


/* =====================================
   MOBILE VIEW
   ===================================== */

@media (max-width: 992px) {

  /* Header alignment */
  .header-content {
    padding: 14px 0;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: 0;

    display: none;

    border-top: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);

    z-index: 2000;   /* ADD THIS */
  }

  .nav.active {
    display: flex !important;
  }


 

  /* Mobile nav links */
  .nav a {
    width: 100%;
    text-align: center;
    padding: 18px 0;
    margin: 0;

    font-size: 15px;
    font-weight: 500;

    border-bottom: 1px solid #f1f5f9;
  }

  .nav a:hover {
    background: #f8fafc;
    color: #c1121f;
  }

  

}


/* =====================================
   PROFESSIONAL HAMBURGER ANIMATION
   ===================================== */

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* =====================================
   PROFESSIONAL MOBILE MEGA MENU
   ===================================== */

@media (max-width: 992px) {

  .mega-menu {
    position: relative;   /* Important for mobile */
    width: 100%;
    max-width: 100%;
    left: 0;
    top: 0;

    border-top: none;
    box-shadow: none;
    background: #f9fafb;  /* subtle professional background */
  }

  .mega-content {
    padding: 10px 0;
  }

  .mega-content a {
    padding: 16px 20px;
    font-size: 15px;
    text-align: left;
  }

}
/* =====================================
   ELITE MOBILE FOOTER SYSTEM
   ===================================== */

@media (max-width: 992px) {

  .footer-content {
    grid-template-columns: 1fr;   /* single column */
    gap: 50px;
    text-align: center;
  }

  .footer-col {
    padding: 0 10px;
  }

  .footer-col h3 {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .footer-col h4 {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .footer-col h4::after {
    margin: 8px auto 0;   /* center underline */
  }

  .footer-company p {
    font-size: 14.5px;
    line-height: 1.8;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14.5px;
  }

  .footer-bottom {
    font-size: 13px;
    padding: 14px 0;
  }

}


/* =====================================
   SMALL MOBILE REFINEMENT
   ===================================== */

@media (max-width: 576px) {

  .site-footer {
    padding: 70px 0 0;
  }

  .footer-content {
    gap: 40px;
  }

  .footer-company p {
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

}
/* =====================================
   ELITE MOBILE PRODUCT OVERVIEW
   ===================================== */

@media (max-width: 992px) {

  .product-overview {
    padding: 80px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;  /* Single column */
    gap: 40px;
  }

  .product-item {
    background: #ffffff;
    padding: 30px 24px;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-bottom: none;
    text-align: center;
  }

  .product-logo img {
    height: 80px;
    margin-bottom: 18px;
  }

  .product-name {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .product-desc,
  .product-info p {
    font-size: 14.5px;
    line-height: 1.8;
    margin-top: 10px;
  }

  .contact-btn {
    margin-top: 18px;
    padding: 10px 24px;
    font-size: 14px;
  }

}


/* =====================================
   SMALL DEVICE REFINEMENT
   ===================================== */

@media (max-width: 576px) {

  .product-item {
    padding: 24px 18px;
  }

  .product-logo img {
    height: 70px;
  }

  .product-name {
    font-size: 18px;
  }

}
/* =====================================
   EXECUTIVE BRAND STATEMENT SECTION
   ===================================== */

.brand-statement {
  padding: 110px 0;
  text-align: center;
  position: relative;

  background: linear-gradient(
    135deg,
    #0f1e2e 0%,
    #13283c 50%,
    #0c1a29 100%
  );

 
}

/* Subtle professional overlay effect */
.brand-statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 40%, rgba(255,255,255,0.05), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,255,255,0.04), transparent 45%);
  pointer-events: none;
}

.brand-statement h1 {
  font-family: 'Rajdhani', 'IBM Plex Sans', sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2.5px; /* slightly tightened */
  line-height: 1.25;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

/* Elegant red underline accent */
.brand-statement h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #c1121f;
  margin: 22px auto 0;
}
@media (max-width: 992px) {

  .brand-statement {
    padding: 70px 20px;
  }

  .brand-statement h1 {
    font-size: 24px;
    letter-spacing: 1.5px;
    line-height: 1.35;
  }

}
.aboutimg {
  display: block;        /* makes margin auto work */
  margin: 0 auto;        /* centers horizontally */
  max-width: 100%;       /* responsive */
  height: auto;          /* maintain ratio */
}






















