/* ✅ Google Fonts - Optimized (Single Request) */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200..1000&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Roboto+Mono:wght@100..700&family=Roboto+Slab:wght@100..900&family=Roboto:wght@100..900&display=swap');

/* Global Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sky-blue: #87CEEB;
  --forest-green: #228B22;
  --gold: #D4AF37;
  --soft-white: #FFFFFF;
  --light-gray: #F5F5F5;
  --dark-charcoal: #222222;
  --dark-green: #0b3d0b;
  --light-green: #a8e063;
}

body {
  background-color: var(--soft-white);
  color: var(--dark-charcoal);
  font-family: 'Poppins', sans-serif;
  scroll-padding-top: 100px;
}

/* Header / Navbar */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 70px;
  height: auto;
  border-radius: 8px;
}

.logo h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
  margin-left: 15px;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
  transition: color 0.3s ease;
}

.logo h2:hover {
  color: var(--light-green);
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: var(--dark-green);
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active,
.nav-links li a:focus {
  color: var(--light-green);
  outline: none;
}

.enquiry-btn {
  background: var(--light-green);
  color: var(--dark-green) !important;
  padding: 10px 20px;
  border-radius: 1px;
  font-weight: 600;
  transition: 0.3s;
}

.enquiry-btn:hover,
.enquiry-btn:focus {
  background: #fff;
  color: var(--dark-green);
  box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Mobile Navbar */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-green);
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
  .logo h2 {
    font-size: 18px;
    margin-left: 10px;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .enquiry-btn {
    padding: 10px 25px;
  }
}

 
/* Slider */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-top: 80px;
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}

.slide {
  min-width: 100%;
  height: 90vh;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
  transition: transform 0.5s ease;
}

.slide img:hover {
  transform: scale(1.05);
}

.navigation span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: background 0.3s;
  z-index: 9999;
}

.navigation span:hover {
  background: rgba(0, 0, 0, 0.7);
}

.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dots span.active {
  background: var(--light-green);
  transform: scale(1.3);
}

@media (max-width: 768px) {
  .slider { height: 50vh; margin-top: 65px; }
  .slide { height: 50vh; }
  .navigation span { font-size: 18px; padding: 8px 10px; }
  .dots span { width: 10px; height: 10px; }
}

@media (max-width: 480px) {
  .slider, .slide { height: 40vh; }
  .navigation span { padding: 6px 8px; }
}
/* Slider end */

/* ===== Breadcrumb Section with Gradient Background ===== */
.breadcrumb {
  position: relative;
  width: 100%;
  padding: 60px 20px 40px; /* top padding for title */
  background: linear-gradient(135deg, #288e28 0%, #267b26 100%);
  color: #fff;
  text-align: center;
  margin-top: 80px; /* adjust if header is fixed */
}

.breadcrumb h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.breadcrumb-nav {
  display: inline-block;
  font-size: 14px;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.3s;
  margin: 0 5px;
}

.breadcrumb-nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb-nav span {
  margin: 0 5px;
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 600px) {
  .breadcrumb {
    padding: 40px 15px 25px;
  }

  .breadcrumb h1 {
    font-size: 24px;
  }

  .breadcrumb-nav {
    font-size: 13px;
  }
}


/* Home start */
.home {
  padding: 50px 10%;
  background-color: #ffffff;
}

.home-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap; /* for responsive stacking on smaller screens */
  
}

.home-content {
  flex: 1 1 500px; /* Left column takes space */
 
}

.home-content h1 {
  font-size: 2.5rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.home-content .tagline {
  font-size: 1.2rem;
  color: #558b2f;
  margin-bottom: 20px;
}

.home-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
}

.home-images {
  flex: 1 1 400px;       /* Right column width */
  display: flex;          /* Arrange images in a row */
  gap: 20px;
  flex-wrap: wrap;        /* Wrap if screen too small */
  justify-content: center;
  align-items: center;
}

.home-images img {
  width: 200px;           /* Fixed width for images */
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .home-container {
    flex-direction: column;  /* Stack vertically */
    align-items: center;
  }
  .home-content, .home-images {
    flex: 1 1 100%;
  }
  .home-images {
    justify-content: center;
    gap: 15px;
  }
  .home-images img {
    width: 80%;              /* Resize images on mobile */
    max-width: 300px;
  }
}

/* Home end */


/* icon start */
.icons {
    padding: 50px 10%;
    background-color: #f3fff3;
    text-align: center;
}

.section-title p {
    font-size: 1.2rem;
    color: #0b3d0b;
    font-weight: 500;
    margin-bottom: 50px;
}

.icon-container {
    display: flex;                /* Flex to row */
    flex-wrap: nowrap;            /* Keep all in one row on desktop */
    justify-content: center;      /* Center horizontally */
    gap: 20px;                    /* Space between boxes */
    padding: 20px 0;
    overflow-x: auto;             /* Scroll if too many icons */
}

.icon-box {
    flex: 0 0 200px;              /* Fixed width */
    height: 200px;
    border: 2px solid #d4af37;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.icon-box i {
    font-size: 50px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.icon-box h3 {
    color: #2e7d32;
    font-size: 1.1rem;
    text-align: center;
}

.icon-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    background: #e8f5e9;
}

/* Responsive for tablets & mobiles */
@media (max-width: 1024px) {
    .icon-container {
        flex-wrap: wrap;           /* Wrap on smaller screens */
    }
    .icon-box {
        flex: 1 1 45%;             /* Take roughly half width */
        max-width: 45%;
    }
}

@media (max-width: 600px) {
    .icon-box {
        flex: 1 1 100%;            /* Full width on very small screens */
        max-width: 100%;
        margin-bottom: 20px;
    }
}


/* Why Choose Us Section */

/* Container Flex */
/* Container Flex */
.whychoose .choose-container {
  display: flex;
  align-items: flex-start; /* Align items at the top */
  gap: 50px; /* Space between image and content */
  padding: 50px 20px; /* Optional padding */
  flex-wrap: wrap; /* For responsiveness on smaller screens */
  /* height: 100vh; */
}

/* Image Styling */
.whychoose .img {
  flex: 1; /* Take available width */
  min-width: 300px; /* Prevent too small on mobile */
}

.whychoose .img img {
  width: 100%;
  height: 650px;
  display: block;
  /* border-radius: 10px; */
}

/* Content Styling */
.whychoose .choose-content {
  flex: 2; /* Content takes more space */
  min-width: 300px;
}

.whychoose .choose-content h1 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #0b3d0b;
}

.whychoose .choose-item {
  margin-bottom: 20px;
}

.whychoose .choose-item h3 {
  font-size: 22px;
  color: #949494; 
  margin-bottom: 10px;
}

.whychoose .choose-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .whychoose .choose-container {
    flex-direction: column;
    align-items: center;
  }
  
  .whychoose .choose-content {
    text-align: center;
  }
}
/* Why choose end */


/* Service start */

.service {
    padding: 120px 20px 80px; /* increased top padding */ 
    background-color: #f5f5f5; /* Light background for contrast */
    font-family: 'Poppins', sans-serif;
    color: #222;
}

   .service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}


.service-container h1:first-child {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #228B22; /* Forest green main heading */
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.service-container h1:first-child::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #D4AF37; /* Gold underline for premium look */
    margin: 10px auto 0;
    border-radius: 2px;
}

.service-box {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.service-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 50%; /* round images for modern look */
    border: 2px solid #D4AF37; /* Gold border accent */
}

.service-box h1 {
    font-size: 20px;
    color: #228B22; /* Forest green for service headings */
    margin-bottom: 15px;
}

.service-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .service-container {
        grid-template-columns: 1fr; /* single column on mobile */
        gap: 25px;
    }

    .service-box img {
        width: 80px;
        height: 80px;
    }

    .service-box h1 {
        font-size: 18px;
    }

    .service-box p {
        font-size: 13px;
    }
}


/* Footer Section */
.footer {
    background: #091406;
    color: #fff;
    padding: 60px 20px 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.footer-box {
    flex: 1 1 220px;
}

.footer-logo {
    color: #d4af37; /* Gold color */
    font-size: 28px;
    margin-bottom: 15px;
}

.footer-box h3 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
    position: relative;
}

.footer-box h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #d4af37;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-box p, 
.footer-box li {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #d4af37;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #444;
    padding-top: 20px;
    font-size: 14px;
    color: #ccc;
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-box {
        text-align: start;
    }

    .social-icons {
        justify-content: start;
    }
	
	
}


 





/* ===== Appointment Title Section ===== */
.get-appointment {
  background: linear-gradient(135deg, #A8E063, #5caf47);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  width:100%; 
 min-height: 350px;
}

/* Subtle shine effect overlay */
.get-appointment::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15) 0%,
    transparent 70%
  );
  animation: glowMove 6s linear infinite;
  z-index: 0;
  opacity: 0.6;
}

@keyframes glowMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.get-appointment .section-title {
  position: relative;
  z-index: 1;
  align-items: center;
  justify-content: center;
   
  text-align:center;
  
  
}

.get-appointment h4 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
  
}
.subheading {
    text-decoration: none;
    border-bottom: none;
}

.get-appointment h2 {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #fff, #d0ffc7, #a8ffa5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  animation: shine 3s linear infinite;
 
}

@keyframes shine {
  0% {
    background-position: -100px;
  }
  100% {
    background-position: 200px;
  }
}

/* For better look on mobile */
@media (max-width: 768px) {
  .get-appointment h2 {
    font-size: 28px;
  }
  .get-appointment h4 {
    font-size: 20px;
  }
}

/* ===== Appointment Section ===== */

.appointment-from {
  /* background: #f8f8f8; */
  padding: 60px 0;
  /* font-family: "Poppins", sans-serif; */
  width: 90%;
  margin-left: 5%;
  margin-top: -150px;
  position: relative;
   /* background: rgb(238, 238, 238); */
}

.appointment-from .box-shadow-02 {
  display: flex;
  flex-wrap: wrap;
  background: rgb(238, 238, 238);
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Left Side - Image */
.appointment-image {
  flex: 1 1 40%;
  max-width: 40%;
}

.appointment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Side - Form */
.appointment-inner {
  flex: 1 1 60%;
  max-width: 60%;
  padding: 40px 50px;
  background: #fff;
}

.appointment-inner h3 {
  font-size: 26px;
  color: #333;
  font-weight: 700;
  margin-bottom: 10px;
}

.appointment-inner h5 {
  color:#C8C6BE;
  font-weight: 600;
  margin-bottom: 25px;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form input.form-control {
  width: 100%;
  padding: 12px 15px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input.form-control:focus {
  border-color: #228B22;
  box-shadow: 0 0 6px #09c909;
}

/* Captcha & Button */
.contact-form img {
  height: 45px;
  border-radius: 6px;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, #61B247, #127139);
  color: #fff;
  font-size: 16px;
  min-width:120px;
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
  background: linear-gradient(135deg, #127139, #61B247);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
  .appointment-image,
  .appointment-inner {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .appointment-inner {
    padding: 30px 25px;
  }
}

/* --------------------------
   COUNTER SECTION
--------------------------- */
.bg-lightgrey .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  background: rgb(255, 255, 255);
  min-height: 100px;width: auto;
  margin-top: -10%;
  color: black;
  position: relative;
}

.bg-lightgrey .counter h4 {
  font-size: 50px;
  font-weight: 700;
  /* color: #007bff; */
  /* margin-bottom: 50px; */
}
.section-smt {
  padding: 70px 0;
}


.counter-style-1 {
  text-align: center;
  padding: 30px 20px;
  border-radius: 12px;
  /* background: linear-gradient(135deg, #1e293b, #334155); */
  color: #000000;
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); */
  transition: all 0.3s ease;
}

/* .counter-style-1:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #3b82f6, #1e3a8a);
} */

.counter-contents span {
  font-size: 50px;
  font-weight: 700;
  color: #4b4b4b;
  margin-top:10% ;
}

.counter-title span {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  color: #464646;
}
.counter-number {
    display: inline-block;
    transition: all 0.3s ease-in-out;
}

/* --------------------------
   GOOGLE MAP   
--------------------------- */
iframe {
  border-radius: 20px;
  margin: 40px 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 992px) {
  .appointment-inner {
    padding: 30px 25px;
  }
  .appointment-image {
    display: none;
  }
  .btn.btn-primary {
    width: 100%;
  }
  .counter-style-1 {
    margin-bottom: 25px;
  }
}
 