/* Navbar Styling */
.navbar {
      background-color: #ffffff; 
      padding: 1rem 1rem;
      height: 90px;
    }
    .navbar-nav {
      margin: auto; 
      gap: 25px !important;
    }
    .nav-link {
      font-weight: 700 !important; 
      font-size: 16px;
      color: #2f5884 !important; 
      transition: color 0.3s ease;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #6ea638 !important; 
    }
  .btn-warning{
    background-color: #2f5884 !important;
  }
  .btn-warning:hover{
    background-color: #6ea638 !important;
  }
  .logo img{
    height: 91px !important;
    width: 101px !important;
  }
/* Mobile menu styling */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 6px;
    max-height: 80vh;   
    overflow-y: auto;      
  }

  .nav-link {
    display: block;
    padding: 0.7rem 1rem;
    color: #2f5884 !important;
  }

  .nav-link:active {
    color: #6ea638 !important; 
  }
}
/*#heroSlider{*/
/*    margin-top: 5.5rem;*/
/*}*/

/* Hero Slider Section */
.hero-slide {
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  
}
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  /* background: rgba(0, 0, 0, 0.40); */
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  /* background: rgba(0,0,0,0.6); */
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}



.hero-content h6 {
  font-weight: 700 !important;
  font-size: 28px;
  color: #ffffff; /* beige */
  margin-bottom: 10px;
}

.hero-content .company-name {
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 700 !important;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
}

.hero-content .tagline {
  font-size: 20px;
  font-weight: 600 !important;
  color: #ffffff;
  margin-top: 15px;
}


/* ---------------------------------- */
/* ✅ Mobile Responsive Styles */


@media (max-width: 767px) {

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-slide {
    height: 70vh;
  }

  .overlay-cards {
    margin-top: -50px;
  }
  .overlay-cards .card-custom {
    margin-bottom: 15px;
  }
  .about-img img {
  height: 460px !important;
}
}

@media (max-width: 480px) {
  .hero-content {
    width: 100%;
    padding: 10px;
    text-align: center;
  }
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 13px;
  }
  .btn-warning {
    font-size: 14px;
    padding: 8px 15px !important;
    
  }
}


/* About Us Section */
.about-section {
  background: #f8f9fa;
}
.about-section h6{
  color: #6ea638;
}
.about-img {
  position: relative;
}
.text-warn{
  color: #6ea638;
}
.about-img img {
  border-radius: 15px;
  height: 590px ;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #2f5885, #6ea638);
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.experience-badge h3 {
  font-size: 32px;
  margin: 0;
  font-weight: bold;
}

.experience-badge p {
  margin: 0;
  font-size: 14px;
}

/* Image move  */
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
img.vert-move {
    -webkit-animation: mover 1s infinite  alternate;
    animation: mover 1s infinite  alternate;
}
@-webkit-keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}
@keyframes mover {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* Section Title */
.section-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
.section-title span {
  color: #457A31;
}
.section-subtitle {
  font-size: 16px;
  color: #555;
}

/* Service Card */
.services{
  /* background: url(../assets/images/bg.jpeg); */
  background-size: cover;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 5px !important;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: #24357E;
  color: #fff;
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto;
  transition: background 0.3s ease;
}
.service-card:hover .icon-circle {
  background: #457A31;
}

.service-card .btn {
  align-self: center;
}

/* service page  */


   .services-section {
      padding: 80px 20px;
      background-color: #f9f9f9;
    }
    .services-section h2 {
      font-weight: 700;
      color: #2f5884;
    }
    .services-section p.lead {
      color: #6ea638;
      font-weight: 500;
    }
.services-card {
  background: #fff;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.services-card h5 {
  color: #2f5884;
  font-weight: 600;
  margin-top: 10px;
}

.services-card p {
  color: #444;
  font-size: 15px;
}

/* ✅ Service card image style */
.service-img {
  width: 100%;
  height: 240px;          /* Fixed height */
  border-radius: 8px;     /* Rounded corners */
}

  .sub-section-title {
      margin-top: 60px;
      font-weight: 700;
      color: #2f5884;
    }

/* home-banner Section */
.home-banner-section {
  color: #fff;
  border-radius: 12px;
  height: 320px !important;
  background-attachment: fixed;
}
.home-banner-title {
  font-size: 28px;
  font-weight: 700;
}
.home-banner-text {
  font-size: 16px;
  margin-top: 8px;
}
.btn-home-banner {
  background: #ffffff !important;
  color: #2a3978 !important;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-home-banner:hover {
  background: #24357e !important;
  color: #fff !important;
}


/* gallery section  */

.gallery-section {
  background: #f9f9f9;
}

.gallery-card {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
}

.gallery-img {
  width: 100%;
  height: 220px; 
  object-fit: cover; 
  border-radius: 10px;
}

.gallery-card h5 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #24357E;
  font-weight: 600;
}


/* footer section css */
.footer-section {
  background: #111;
  color: #ddd;
}

.footer-logo {
    width: 143px;
    height: 110px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #457a31;
  margin-top: 6px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #457a31;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-contact i {
  margin-right: 8px;
  color: #ffffff;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin-right: 12px;
  font-size: 20px;
  color: #ffffff;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #374374;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
  color: #ffffff;
}

/* Mobile responsive */
@media (max-width: 576px) {
  .footer-title {
    font-size: 16px;
  }
  .footer-text,
  .footer-contact li,
  .footer-links li a {
    font-size: 13px;
  }
  .social-icons a {
    font-size: 18px;
    margin-right: 10px;
  }
}

/* footer section css */

.footer-top-banner {
  background: linear-gradient(rgba(199, 255, 208, 0.7), rgba(233, 255, 245, 0.7)),
              url("../assets/images/footer-banner.jpg") center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  margin-top: 60px; /* footer ke upar gap */
}

.footer-banner-content {
  max-width: 600px; /* content ka width control */
  text-align: left; /* left align */
}

.footer-banner-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000000;
}

.footer-banner-text {
  font-size: 18px;
  margin-bottom: 25px;
  color: #000000;
}


/* breadcrumb css  */

.breadcrumb-section {
   
  padding: 210px 0 30px;

}

.breadcrumb-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #ffffff; 
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #ffffff !important; 
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff !important;
}

/* Vision mission css  */

.vmo-section {
  background: #fdfdfd;
}

.vmo-section .section-title {
  font-size: 2rem;
  font-weight: 700;
}

.vmo-section .section-title span {
  color: #198754;
}

.vmo-card {
  border-radius: 15px;
  transition: all 0.3s ease;
}

.vmo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.vmo-center img {
  height: 350px;
  width: 370px;
  object-fit: cover;
  border-radius: 15px;
}

/* service section  */

.service-section {
  background: #f8f9fa;
}

.service-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2f5885;
}

.service-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

.service-section img {
  max-height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

/* Our network section  */

.our-network {
  background: #f8f9fa;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.section-subtitle {
  color: #555;
  font-size: 1.1rem;
}

.network-block {
  margin-bottom: 50px;
}

.network-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #355f7e;
}

.map-container {
  position: relative;
  display: inline-block;
  max-width: 100%;
}

.map-img {
  width: 550px;
  height: 450px;
  border: 3px solid #ddd;
  border-radius: 10px;
}

.dot {
  position: absolute;
  width: 15px;
  height: 15px;
  background: gold;
  border-radius: 50%;
  box-shadow: 0 0 10px gold;
  transform: translate(-50%, -50%);
}

/* why choose us  */
.choose-card {
  border-radius: 12px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}
.choose-card h5{
  color: #374374 !important;
  font-weight: 700 !important;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* contact page  */

.contact-card {
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.contact-card h6 {
  font-weight: 600;
}
.contact-card p {
  font-size: 0.95rem;
  color: #555;
}

form .form-control,
form .form-select {
  border-radius: 8px;
}

.btn-primary {
  border-radius: 30px;
  font-weight: 600;
}
