.navbar {
  background: #fff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 10;
  padding: 15px 0;
}
.navbar-brand img {
  width: 250px;
}
.nav-link {
  color: #000;
  font-weight: 500;
  margin: 0 10px;
}
.nav-link:hover {
  color: #28a745;
}





/* ==== FIX MOBILE VIEW - HERO CAROUSEL ==== */

@media (max-width: 768px) {
  #heroCarousel {
    min-height: auto !important;
  }
  
  .carousel-inner {
    min-height: 65vh !important;           /* much better than fixed 500px */
    background: none !important;           /* remove harsh black/white split */
  }
  
	
	
	
  .carousel-item {
    min-height: 65vh;
  }
  
  .banner-curve,
  .hero-overlay.banner-curve {
    height: 65vh !important;
    object-fit: cover;
  }
  
  .carousel-item img {
    height: 65vh !important;
    object-fit: cover !important;
  }
  
  /* Center text properly on mobile */
  .carousel-caption {
    top: 50% !important;
    transform: translateY(-50%) !important;
    bottom: auto !important;
    padding: 20px !important;
  }
  
  .carousel-caption h1 {
    font-size: 2rem !important;           /* was too big */
    line-height: 1.2 !important;
  }
  
  .carousel-caption .lead {
    font-size: 1rem !important;
    margin-bottom: 20px !important;
  }
  
  .carousel-caption .btn {
    font-size: 0.9rem !important;
    padding: 12px 30px !important;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .carousel-inner,
  .carousel-item,
  .banner-curve,
  .hero-overlay.banner-curve,
  .carousel-item img {
    height: 75vh !important;
  }
  
  .carousel-caption h1 {
    font-size: 1.7rem !important;
  }
  
  .carousel-caption .lead {
    font-size: 0.95rem !important;
  }
}

/* Remove the forced linear gradient that breaks mobile */
.carousel-inner {
  background: none !important;
}

.hero-overlay {
  position: absolute;                 /* sit on top of the image */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;                       /* cover full slide */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 100%
  );
  z-index: 1;                         /* above image */
}



.carousel-caption {
  z-index: 2;                          /* keep text above overlay */
}




/* Buttons */
.btn-custom-red {
  background-color: #c0392b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-custom-red:hover {
  background-color: #a93226;
  transform: translateY(-3px);
}

.btn-custom-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-custom-outline:hover {
  background-color: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* make arrows white */
}


/* Right column with full green background */

/* Contact column (keeps your original look) */
.contact-col {
  position: absolute;
  background: #6bbd45;
  color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 0 0 0 40px;
  margin-bottom: -25px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Telephone icon (circle) */
.contact-col i.bi {
  background: #fff;
  color: #6bbd45;
  border-radius: 50%;
  padding: 8px;
  font-size: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 10px;
}

/* Ensure the link uses inherited colors and no bootstrap override */
.contact-col .contact-link {
  color: inherit !important;
}

/* Inner text stack (tight line-height and small gap) */
.contact-col .contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px; /* small gap between lines */
  line-height: 1; /* tighten spacing */
  text-align: left; /* left align inside the small area */
}

/* Smaller label */
.contact-col .contact-text small {
  display: block;
  margin: 0;
  color: rgba(0, 0, 0, 0.85); /* dark text on green background */
  font-size: 12px;
  line-height: 1;
}

/* Phone number (bold/white) */
.contact-col .contact-text strong {
  display: block;
  margin: 10px;
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

/* Optional: reduce left padding so it doesn't overflow at small widths */
@media (max-width: 1199px) {
  .contact-col {
    right: 0;
  }
  .contact-col .contact-text small {
    font-size: 11px;
  }
  .contact-col .contact-text strong {
    font-size: 15px;
  }
}

#pageContent {
  transition: margin-right 0.3s ease-in-out;
}

/* When offcanvas is shown */
.offcanvas.show ~ #pageContent {
  margin-right: 280px; /* same as offcanvas width */
}

/* Instead of .custom-dropdown */
.dropdown-menu {
  background-color: #6bbd45;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}
.dropdown-menu .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}
.dropdown-menu .dropdown-item:hover {
  background-color: #5aa03a;
  color: #fff;
  border-radius: 4px;
}

/* Custom dropdown styling (desktop) */
.custom-dropdown {
  background-color: #6bbd45;
  border-radius: 8px;
  padding: 8px 0;
  border: none;
  min-width: 200px;
}
.custom-dropdown .dropdown-item {
  color: #fff;
  font-weight: 500;
  padding: 10px 15px;
  transition: background 0.2s ease-in-out;
}
.custom-dropdown .dropdown-item:hover {
  background-color: #5aa03a;
  color: #fff;
  border-radius: 4px;
}

/* Offcanvas: full green, centered links */
.offcanvas-green {
  background: #6bbd45;
  color: #fff;
  text-align: center;
}
.offcanvas-green .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}
.offcanvas-green .offcanvas-title {
  color: #fff;
  font-weight: 600;
}

.offcanvas-green .nav-link,
.offcanvas-green .toggle {
  color: #fff;
  font-weight: 700;
  padding: 14px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  width: 100%;
  text-align: center;
}
.offcanvas-green .nav-link:hover,
.offcanvas-green .toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.offcanvas-green .collapse {
  background: #5aa63b;
}
.offcanvas-green .collapse .sub-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}
.offcanvas-green .collapse a {
  color: #fff;
  display: block;
  padding: 10px 0;
  font-size: 14px;
  text-decoration: none;
}
.offcanvas-green .collapse a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.offcanvas-green .toggle i {
  margin-left: 0.4rem;
  font-size: 0.9rem;
  vertical-align: middle;
}

/*==== Mobile Layout ==============*/

/* On mobile - make dropdown full width */
@media (max-width: 991px) {
  .custom-dropdown {
    width: 100%;
    border-radius: 0;
  }
  .custom-dropdown .dropdown-item {
    padding: 12px 20px;
  }
}

@media (max-width: 991px) {
  .contact-col {
    display: none;
  }
  .mobile-contact {
    display: block;
    margin: 10px 15px;
  }

  .mobile-contact a {
    display: block;
    width: 100%;
    background: #6bbd45;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
  }
  .mobile-contact a:hover {
    background: #5aa63c; /* darker green on hover */
    color: #fff;
  }
  .navbar-brand {
    padding-left: 50px;
  }
}

@media (min-width: 992px) {
  .mobile-contact {
    display: none;
  }
}

/* Desktop dropdown on hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* =================== Video Banner =================== */
.video-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* full screen height */
  overflow: hidden;
}

.video-banner .video-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay (dark tint) */
.video-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}

/* Centered content */
.video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Video Banner Button – Clean Version */
.video-btn {
  background: #f47920 !important;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.video-btn:hover {
  background: #9ccb3b !important;
  transform: scale(1.05);
  color: #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .video-banner {
    height: 60vh;
  }
  .video-btn {
    padding: 12px 28px;
    font-size: 1rem;
  }
}

/*==========================about Section===========================================*/
/* Box wrapper */
/*.boxed-wrapper {
 
  border-radius: 15px;
  padding: 40px 35px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}*/

/* Optional hover effect */
.boxed-wrapper:hover {
  transform: translateY(-5px);
}

/* Paragraph */
.boxed-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

/* Heading */
.boxed-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #231f20;
  line-height: 1.4;
}
.boxed-title span {
  color: #9ccb3b; /* Theme green */
  font-weight: 800;
}

/* Button */
.boxed-btn {
  background: #81c341;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.boxed-btn:hover {
  background: #5aa03a;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .boxed-title {
    font-size: 1.8rem;
    text-align: center;
  }
  .boxed-text {
    text-align: center;
    margin-bottom: 20px;
  }
  .boxed-wrapper {
    padding: 30px 22px;
  }
}

/*=================Blog==========================*/

/* Section Title */
.section-title {
  font-weight: 700;
  font-size: 2rem;
  text-transform: uppercase;
}

.section-title .highlight {
  color: #81c341;
}

/* Blog Cards */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-img {
  height: 220px;
  object-fit: cover;
}

/* Blog Body */
.blog-title {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.blog-date {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 0.5rem;
}

.blog-excerpt {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

/* Button */
.blog-btn {
  background: #f47920;
  color: #fff;
  border-radius: 50px;
  font-weight: bold;
  padding: 0.6rem 1.6rem;
  transition: background 0.3s ease;
}

.blog-btn:hover {
  background: #9ccb3b;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-card-img {
    height: 180px;
  }
  .blog-title {
    font-size: 1rem;
  }
}

/*=====================================About Page========================================*/

/* Section 1: Banner */
.about-banner {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.about-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.about-banner .content {
  position: relative;
  z-index: 2;
}

/* Section 2 */
.about-two-col img {
  border-radius: 12px;
}

/* Section 3 */

.about-vmv {
  margin: 90px 0;
  padding: 70px 0;
  background-color: #f5fbf0; /* light grey */
}

.about-vmv h3 {
  color: #9ccb3b;
  margin-bottom: 1rem;
}

/*======================================contact Page=========================================*/

/* Banner */
.contact-banner {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #fff;
}
.contact-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.contact-banner .content {
  position: relative;
  z-index: 2;
}

.contact-info {
  margin: 120px 0px;
}

.contact-box {
  background: #f8f9fa; /* light background */
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-box:hover {
  transform: translateY(-5px);
  background: #ffffff;
}

.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #f47920; /* your theme green */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.icon-circle i {
  font-size: 28px;
  color: #fff;
}

/* Contact Info */
.contact-info h5 {
  color: #81c341;
}

/* Boxed Section */
.contact-boxed {
  position: relative;
  color: #fff;
  padding: 120px 0px;
}

.contact-boxed h4 {
  color: #81c341;
}
.contact-boxed img.bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.contact-boxed .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.contact-boxed .content {
  position: relative;
  z-index: 2;
}

.contact-boxed .contact-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 10px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important; /* 3D floating effect */
  position: relative;
  z-index: 3;
}

.contact-boxed .ratio {
  border-radius: 10px;
  overflow: hidden;
}

.contact-boxed form .form-control {
  border-radius: 10px;
  box-shadow: none;
  border: 1px solid #ddd;
}

/*============================Floating Whatsapp=====================*/

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/*=========our services===============*/

/* ==== Services Boxed Section ==== */
.services-boxed {
  background: none; /* No full-width background */
}

/* Dual Style Heading */
.services-heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.services-heading .highlight-left {
  color: #231f20; /* Dark blue-grey */
}

.services-heading .highlight-right {
  color: #9ccb3b; /* Your theme green */
  font-weight: 800;
}

/* Service Box */
.service-box {
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

/* Image */
.service-img img {
  height: 180px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Title */
.service-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #231f20;
}

/* Description */
.service-desc {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-heading {
    font-size: 1.8rem;
  }
  .service-img img {
    height: 150px;
  }
}

/*==============portfolio=========================*/

/* ==== Light Background for Entire Portfolio Section ==== */
.portfolio-boxed {
  background: #9ccb3b; /* soft light grey/blue background */
  padding: 60px 0; /* spacing around the content */
}

/* Dual Style Title */
.portfolio-heading {
  font-size: 2.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolio-heading .highlight-left {
  color: #231f20;
}

.portfolio-heading .highlight-right {
  color: #f47920;
  font-weight: 800;
}

/* Wrapper link */
.portfolio-item {
  text-decoration: none;
  color: inherit;
}

/* Portfolio box */
.portfolio-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
}

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

/* Image styling */
.portfolio-img img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* Title */
.portfolio-title {
  font-size: 1.2rem;
  color: #485869;
  margin-bottom: 10px;
}

/* Description */
.portfolio-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-heading {
    font-size: 1.8rem;
  }
  .portfolio-img img {
    height: 170px;
  }
}

/* ===============Single Blog ==========================*/
.single-blog-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}

.single-blog-meta span {
  font-size: 0.9rem;
}

.single-blog-content {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* Fade animation */
.animate-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.single-blog-nav a {
  text-decoration: none;
  color: #81c341;
  font-weight: 600;
}

.single-blog-nav a:hover {
  color: #6aa12d;
}

.related-posts h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #222;
}

.related-card {
  text-align: center;
  transition: transform 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px) scale(1.03);
}

.related-img {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.related-card:hover .related-img {
  transform: scale(1.05);
}

.related-title {
  font-size: 1rem;
  margin-top: 0.9rem;
  color: #000;
  font-weight: 500;
  text-decoration: none !important;
}

.related-card a {
  text-decoration: none !important; /* remove underline */
  color: inherit; /* keep same text color */
}

.related-card a:hover .related-title {
  color: #81c341; /* optional: hover color */
}

.text-orange {
	color: #f47920 !important;
}

.text-green {
	color: #9ccb3b !important;
}

.text-black {
	color: #231f20 !important;
}

.image-height-fix img {
  height: 600px;        /* fixed height */
  width: 100%;          /* stretch to container width */
  object-fit: cover;    /* crop proportionally */
  display: block;       /* removes inline gaps */
}


/*==============================footer=========================================*/

.footer .list-unstyled li {
  margin-bottom: 8px; /* space between items vertically */
}

.footer .list-unstyled li:last-child {
  margin-bottom: 0; /* remove extra space at the end */
}

/* Footer Nav Links */
.footer .list-unstyled li a {
  color: #fff; /* default link color (adjust as per your footer background) */
  text-decoration: none !important;
  transition: color 0.3s ease;
}

/* Hover State */
.footer .list-unstyled li:hover {
  color: #81c341; /* green on hover */
}

/* Footer contact links */
.footer-link {
  color: #212529; /* visible text */
  text-decoration: none;
  transition: color 0.3s ease;
}


@media (max-width: 768px) {
  .mobile-footer {
    text-align: center;          /* centers inline text */
    display: flex;               /* optional: flex for better alignment */
    flex-direction: column;
    align-items: center;         /* centers child elements horizontally */
    justify-content: center;     /* centers vertically if you set a height */
    padding: 1rem;
  }
}