
/* Optional: add subtle background to body */
body {
  background: #ffffff;
}

.btn-primary {
  background-color: var(--main-color) !important;
  border-color: var(--main-color) !important;
}

.btn-outline-primary {
  color: var(--main-color) !important;
  border-color: var(--main-color) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--main-color) !important;
  color: white !important;
}
.navbar-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.custom-logo img {
  max-height: 40px !important;
  width: auto !important;
}

    .navbar-custom {
      background-color: var(--main-color) !important;
    }
    .navbar-custom .nav-link, .navbar-custom .navbar-brand {
      color: #fff;
      font-weight: bold;
    }
    .navbar-custom .nav-link:hover {
      color: #ffe5b4;
    }
    .hero-section {
      background: linear-gradient(to right, var(--main-color) !important;, #ff8800);
      padding: 30px 0;
      color: #fff;
      text-align: center;
    }
    .hero-section h1 {
      font-size: 2.5rem;
    }
    .hero-section p {
      font-size: 1.25rem;
    }
    .feature-box i {
      font-size: 3rem;
      color: var(--main-color) !important;;
    }
    .cta-section {
      background-color: var(--main-color) !important;;
      color: white;
      padding: 60px 0;
      text-align: center;
    }
    .cta-section a {
      background-color: #fff;
      color: var(--main-color) !important;;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 30px;
      text-transform: uppercase;
    }
	.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.heroSwiper {
  height: 100%;
}

.heroSwiper .swiper-slide {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* darken the slide images */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding: 20px;
  text-align: center;
}

.hero-content {
  color: #fff;
  z-index: 3;
  max-width: 700px;
}
.latest-blogs .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--main-color) !important;;
}

.latest-blogs .card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--main-color) !important;;
}

.latest-blogs .card-text {
  font-size: 0.95rem;
  color: #555;
}

.latest-blogs .btn-outline-primary {
  border-color: var(--main-color) !important;;
  color: var(--main-color) !important;;
}

.latest-blogs .btn-outline-primary:hover {
  background-color: var(--main-color) !important;;
  color: white;
}
.contact-section {
  max-width: 1200px;
  margin: 30px auto;
  padding: 5px 5px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-map,
.contact-form {
  flex: 1;
  min-width: 340px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
}

.contact-form iframe {
  width: 100%;
  height: 540px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-top {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.contact-info-box {
  flex: 1;
  min-width: 150px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.contact-info-box h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #007bff;
}

.contact-info-box p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
	  
   @keyframes glam-slide-in {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
 .gallery-section .swiper {
    padding: 20px 0;
  }

  .swiper-slide {
    display: flex;
    justify-content: center;
  }

h2.effect {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  background: linear-gradient(to right, var(--main-color), #3f3f3f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  animation: glam-slide-in 0.8s ease-out forwards;
  opacity: 0;
  padding-bottom: 10px;
  margin: 30px auto;
  position: relative;
  flex-wrap: wrap;
}
 
/* Wrapper for centering */
.effect-wrapper {
  text-align: center;
  position: relative;
}

h2.effect::before {
   content: "🌟"; /* You can swap for FontAwesome */
  font-size: 1.5rem;
  color: var(--main-color) !important;;
}

h2.effect::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--main-color), #3f3f3f);
  border-radius: 2px;
  margin: 10px auto 0 auto;
  transition: width 0.3s ease;
}

h2.effect:hover::after {
  width: 100px;
  background: linear-gradient(to right, var(--main-color), #3f3f3f);
}

.footer-custom h5 {
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-custom a {
  text-decoration: none;
}
.footer-custom a:hover {
  text-decoration: underline;
}
.footer-custom ul {
  padding-left: 0;
  list-style: none;
}
