 body { font-family: 'Roboto', sans-serif; scroll-behavior: smooth; }

    /* Top Banner */
    .top-banner {
      background-color: #1D435F;
      color: #fff;
      text-align: center;
      padding: 8px 0;
      font-size: 0.9rem;
    }

    /* Navbar */
    .navbar { background-color: #fff; color: 1D435F; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .navbar .nav-link { color: #1D435F; font-weight: 500; }
    .navbar .nav-link:hover { color: #4c6273; }

    /* Hero Section */
     .hero {
  background: url('../img/stainless-steel-aldiwanstore.png') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 0 20px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* LEFT SIDE */
.hero-left {
  flex: 1;
  text-align: left;
}

.hero-left h1 {
  
  color: #1D435F;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero-left p {
 
  color: #1D435F;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* FORM BOX */
.hero-form {
  flex: 0.8;
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 10px;
  color: #1D435F;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.hero-form h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #1D435F;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.hero-form textarea {
  height: 80px;
}

/* Custom Button */
.btn-custom {
  background-color: #1D435F;
   color: white;
  border-radius: 5px;
  font-weight: 500;
}
.btn-custom:hover {
  background-color: #163348;
  color: #fff;
}

/* HIDE FORM ON MOBILE */
@media (max-width: 768px) {
  .hero {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-form {
    display: none;
  }

  .hero-left {
    text-align: center;
  }
}



.why-choose-section h2 {
  font-weight: 700;
  color: #1D435F;
  margin-bottom: 20px;
}
.why-choose-section img {
  width: 80%;
  max-width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.why-choose-section .lead {
  color: #555;
  font-size: 1.1rem;
}

/* Feature cards */
.feature-card {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.feature-card i {
  font-size: 40px;
  color: #1D435F;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Desktop spacing */
.mb-6 {
  margin-bottom: 4rem !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .why-choose-section h2 {
    font-size: 1.8rem;
  }
  .feature-card i {
    font-size: 32px;
  }
}


 /* Equipment Supply Section */
.equipment-supply-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.equipment-supply-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1D435F;
    text-align: center;
}

.equipment-supply-section p.lead {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

/* Equipment Cards */
.equipment-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Image on top */
.equipment-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Title & Description */
.equipment-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1D435F;
}

.equipment-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    flex-grow: 1;
}

/* Hover Effect */
.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Buttons Container */
.equipment-buttons {
    gap: 10px;
}

/* Call Button */
.btn-call {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #1D435F;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-call:hover {
    background-color: #163349;
}

/* WhatsApp Button */
.btn-whatsapp {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: #25D366;
    color: #fff;
    font-size: 22px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #1ebe5b;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .equipment-card {
        padding: 20px 15px;
    }
}

@media (max-width: 576px) {
    .equipment-card h5 {
        font-size: 16px;
    }

    .equipment-card p {
        font-size: 15px;
    }

    .btn-call,
    .btn-whatsapp {
        width: 100px;
        height: 100px;
        font-size: 28px;
    }
}




 /* Section Heading */
.who-we-serve-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1D435F;
}

.who-we-serve-section p.lead {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
}

.service-card h5 {
    font-size: 18px;
    font-weight: 600;
    color: #1D435F;
    margin: 0;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive: adjust padding and font size on smaller screens */
@media (max-width: 768px) {
    .service-card {
        padding: 20px 15px;
    }

    .service-card h5 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .service-card {
        padding: 15px 10px;
    }

    .service-card h5 {
        font-size: 14px;
    }
}

    /* Section Headings */
    section h2 { margin-bottom: 50px; font-weight: 700; color: #1D435F; }

    /* Feature Cards */
    .card-custom { border: none; border-radius: 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); text-align: center; padding: 20px; }

    /* Footer */
    .footer {
  color: #1D435F;
  background-color:#f7f7f7;
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid #1D435F;
  
}

.footer .footer-about .logo {
  line-height: 1;
  width: auto; /* let it scale naturally */
  margin-bottom: 15px;
}

.footer .footer-about .logo img {
  max-height: 60px; /* increase height */
  width: auto;      /* keep aspect ratio */
  display: block;
}

.footer .footer-about .logo span {
   color: #1D435F;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
   color: #1D435F;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #1D435F;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
   color: #1D435F;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color:   #1D435F;
  color: white;
}

.footer .copyright p {
  margin-bottom: 0;
}
.footer .copyright a {
   color: white;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.footer-map h4 {
  font-size: 16px;
  font-weight: bold;
  color: #1D435F;
  margin-bottom: 12px;
}

.map-container iframe {
  border-radius: 12px;
  width: 360px;
  height: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.whatsapp-float {
  position: fixed;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  z-index: 1000;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  bottom: 65px; /* default for top of page */
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

