/* New Slider Stylesheet */
:root {
    --primary-color: #048247;
    --secondary-color: #035c32;
    --accent-color: #0056b3;
    --light-color: #ffffff;
    --dark-color: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    padding-top: 40px; /* Match your topbar height */
}

/* Fix for fixed/sticky elements */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    transform: translateZ(0);
    will-change: transform;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar Styles (Restored) */
.top-bar {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 8px 0;
    font-size: 14px;
    transition: all 0.3s ease;
    width: 100%;
}

.top-bar.hide {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.social-links a:hover {
    color: var(--light-color);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info i {
    margin-right: 5px;
}

/* Header styles */
.header {
    background-color: var(--light-color);
    padding: 15px 0;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 60px;
    transition: all 0.3s ease;
}

.header.sticky .logo img {
    max-height: 50px;
}

/* Desktop navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav li {
    margin-left: 25px;
}

.desktop-nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.apply-btn {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px;
    border-radius: 4px;
    margin-left: 15px;
}

.apply-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.login-btn {
    color: var(--accent-color);
}

.login-btn i {
    margin-right: 5px;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 30px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    position: absolute;
    left: 2.5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 5px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 13px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 21px;
}

/* blog */
/* CPL Blog Card Styles */
.cpl-blog-card {
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(44, 62, 80, 0.10);
    background: #fff;
    transition: box-shadow 0.3s ease;
    margin-bottom: 2rem;
  }

  .cpl-blog-card:hover {
    box-shadow: 0 12px 48px rgba(44, 62, 80, 0.15);
  }

  .cpl-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 340px;
    overflow: hidden;
  }

  .cpl-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
  }

  .cpl-blog-card:hover .cpl-card-image {
    transform: scale(1.05);
  }

  .cpl-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 48, 28, 0.7) 40%, rgba(36, 85, 38, 0.95) 100%);
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 0;
    transition: background 0.3s ease;
  }

  .cpl-card-overlay-content {
    width: 100%;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .cpl-card-date {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    opacity: 0.85;
  }

  .cpl-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
  }

  .cpl-card-desc {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    opacity: 0.92;
    line-height: 1.5;
  }

  .cpl-card-btn {
    background: #fff;
    color: #1a365d;
    font-weight: 600;
    border: none;
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(30, 40, 60, 0.10);
    transition: background 0.2s ease, color 0.2s ease;
    align-self: flex-start;
    cursor: pointer;
  }

  .cpl-card-btn:hover,
  .cpl-card-btn:focus {
    background: #1a5d24;
    color: #fff;
    text-decoration: none;
  }

  @media (max-width: 992px) {
    .cpl-blog-card {
      border-radius: 1rem;
    }
    .cpl-card-image-wrapper {
      height: 220px;
    }
    .cpl-card-overlay-content {
      padding: 1.2rem 1rem 1rem 1rem;
    }
    .cpl-card-title {
      font-size: 1.05rem;
    }
    .cpl-card-desc {
      font-size: 0.95rem;
    }
    .cpl-card-btn {
      font-size: 0.95rem;
      padding: 0.4rem 1.1rem;
    }
  }




/* Mobile menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--light-color);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 80px 20px 20px;
}

.mobile-nav.active {
    right: 0;
}

.active{
    display: block !important;
    opacity: 1 !important;
}


.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-nav a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.mobile-nav .apply-btn {
    display: block;
    text-align: center;
    margin-top: 20px;
}

/* Mobile contact info */
.mobile-contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.mobile-contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Overlay when menu is open */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Transform hamburger to X when active */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 13px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 13px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .contact-info {
        display: none;
    }
}

@media (max-width: 576px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
    }

    .social-links {
        justify-content: center;
    }
}


/* FAQ */

/* Professional FAQ Styles */
.faq-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  height: 400px; /* Reduced height */
}

.faq-image {
  flex: 0 0 40%;
  overflow: hidden;
}

.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.faq-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
}

.faq-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2a7f40;
  margin-bottom: 0.8rem;
}

.faq-subheading {
  color: #718096;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.accordion {
  border-top: 1px solid #e2e8f0;
}

.accordion-item {
  border-bottom: 1px solid #e2e8f0;
}

.accordion-title {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 15px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #2d3748;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion-title:hover {
  color: #4a5568;
}

.accordion-title.active {
  font-weight: 700;
  color: #2a7f40;
}

.accordion-arrow {
  transition: transform 0.3s ease;
  font-size: 0.9rem;
}

.accordion-title.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 5px;
}

.accordion-content.show {
  max-height: 500px;
  padding-bottom: 15px;
}

.accordion-content p {
  margin-bottom: 8px;
  color: #4a5568;
  line-height: 1.5;
  font-size: 0.9rem;
}

.accordion-content ul {
  padding-left: 18px;
  margin: 8px 0;
}

.accordion-content li {
  margin-bottom: 6px;
  color: #4a5568;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-card {
    flex-direction: column;
    height: auto;
  }

  .faq-image {
    flex: 0 0 200px;
  }

  .faq-content {
    padding: 20px;
  }

  .faq-heading {
    font-size: 1.5rem;
    text-align: center;
  }

  .faq-subheading {
    text-align: center;
  }
}


/* END OF FAQ */

.service-hero {
    background: linear-gradient(135deg, var(--secondary-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: url('assets/img/service-bg-pattern.png') center/cover no-repeat;
    opacity: 0.1;
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.process-step {
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 768px) {
    .service-hero {
        padding: 3rem 0;
    }
}

/* Timeline CSS */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
    border-radius: 2px;
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1rem 2rem;
    box-sizing: border-box;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
}

.timeline-item.left .timeline-icon {
    right: -20px;
}

.timeline-item.right .timeline-icon {
    left: -20px;
}

.timeline-item .timeline-content {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    display: inline-block;
    max-width: 90%;
}

.timeline-item.left .timeline-content {
    margin-right: 3rem;
}

.timeline-item.right .timeline-content {
    margin-left: 3rem;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .timeline-container::before {
        left: 20px;
    }
    .timeline-item,
    .timeline-item.left,
    .timeline-item.right {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 60px;
        margin-bottom: 2rem;
    }
    .timeline-item .timeline-icon {
        top: 0;
        left: 0 !important;
        right: auto !important;
    }
    .timeline-item .timeline-content {
        margin: 0;
        max-width: 100%;
    }
}




/* ===== Header Styles ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Add to your CSS */
#topBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
}

#topBar.hide {
    transform: translateY(-100%);
    opacity: 0;
}

.top-link, .top-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-link li, .top-contact li {
    display: inline-block;
    margin-right: 15px;
}

.top-link a, .top-contact a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.top-link a:hover, .top-contact a:hover {
    color: #fff;
    text-decoration: none;
}

.top-link i {
    margin-right: 5px;
}

/* Main Navigation */
.header-inner {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.logo img {
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.nav-menu > li {
    position: relative;
    margin: 0 12px;
}

.nav-menu > li > a {
    color: #333;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 0;
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu > li.active > a,
.nav-menu > li:hover > a {
    color: #000000;
}

.nav-menu > li.active > a:after,
.nav-menu > li > a:hover:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2a7f40;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    display: block;
    margin: 0;
}

.dropdown-menu li a {
    padding: 8px 20px;
    color: #555;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: rgba(42, 127, 64, 0.05);
    color: #2a7f40;
    padding-left: 25px;
}

/* Buttons */
.btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2a7f40;
    border-color: #2a7f40;
}

.btn-primary:hover {
    background-color: #1e6a34;
    border-color: #1e6a34;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Mobile Menu */
.mobile-menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
    padding: 5px 10px;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-container.active {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu-inner {
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    position: relative;
    padding: 30px 20px;
}

.mobile-menu-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #333;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    margin-bottom: 10px;
}

.mobile-nav li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-nav li a:hover {
    background: rgba(42, 127, 64, 0.1);
    color: #2a7f40;
}

.menu-item-has-children > a {
    position: relative;
}

.menu-item-has-children > a:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 8px;
    font-size: 12px;
}

.sub-menu {
    list-style: none;
    padding-left: 20px;
    margin-top: 5px;
    display: none;
}

.sub-menu li a {
    padding: 8px 15px;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .nav-menu > li {
        margin: 0 8px;
    }
}

@media (max-width: 991.98px) {
    .header-inner {
        padding: 10px 0;
    }

    .logo img {
        max-width: 140px;
    }
}

@media (max-width: 767.98px) {
    .topbar {
        padding: 8px 0;
        text-align: center;
    }

    .top-link, .top-contact {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .top-link li, .top-contact li {
        margin: 0 8px 5px;
    }

    .header-inner {
        padding: 8px 0;
    }
}



/* New Slider Stylesheet */
/* Compact Slider Styles */
.slider-section {
    position: relative;
    overflow: hidden;
}

/* Reduced height */
.carousel-item {
    height: 70vh;
    min-height: 500px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-item.active img {
    opacity: 1;
}

/* Overlay */
.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Caption positioning */
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 2;
    text-align: left;
    padding: 0 15px;
}

.slider-content {
    max-width: 800px;
    margin-left: 10%;
}

/* Title styling */
.slider-title span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.text-highlight {
    color: #ffc107;
}

.text-primary {
    color: #2a7f40;
}

/* Text paragraph */
.slider-text {
    color: #f8f9fa;
    font-size: 1.1rem;
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

/* Button style */
.cta-button {
    background-color: #2a7f40;
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.4s;
}

.cta-button:hover {
    background-color: #1e6a34;
    transform: translateY(-2px) !important;
}

/* Carousel indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
}

.carousel-indicators .active {
    background-color: #2a7f40;
}

/* Carousel controls */
.carousel-control-icon {
    background: rgba(42, 127, 64, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

.carousel-control-icon:hover {
    background: #2a7f40;
}

/* Animation classes */
.carousel-item.active .slider-title span,
.carousel-item.active .slider-text,
.carousel-item.active .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }

    .slider-content {
        margin-left: 5%;
    }

    .slider-title span {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 350px;
    }

    .slider-title span {
        font-size: 1.8rem;
    }

    .slider-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 60vh;
        min-height: 300px;
    }

    .slider-title span {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.5rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Why Choose CPL Section Styles */
.whyschose {
    position: relative;
}

/* Icon Styling */
.icon-wrapper {
    width: 80px; /* Increased size */
    height: 80px; /* Increased size */
    margin: 0 auto;
}
.icon-bg {
    background: linear-gradient(135deg, #2a7f40, #3ab757);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.card:hover .icon-bg {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(42, 127, 64, 0.3);
}

/* Card Styling */
.card {
    transition: all 0.3s ease;
    border-radius: 16px !important;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1) !important;
}

/* Text Gradient */
.text-gradient-primary {
    background: linear-gradient(90deg, #2a7f40, #3ab757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Button Styling */
.btn-primary {
    background-color: #2a7f40;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e6a34;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .icon-bg {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 767.98px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .icon-bg {
        width: 60px !important;
        height: 60px !important;
    }

    .card {
        margin-bottom: 1.5rem;
    }
}

/* map section */

.map-section {
    width: 100%;
    height: 100vh;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
/* Icon Size Enhancements */
.service-icon {
    width: 80px !important;  /* Increased from 60px */
    height: 80px !important; /* Increased from 60px */
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem !important; /* Larger icon size */
}

/* Card Adjustments for Larger Icons */
.service-card {
    border-radius: 12px;
    transition: all 0.3s ease;
}

.card-body {
    padding: 1.75rem !important; /* Slightly more padding */
}

/* Hover Effects */
.service-card:hover .service-icon {
    background-color: #477654 !important;
    transform: scale(1.05); /* Subtle grow effect */
}

.service-card:hover .service-icon i {
    color: white !important;
    transform: scale(1.1); /* Icon pops on hover */
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .service-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .service-icon i {
        font-size: 1.75rem !important;
    }
}

@media (max-width: 575.98px) {
    .service-icon {
        width: 60px !important;
        height: 60px !important;
    }

    .service-icon i {
        font-size: 1.5rem !important;
    }
}

/* Existing styles... */
.text-gradient-primary {
    background: linear-gradient(90deg, #2a7f40, #3ab757);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-title {
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #2a7f40 !important;
}

.btn-link:hover {
    text-decoration: none;
    color: #1e6a34 !important;
}

.hover-scale:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
}
