

.pantheon-navbar {
  background-color: #ebf2f9;
}

.pantheon-navbar .navbar-brand span {
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
}

.pantheon-navbar .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  margin-left: 1rem;
}

.pantheon-navbar .nav-link:hover,
.pantheon-navbar .nav-link.active {
  color: #ffcc00;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
}


.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.service-img {
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-weight: bold;
  margin-bottom: 30px;
}

.icon-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-box i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 15px;
}

footer {
  background: #212529;
  color: white;
  padding: 20px 0;
}





/* Custom Navbar Styles */
.custom-navbar {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  z-index: 1000;
  min-height: 10px;
  max-height: 60px;
}

.custom-navbar .navbar-brand {
  font-size: 2.2rem;
  color: #3b8ffdfe;
  transition: color 0.3s ease;
}


.custom-navbar .logo-img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
}

.custom-navbar .nav-link {
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  box-sizing:border-box;
  min-height: fit-content;
  max-height: fit-content;
  min-width:max-content;
  min-width:min-content;
  border-radius: 10%;
  justify-content: center;
  margin-left: 30px;

}

.custom-navbar .nav-link:hover,
.custom-navbar .nav-link.active {
  color: #0d6efd;
  border-bottom: 2px solid #0d6efd;
  box-shadow: #333;
  border-radius: 10%;
}

.navbar-toggler {
  border: #555;
  box-sizing: border-box;
}

.navbar-toggler:focus {
  box-shadow: #212529;
}


.hero-section {
  background: linear-gradient(rgba(255, 99, 71, 0), rgba(10,180,180, 0.6)),
              url('img/hero12345.jpg') center center/cover no-repeat;
  padding: 100px 0;
  min-height: 100vh;
}

.hero-section h1,
.hero-section h2,
.hero-section p {
  color: #fff;
}

.hero-section .btn-warning {
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-section .btn-warning:hover {
  background-color: #818399;
  transform: scale(1.05);
}
#services{
  background-color: #e6eef2;
}

#services .card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  #service{
    background-color:whitesmoke;
    padding: 30px;
    border-radius: 25px;

  }

  #services .card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    width: 220px;
    padding: 20px 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
  }

  #services .card:hover {
    transform: translateY(-5px);
  }

  #services .card-img-top {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: block;
  }

  #services .card-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .quote-btn {
    background-color: #007bff;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

  .quote-btn:hover {
    background-color: #0056b3;
  }

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f7fa;
  color: #333;
  line-height: 1.6;
}

/* About Section */
.about-section {
  background-color: white;
  padding: 50px 0;
}

.about-section h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 15px;
  text-align: center;
}

.about-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 10px;
  text-align: justify;
}

/* Reduced card size */
.about-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  height: auto;
  max-width: 350px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  margin: auto;
  text-align: center;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

/* Image inside card */
.about-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Feature List */
.about-section ul {
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
}

.about-section ul li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.about-section ul li i {
  color: #28a745;
  margin-right: 10px;
}

/* Mission & Vision Section */
.bg-light {
  background-color: #f0f4f9 !important;
  padding: 40px 0;
}

.bg-light h3 {
  font-size: 1.5rem;
  color: #004080;
  margin-bottom: 10px;
}

.bg-light p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-card {
    max-width: 100%;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .bg-light h3 {
    font-size: 1.3rem;
  }

  .about-section p {
    font-size: 0.95rem;
    size: 20px;
  }
}



  #why-choose-us {
  background: #f9f9f9;
}

.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 16px;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}


  @media (max-width: 767px) {
    .icon-box {
      margin-bottom: 20px;
    }
  }



/* Guarantee Section Styling */
.guarantee-section {
  background-color:rgb(180, 180, 180);
}

.guarantee-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guarantee-card:hover {
  transform: translateY(-25px);
  box-shadow: 40px 20px 40px rgba(16, 16, 214, 0.08);
}

.guarantee-card .icon i {
  display: inline-block;
}

  /* Responsive */
  @media (max-width: 768px) {
    #services .card {
      width: 45%;
    }
  }

  @media (max-width: 480px) {
    #services .card {
      width: 100%;
    }
  }

  
.contact-section {
  background: linear-gradient(to right, #e0f7fa, #ffffff);
}

.contact-section h2 {
  font-size: 2.5rem;
  color: #003366;
}

.contact-section p {
  font-size: 1rem;
  color: #555;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  box-shadow: none;
}

.form-control:focus {
  border-color: #ffc107;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.btn-warning {
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-warning:hover {
  background-color: #e0a800;
}

.contact-info a {
  color: #000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info i {
  width: 20px;
}

  .address-section {
    background-color: #124f8c;
    color: #fff;
  }

  .address-section .footer-logo {
    width: 100px;
    border-radius: 8px;
  }

  .address-section h5 {
    color: #ffffff;
    font-size: 1.1rem;
  }

  .address-section a {
    transition: color 0.3s ease;
  }

  .address-section a:hover {
    color: #0d6efd;
  }

  .address-section .btn-primary {
    background-color: #0d6efd;
    border: none;
    transition: background-color 0.3s ease;
  }

  .address-section .btn-primary:hover {
    background-color: #0b5ed7;
  }
 .ad-icon{
  width: 40px;
  height: 40px;
 }

  @media (max-width: 768px) {
    .address-section {
      text-align: center;
    }
  }
  .footer-logo {
  width: 60px;   /* Decreased from 100px */
  height: auto;
  border-radius: 8px;
}
body {
  background-color: #5baff9; /* You can use any hex, rgb, or named color */
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

