 @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --main-color: #45a049;
  --white-color: #ffffff;
  --black-color: #000000;
  --mainfont: "Playfair Display";
}


 /* header section */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
}

.header {
    background-color: #fff;
    /* background-color: #F5F5F0; */
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

/* .logo-icon {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
} */
.logo-icon {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  /* overflow: hidden; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
}

.logo-icon img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text h1 {
    font-size: 20px;
    color: #2c5f2d;
    font-weight: bold;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.logo-text p {
    font-size: 10px;
    color: #666;
    font-style: italic;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color:black;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-menu a:hover {
    color: #4CAF50;
}

.nav-menu a:hover::after {
    transform: scaleX(1);
}

.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-icons a i {
    font-size: 20px;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icons a.facebook:hover {
    background-color: #1877f2;
    color: #fff;
}

.social-icons a.youtube:hover {
    background-color: #ff0000;
    color: #fff;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .social-icons {
        gap: 15px;
    }
}

/* Main slider section */
.slideshow-container {
        max-width: 100%;
        position: relative;
        margin: auto;
      }

      .mySlides {
        display: none;
      }

      .mySlides img {
        vertical-align: middle;
        max-height: 630px;
        object-fit: cover;
      }

      .numbertext {
        color: #f2f2f2;
        font-size: 12px;
        padding: 8px 12px;
        position: absolute;
        top: 0;
      }

      .text {
        color: #f2f2f2;
        font-size: 15px;
        padding: 8px 12px;
        position: absolute;
        bottom: 8px;
        width: 100%;
        text-align: center;
      }

      .dot {
        height: 15px;
        width: 15px;
        margin: 0 2px;
        background-color: #bbb;
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.6s ease;
      }

      .dot.active {
        background-color: #717171;
      }


      .fade {
        animation-name: fade;
        animation-duration: 5.5s;
      }

      @keyframes fade {
        from {opacity: .4} 
        to {opacity: 1}
      }

      @media only screen and (max-width: 300px) {
        .text {font-size: 11px}
      }

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
  text-decoration: underline;
  transform: rotate(-90deg);
} 


/* about us section strated  */
.about_img {
  padding: 30px;
}
.lefts_img {
  display: flex;
  align-items: center;

}
.abouts_img {
  width: 400px;
}
.about_title {
  padding-top: 50px;
  font-size: 24px;
  text-transform: capitalize;
  font-family: var(--mainfont);
}
.about_title h1 span {
  font-size: 46px;
  font-weight: 700;
  color: #45a049;
}
.about_details p {
  font-size: 18px;
}
.about_details {
  font-size: 16px;
  font-family: var(--mainfont);
}

/* why choose section  */

.why_title {
  font-size: 30px;
  font-family: var(--mainfont);
  font-weight: 700;
  color: #45a049;
}
.why_subtitle {
  padding-top: 20px;
  font-size: 26px;
  font-family: var(--mainfont);
  font-weight: 700;
}
.why_details {
  font-size: 16px;
  font-family: var(--mainfont);
  font-weight: 300;
}
.rights_side_img {
  display: flex;
  align-items: center;
}
.right_side_img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
}

.right_side_img img {
  width: 100%;
}

.products_section {
  padding: 30px;
}
.products_title {
  padding: 60px;
  font-size: 60px;
  font-family: var(--mainfont);
  letter-spacing: 1px;
  color: #45a049;
}
.elem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #45a049;
}
.elem:hover {
  cursor: pointer;
  color: #45a049;
}
.elem:hover .serv_img {
  opacity: 1;
}
.serv_img {
  right: 10%;
  position: absolute;
  width: 350px;
  height: 350px;
  opacity: 0;
  transition: 0.3s linear all;
}
.elem:hover ~ .ri-arrow-right-up-line {
  background: #45a049;
  color: #ffffff;
}
.elem a{
  font-size: 40px;
  font-weight: 500;
  font-family: var(--mainfont);
  text-decoration: none;
  color: var(--black-color);
}

.d_title{
  padding: 60px;
}
.details_title {
  font-family: var(--mainfont);
  font-size: 60px;
  color: #45a049;
  text-align: center;
  padding: 60px;
}
.details_titles {
  font-family: var(--mainfont);
  font-size: 60px;
  color: #45a049;
  text-align: center;
  /* padding: 60px; */
}
.items {
  height: 100%;
  border: 1px solid #45a049;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.raw_material{
  font-size: 30px;
}
.de_imgs {
  width: 150px;
  height: 150px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.de_text p {
  padding: 10px;
  text-align: center;
}
.de_text h5 {
  font-weight: 700;
  font-family: var(--mainfont);
  text-align: center;
  text-transform: uppercase;
}

/* services section   */
.services_title {
  padding: 60px;
  font-size: 60px;
  font-family: var(--mainfont);
  letter-spacing: 1px;
  color: #45a049;
}
.services_heading {
  padding: 27px;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--mainfont);
}
.boxes {
  position: relative;

  left: 50%;
  transform: translateX(-50%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 3px 4px 3px rgba(0, 0, 0, 0.2);
}
.servicess {
  position: relative;
}
.serv_video {
  position: absolute;
  top: 0%;
  right: 0%;
  object-fit: cover;
  opacity: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 100;
  /* opacity: 0; */
  transition: 0.3s linear all;
}
.servicess:hover .serv_video {
  opacity: 1;
}

.boxes img {
  width: 100%;
  transition: all linear 0.7s;
}
img.hovers {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.boxes:hover img {
  opacity: 0;
}
.boxes:hover img.hovers {
  opacity: 1;
}

 .meeting-section {
    background: linear-gradient(135deg, #4CAF50 0%, #2c5f2d 100%);
  }

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .social-icons {
        gap: 15px;
    }
}

/* ===================================
   FOOTER STYLES
   =================================== */

.footer {
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d8 100%);
    padding: 60px 50px 20px;
    color: #333;
    position: relative;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.03) 10px, rgba(255,255,255,.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(0,0,0,.02) 10px, rgba(0,0,0,.02) 20px);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Company Info Section */
.footer-column.company-info {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    /* object-fit: contain; */
}

.footer-logo-icon i {
    font-size: 26px;
    color: #fff;
}

.footer-logo-text h2 {
    font-size: 22px;
    color: #2c5f2d;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

.footer-logo-text p {
    font-size: 13px;
    color: #666;
    margin: 3px 0 0 0;
    font-style: italic;
}

.company-description {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
}

/* Footer Columns */
.footer-column h3 {
    font-size: 18px;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #4CAF50, #45a049);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li i {
    color: #4CAF50;
    font-size: 14px;
    width: 16px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: #4CAF50;
    transform: translateX(5px);
}

.footer-links li:not(:has(a)) {
    color: #555;
    font-size: 14px;
}

/* Contact Details */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.footer-contact li i {
    color: #4CAF50;
    font-size: 16px;
    width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #4CAF50;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-column.company-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-column.company-info {
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .company-description {
        text-align: center;
    }
    
    .footer-column h3 {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links li {
        justify-content: center;
    }
    
    .footer-contact li {
        justify-content: center;
        text-align: left;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        bottom: 20px;
        right: 20px;
    }
}

/* meeting now */
.meeting_section {
  margin-top: 100PX;
  background-image: url(../images/home/meet.png);
}
.meeting_now {
  width: 100%;
  height: 400px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.meet_btn {
  padding-top: 20px;
}
.meet_btn a {
  text-decoration: none;
  color: white;
  border: 2px solid white;
  border-radius: 10px;
  padding: 15px;
  font-family: var(--mainfont);
  font-weight: 700;
}
.meet_btn a:hover {
  background: white;
  color: #000000;
  font-weight: 700;
  border-radius: 10px;
  padding: 10px;
}

.meeting_details p {
  font-size: 50px;
  color: white;
  font-family: var(--mainfont);
  text-align: center;
}

/* google review  */
.review_section {
  height: 60vh;
}
.review_btn {
  border-radius: 5px;
  padding: 5px;
  border: 1px solid #45a049;
  transition: 0.2s all ease-in;
}
.review_btn:hover {
  scale: 1.1;
}
.review_img {
  width: 50px;
  height: 50px;
}
.review_btn a {
  font-family: var(--mainfont);
  font-weight: 600;
  font-size: 18px;
  color: #45a049;
  text-decoration: none;
}
.review_btn:hover {
  background: var(--white-color);
  color: #45a049;
}

/* service banner */
.service_banner{
  background-color: #45a049;
}
.sbanner{
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sbanner p{
font-size: 40px;
color: var(--white-color);
font-weight: 700;
font-family: var(--mainfont);
border-bottom: 3px solid #45a049;
}

.s_details{
  padding-top: 20px;
}
.s_details h1{
  font-size: 36px;
  font-weight: 600;
  font-family: var(--mainfont);
}
.s_details p{
  font-size: 20px;
  font-weight: 300;
  font-family: var(--mainfont);
}
.uses p {
  font-size: 36px;
  font-weight: 600;
  font-family: var(--mainfont);
}


/* contact form  */
.form-label{
  font-family: var(--mainfont);
  font-size: 18px;
  color: #000000;
  font-weight: 600;
}
.forms_filed{
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #45a049;
  border-radius: 1px !important;
  padding: 10px;
  font-family: var(--mainfont);
}
.forms_filed:focus{
  outline-style: solid;
  outline-color: #45a049;
  outline-width: 1px;
}
.btns{
  padding: 10px;
  background: none;
  border: 1px solid #45a049;
  border-radius: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #6a6d78;
  font-family: var(--mainfont);
  transition: 0.3s all ease-in;
}
.btns:hover{
  background-color: #45a049;
  color: #fff;
}
.cdetails h2{
  font-size: 40px;
  font-family: var(--mainfont);
 
  display: inline-block;
}
.get_touch li  {
font-size: 20px !important;
padding-top: 30px;
font-weight: 600;
}
.get_touch li i {
  font-size: 30px;
  color: #45a049;
}
.get_touch li a {
  /* font-size: 24px; */
  text-decoration: none;
  color: #6a6d78;

  padding-left: 20px;
}
.maps{
  width: 100%;
  margin-top: 100px;
}
.lists{
  font-family: var(--mainfont);
}
.appss{
  font-weight: 700 !important;
}
.whatsapp {
  position: fixed;
  right: 20px !important;
  top: 85%;
  z-index: 100000;
}
.whatsapp a {
  text-decoration: none;
}
.whatsapp h5 {
  font-size: 70px;
  color: #31ba44;
}
.det{
  font-size: 20px;
  font-weight: 300;
  font-family: var(--mainfont);
}

/* ==============================
   INDEX PAGE STYLES
   ============================== */

/* Test style to verify CSS is loading */
.test-css-loading {
  color: #45a049 !important;
  font-weight: bold !important;
}

/* Preloader */
#preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: #fff !important;
  z-index: 9999 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  transition: all 0.5s ease !important;
}

#preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
}

.spinner {
  width: 40px !important;
  height: 40px !important;
  border: 4px solid #f3f3f3 !important;
  border-top: 4px solid #4CAF50 !important;
  border-radius: 50% !important;
  animation: spin 1s linear infinite !important;
}

@keyframes spin {
  0% { transform: rotate(0deg) !important; }
  100% { transform: rotate(360deg) !important; }
}

/* Hero Section Styles */
.hero-section {
  position: relative !important;
  width: 100% !important;
  margin-bottom: 40px !important;
}

.slideshow-container {
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  border-radius: 0 0 20px 20px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.mySlides {
  display: none !important;
  position: relative !important;
  width: 100% !important;
}

.mySlides img {
  width: 100% !important;
  height: auto !important;
  vertical-align: middle !important;
  max-height: 70vh !important;
  object-fit: cover !important;
}

.fade {
  animation-name: fade !important;
  animation-duration: 1.5s !important;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

/* Slider Navigation */
.prev, .next {
  cursor: pointer !important;
  position: absolute !important;
  top: 50% !important;
  width: auto !important;
  padding: 16px !important;
  margin-top: -22px !important;
  color: white !important;
  font-weight: bold !important;
  font-size: 18px !important;
  transition: all 0.3s ease !important;
  border-radius: 0 3px 3px 0 !important;
  user-select: none !important;
  background-color: rgba(0, 0, 0, 0.5) !important;
  z-index: 10 !important;
}

.next {
  right: 0 !important;
  border-radius: 3px 0 0 3px !important;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8) !important;
  transform: scale(1.1) !important;
}

/* Enhanced slider dots */
.slider-dots {
  text-align: center !important;
  padding: 20px !important;
  background: #f8f9fa !important;
}

.dot {
  cursor: pointer !important;
  height: 15px !important;
  width: 15px !important;
  margin: 0 5px !important;
  background-color: #bbb !important;
  border-radius: 50% !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
}

.active, .dot:hover {
  background-color: #4CAF50 !important;
  transform: scale(1.2) !important;
}

/* Services Section */
.section-title {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: #2c5f2d !important;
  margin-bottom: 15px !important;
}

.section-subtitle {
  font-size: 1.2rem !important;
  color: #666 !important;
  max-width: 700px !important;
  margin: 0 auto !important;
}

.service-card {
  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  height: 100% !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
  display: flex !important;
  flex-direction: column !important;
}

.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.service-img-wrapper {
  position: relative !important;
  height: 200px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.service-img {
  max-height: 180px !important;
  transition: opacity 0.3s ease !important;
}

.service-img-hover {
  position: absolute !important;
  max-height: 180px !important;
  opacity: 0 !important;
  transition: opacity 0.3s ease !important;
}

.service-card:hover .service-img {
  opacity: 0 !important;
}

.service-card:hover .service-img-hover {
  opacity: 1 !important;
}

.service-title {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: #2c5f2d !important;
  margin: 15px 0 !important;
  transition: color 0.3s ease !important;
}

.service-card:hover .service-title {
  color: #4CAF50 !important;
}

.service-desc {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  padding: 0 15px 20px !important;
  color: #666 !important;
  flex: 1 !important;
}

/* Services Slider Styles */
.services-slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 40px;
}

.services-slider-wrapper {
  position: relative;
  width: 100%;
}

.services-slide {
  transition: transform 0.5s ease-in-out;
}

/* Navigation Arrows */
.services-slider-prev,
.services-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(76, 175, 80, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-slider-prev:hover,
.services-slider-next:hover {
  background-color: rgba(76, 175, 80, 1);
  transform: translateY(-50%) scale(1.1);
}

.services-slider-prev {
  left: 0;
}

.services-slider-next {
  right: 0;
}

/* Slider Dots */
.services-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.services-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bbb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.services-dot.active,
.services-dot:hover {
  background-color: #4CAF50;
  transform: scale(1.2);
}

/* Ensure service cards in slider maintain existing styling */
.services-slide .service-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.services-slide .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.services-slide .service-img-wrapper {
  position: relative;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-slide .service-img {
  max-height: 180px;
  transition: opacity 0.3s ease;
}

.services-slide .service-img-hover {
  position: absolute;
  max-height: 180px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.services-slide .service-card:hover .service-img {
  opacity: 0;
}

.services-slide .service-card:hover .service-img-hover {
  opacity: 1;
}

.services-slide .service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c5f2d;
  margin: 15px 0;
  transition: color 0.3s ease;
}

.services-slide .service-card:hover .service-title {
  color: #4CAF50;
}

.services-slide .service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px 20px;
  color: #666;
  flex: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-slider-container {
    padding: 0 20px;
  }
  
  .services-slider-prev,
  .services-slider-next {
    width: 40px;
    height: 40px;
  }
  
  .services-slider-prev {
    left: 10px;
  }
  
  .services-slider-next {
    right: 10px;
  }
  
  .services-slide .service-title {
    font-size: 1.3rem;
  }
  
  .services-slide .service-desc {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .services-slider-container {
    padding: 0 10px;
  }
  
  .services-slider-prev,
  .services-slider-next {
    width: 35px;
    height: 35px;
  }
  
  .services-slide .service-img-wrapper {
    height: 150px;
  }
  
  .services-slide .service-img,
  .services-slide .service-img-hover {
    max-height: 130px;
  }
}

/* Meeting Section */
.meeting-section {
  background: linear-gradient(135deg, #4CAF50 0%, #2c5f2d 100%);
  margin-top: 3rem;
  margin-bottom: 0;
}

.meeting-section h2 {
  font-weight: 700;
  letter-spacing: 1px;
}

.meeting-section .btn {
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.meeting-section .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Additional enhancements */
body {
  scroll-behavior: smooth !important;
}

.hero-section {
  margin-bottom: 2rem !important;
}

.services-section {
  padding: 4rem 0 !important;
}

.services-section .row {
  display: flex !important;
  flex-wrap: wrap !important;
}

.services-section .col-lg-4 {
  display: flex !important;
  margin-bottom: 2rem !important;
}

/* Back to Top Button */
#backToTop {
  display: none !important;
  position: fixed !important;
  bottom: 20px !important;
  right: 30px !important;
  z-index: 99 !important;
  border: none !important;
  outline: none !important;
  background-color: #4CAF50 !important;
  color: white !important;
  cursor: pointer !important;
  padding: 15px !important;
  border-radius: 50% !important;
  font-size: 18px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.3s ease !important;
}

#backToTop:hover {
  background-color: #45a049 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
}

/* Ensure service cards display properly */
.service-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.card-body {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.service-desc {
  flex: 1 !important;
}
  /* Meeting Section */
      .meeting-section {
        background: linear-gradient(135deg, #4CAF50 0%, #2c5f2d 100%);
      }
      
      .meeting-section h2 {
        font-weight: 700;
        letter-spacing: 1px;
      }
      
      .meeting-section .btn {
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
      }
      
      .meeting-section .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      }

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem !important;
  }
  
  .services-section {
    padding: 2rem 0 !important;
  }
  
  .hero-section {
    margin-bottom: 1rem !important;
  }
  
  #backToTop {
    right: 20px !important;
    bottom: 20px !important;
    padding: 12px !important;
  }
  
  .services-section .col-lg-4 {
    margin-bottom: 1.5rem !important;
  }
}
    /* Header Base */
.header {
    width: 100%;
    background: #fff;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .logo img {
    width: 120px;
}

/* Nav Menu Desktop */
.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    font-size: 17px;
    color: #000;
}

.social-icons a {
    margin-left: 15px;
    font-size: 20px;
    color: #000;
}

/* Mobile Toggle Button */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    nav.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }

    .social-icons {
        display: none;
    }
}

