body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
}


/* =============================
   HEADER BASE
============================= */
.site-header {
  background: #0b2e59;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

/* =============================
   DESKTOP NAV
============================= */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
}


.nav-menu ul {
  display: flex;
  gap: 20px; /* space between each link */
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu ul li {
  display: inline-block; /* make links horizontal */
}


.nav-menu a:hover {
  color: #38bdf8;
}

.btn-quote {
  background: #ff6e00;
  padding: 9px 16px;
  border-radius: 4px;
  font-weight: 600;
}

/* =============================
   BURGER BUTTON
============================= */
.burger {
  display: none; /* hidden on desktop */
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 22px;
  position: relative;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

/* Burger → Close animation */
.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* =============================
   MOBILE MENU (≤ 992px)
============================= */
@media (max-width: 992px) {

  /* Show burger on mobile */
  .burger {
    display: flex;
  }

  /* Slide-in mobile menu */
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;               /* slide from left */
    width: 250px;
    height: 100vh;
    background: #0b2e59;
    transform: translateX(-100%);  /* hidden initially */
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-top: 80px; /* space for header */
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);  /* show when active */
  }

  /* Mobile menu links */
  .nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    width: 100%;
  }

  .nav-menu ul li {
    width: 100%;
  }

  .nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    padding: 12px 20px;
    display: block;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: #38bdf8;
    color: #0b2e59;
    border-radius: 6px;
  }

  /* Prevent scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}


.hero, .page-hero {
  background: #f4f4f4;
  padding: 60px 20px;
  text-align: center;
}

.hero, .page-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  color: white;
  padding: 80px 20px;
  text-align: center;
}

.hero-overlay, .page-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* dark overlay for contrast */
  z-index: 1;
}
.hero-content h1{
  margin-left: 20px;
  color:#f4f4f4;
}
.hero-content p{
    margin-left: 20px;
}
@media (min-width: 820px) {
 .hero-content h1,p{
  margin-left: 20px;
}
}

.hero-content, .page-hero h1, .page-hero p {
  position: relative;
  z-index: 2;
}

/* 


/* Primary Button Styles */
.btn-primary {
  background-color: #0077cc; /* Indigo / primary color */
  color: #FFFFFF; /* White text */
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.btn-primary:hover {
  background-color: #104484; /* Darker Indigo on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  background-color: #0b2e59; /* Even darker when pressed */
  transform: translateY(0);
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:focus {
  outline: 2px solid #C7D2FE; /* Light indigo focus ring */
  outline-offset: 2px;
}





.quote-form {
  background: #f9f9f9;
  padding: 60px 20px;
}



/* ==============================
   CARDS SECTION
============================== */
/* =========================
   CARDS GRID
========================= */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 36px;
  max-width: 1200px;      /* keeps layout centered */
  margin: 70px auto;      /* centers grid */
  padding: 0 20px;        /* safe spacing on edges */
}



/* =========================
   CARD
========================= */

.card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  color: #1f2933;
  padding: 20px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}


/* .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
} */


.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(56,189,248,0.15),
    rgba(11,46,89,0.15)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(11,46,89,0.2);
}



/* =========================
   CARD IMAGE
========================= */

/* .card-img {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover img {
  transform: scale(1.1);
} */

.card-img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0b2e59;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 16px;
}


/* =========================
   ICON OVERLAY
========================= */

.card h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0b2e59;
  margin-bottom: 10px;
  text-align: center;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #4b5563;
  margin-bottom: 18px;
  text-align: center;
}

.card-cta {
  margin-top: auto; /* pushes CTA to bottom */
  font-size: 0.9rem;
  font-weight: 600;
  color: #0b2e59;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
  justify-content: center;
}

.card:hover .card-cta {
  gap: 12px;
  color: #ff6e00;
}


.card {
  opacity: 0;
  transform: translateY(30px);
}

.card.show {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}



/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .cards {
    grid-template-columns: 1fr;
  }
}
.about-content h2 {
  margin-top: 40px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #e63946;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.feature-box {
  background: #f7f7f7;
  padding: 20px;
  border-radius: 8px;
}


.list {
  list-style: square;
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
}

.form-success {
  display: none;
  color: green;
  margin-top: 15px;
}


.container-industrial {
  max-width: auto;
  margin: auto;
  padding:  20px;
}


.container-industrial h2 {
  margin-left: 30px;
}
.container-industrial p{
  margin-left: 30px;
}



/* =========================
   FOOTER BASE STYLES
========================= */

.site-footer {
  background: #0b2e59 ;
  color: #cbd5e1;
  padding: 60px 20px 25px;
  font-family: inherit;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* =========================
   FOOTER COLUMNS
========================= */

.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  position: relative;
  text-decoration: none;
}

.footer-col h4::after {
  content: "";
  display: block;
  background: #38bdf8;
  margin-top: 6px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #cbd5e1;
}

/* =========================
   FOOTER LINKS
========================= */

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #38bdf8;
  padding-left: 4px;
}




/* =========================
   CONTACT INFO
========================= */

.footer-contact span {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #38bdf8;
  text-decoration: none;
}

/* =========================
   FOOTER BOTTOM
========================= */


.footer-bottom {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically if needed */
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: #94a3b8;
  text-align: center; /* fallback */
}


/* =========================
   RESPONSIVE DESIGN
========================= */

/* Tablets */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .site-footer {
    padding: 45px 16px 20px;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-col ul li a:hover {
    padding-left: 0;
  }
}




.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #38bdf8;
  min-width: 18px;
  margin-top: 3px;
}

.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #38bdf8;
}


.about-features{
   max-width: auto;
  margin: auto;
  padding:  20px;
}

.check-list{
  list-style: none;
  padding-left: 30px;
}

.about-content a {
  margin-left: 30px;
}


/* ==============================
   QUOTE FORM STYLING
============================== */

/* Container & heading */
.quote-page h1, .quote-page h2 {
  margin-left: 20px;        /* heading left padding */
  font-size: 24px;          /* smaller font size */
  color: #005fa3;
}

/* Main form container */
.quote-page main {
  max-width: 800px;         /* smaller form width */
  margin: 30px auto;        /* center horizontally */
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Form fields */
.quote-form .form-group {
  margin-bottom: 15px;
}

.quote-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #0b2e59;
  font-size: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  transition: border 0.3s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #38bdf8;
  outline: none;
}

/* Submit button */
.quote-form button.btn-primary {
  background: #0077cc;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button.btn-primary:hover {
  background: #005fa3;
}

/* Success message */
.form-success {
  display: none;
  color: green;
  margin-top: 15px;
  font-weight: 500;
  font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-page main {
    margin: 20px;
    padding: 15px;
  }

  .quote-page h1, .quote-page h2 {
    margin-left: 20px;
    font-size: 20px;
  }
}




/* =========================
   FORM ANIMATIONS
========================= */

/* Fade + slide form on load */
.quote-form {
  animation: formFadeUp 0.7s ease-out both;
}

@keyframes formFadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Input focus animation */
.form-group input,
.form-group select,
.form-group textarea {
  transition: 
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}

/* Lift + glow on focus */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #0b2e59;
  box-shadow: 0 0 0 3px rgba(11, 46, 89, 0.15);
  transform: translateY(-1px);
}

/* Button hover animation */
.btn-primary {
  transition: 
    background-color 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* Button click feedback */
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* Optional: field group stagger effect */
.form-group {
  animation: fieldFade 0.6s ease forwards;
  opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.15s; }
.form-group:nth-child(3) { animation-delay: 0.2s; }
.form-group:nth-child(4) { animation-delay: 0.25s; }
.form-group:nth-child(5) { animation-delay: 0.3s; }
.form-group:nth-child(6) { animation-delay: 0.35s; }

@keyframes fieldFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}








/* NAV */
.nav-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background: #0b2e59;
    transform: translateX(-100%);
    transition: 0.4s;
    padding-top: 80px;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
  }

  .burger {
    display: block;
  }
}


@media (max-width: 768px) {
  /* mobile + tablet */
}


