 /* banner styling */

 .main-banner-heading-a3 {
     background-size: cover;
     background-repeat: no-repeat;
     height: 650px;
     justify-content: center;
     display: flex;
     /* background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.6)), url('../../images/service-inner/'); */
     background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url('../../images/service-inner/residential.webp');

     background-size: cover;
     background-position: bottom;
     align-items: center;
 }

 .banner-point {
     color: white;
     padding-left: 20px;
 }

 .banner-subtitle {
     font-size: 1.1rem;
     margin-bottom: 25px;
     animation: fadeInUp 1s ease-out 0.5s both;
     color: white;
 }

 .main-heading-a3 {
     font-size: 2.1rem;

 }

 @media (min-width: 768px) {
     .main-heading-a3 {
         font-size: 3rem;
     }
 }

 @media (min-width: 1200px) {
     .main-heading-a3 {
         font-size: 3.5rem;
     }
 }

/* responsive br */

 .responsive-br {
     display: inline;
 }

 /* Hide on small screens */
 @media (max-width: 576px) {
     .responsive-br {
         display: none;
     }
 }


 /* another section styling */
 .floating-bubble {
     position: absolute;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.1);
     animation: bubble 15s infinite linear;
 }

 .bubble-1 {
     width: 80px;
     height: 80px;
     left: 10%;
     animation-delay: 0s;
 }

 .bubble-2 {
     width: 60px;
     height: 60px;
     left: 80%;
     animation-delay: 5s;
 }

 .bubble-3 {
     width: 100px;
     height: 100px;
     left: 60%;
     animation-delay: 10s;
 }

 @keyframes bubble {
     0% {
         transform: translateY(100vh) scale(0);
         opacity: 0;
     }

     50% {
         opacity: 1;
     }

     100% {
         transform: translateY(-100px) scale(1);
         opacity: 0;
     }
 }

 /* Introduction section with wave */
 /* Base styles */
 .intro-section-a1 {
     padding: 80px 20px;
     position: relative;
 }

 .intro-section-a1::before {
     content: "";
     position: absolute;
     top: -2px;
     left: 0;
     width: 100%;
     height: 60px;
     background: rgb(13, 156, 13);
     background-size: cover;
 }

 .container-a1 {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
 }

 .intro-content-a1 {
     text-align: center;
     max-width: 900px;
     margin: 40px auto 0;
 }

 .intro-content-a1 h2 {
     font-size: 2.5rem;
     color: #58b447;
     margin-bottom: 20px;
     font-weight: 700;
     line-height: 1.3;
     /* position: ; */
 }

 .intro-content-a1 h2::after {
     content: "";
     width: 120px;
     height: 4px;
     background: linear-gradient(45deg, #58b447, #4a9b38);
     display: block;
     margin: 20px auto;
     border-radius: 2px;
     box-shadow: 0 2px 10px rgba(88, 180, 71, 0.3);
 }

 .intro-content-a1 p {
     font-size: 1.2rem;
     color: #666;
     line-height: 1.8;
     margin: 0 auto;
     max-width: 750px;
     padding: 0 10px;
 }

 /* Responsive Breakpoints */
 @media (max-width: 992px) {
     .intro-content-a1 h2 {
         font-size: 2rem;
     }

     .intro-content-a1 p {
         font-size: 1.05rem;
     }
 }

 @media (max-width: 768px) {
     .intro-section-a1 {
         padding: 60px 15px;
     }

     .intro-content-a1 h2 {
         font-size: 1.8rem;
     }

     .intro-content-a1 p {
         font-size: 1rem;
         line-height: 1.6;
     }
 }

 @media (max-width: 480px) {
     .intro-section-a1 {
         padding: 40px 10px;
     }

     .intro-content-a1 h2 {
         font-size: 1.5rem;
     }

     .intro-content-a1 h2::after {
         width: 80px;
         height: 3px;
     }

     .intro-content-a1 p {
         font-size: 0.95rem;
         line-height: 1.5;
     }
 }

 /* Services Section with 3D cards */
 .services-section {
     padding: 50px 0;
     background: #f0f9f4;
     position: relative;
 }

 .section-title {
     text-align: center;
     font-size: 3rem;
     color: #58B447;
     margin-bottom: 60px;
     position: relative;
     font-weight: 800;
 }

 .section-title::after {
     content: '';
     width: 100px;
     height: 6px;
     background: linear-gradient(90deg, #58B447, #4a9b38, #58B447);
     display: block;
     margin: 25px auto;
     border-radius: 3px;
     animation: gradientShift 3s ease-in-out infinite;
 }

 @keyframes gradientShift {

     0%,
     100% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .service-card {
     background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
     padding: 40px 30px;
     border-radius: 25px;
     box-shadow: 0 20px 40px rgba(88, 180, 71, 0.1);
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     border: 1px solid rgba(88, 180, 71, 0.1);
     position: relative;
     overflow: hidden;
 }

 .service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 6px;
     background: linear-gradient(90deg, #58B447, #4a9b38);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .service-card:hover::before {
     transform: scaleX(1);
 }

 .service-card:hover {
     transform: translateY(-15px) scale(1.02);
     box-shadow: 0 30px 60px rgba(88, 180, 71, 0.2);
     background: linear-gradient(145deg, #ffffff 0%, #f8fff6 100%);
 }

 .service-card h3 {
     color: #58B447;
     font-size: 1.6rem;
     margin-bottom: 20px;
     font-weight: 700;
     position: relative;
     display: inline-block;
 }

 .service-card h3::after {
     content: '✨';
     position: absolute;
     right: -30px;
     top: 0;
     font-size: 1.2rem;
     opacity: 0;
     transition: all 0.3s ease;
 }

 .service-card:hover h3::after {
     opacity: 1;
     right: -35px;
 }

 /* ✅ Existing Styles (Keep as is) */


 /* 📱 Responsive Fixes */
 @media (max-width: 1200px) {
     .section-title {
         font-size: 2.5rem;
     }

     .services-grid {
         gap: 30px;
     }
 }

 @media (max-width: 992px) {
     .section-title {
         font-size: 2.2rem;
         margin-bottom: 50px;
     }

     .services-grid {
         grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 25px;
     }

     .service-card {
         padding: 30px 25px;
     }

     .service-card h3 {
         font-size: 1.4rem;
     }
 }

 @media (max-width: 768px) {
     .section-title {
         font-size: 2rem;
         margin-bottom: 40px;
     }

     .services-grid {
         grid-template-columns: 1fr;
         gap: 20px;
         margin-top: 40px;
     }

     .service-card {
         padding: 25px 20px;
         border-radius: 20px;
     }

     .service-card h3 {
         font-size: 1.3rem;
     }

     .service-card p {
         font-size: 0.95rem;
         line-height: 1.6;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 1.7rem;
     }

     .services-section {
         padding: 40px 0;
     }

     .service-card {
         padding: 20px 15px;
         border-radius: 18px;
     }

     .service-card h3 {
         font-size: 1.2rem;
     }

     .service-card p {
         font-size: 0.9rem;
         line-height: 1.5;
     }
 }


 /* Booking Steps with enhanced animation */
 .booking-section {
     padding: 50px 10px;
     background: linear-gradient(135deg, #58B447 0%, #4a9b38 100%);
     color: white;
     position: relative;
     overflow: hidden;
 }

 .booking-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><circle cx="50" cy="50" r="40"/></svg>');
     background-size: 200px 200px;
     animation: patternMove 20s linear infinite;
 }

 @keyframes patternMove {
     0% {
         background-position: 0 0;
     }

     100% {
         background-position: 200px 200px;
     }
 }

 .booking-section .section-title {
     color: white;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .booking-section .section-title::after {
     background: linear-gradient(90deg, #ffffff, #f0f8ff, #ffffff);
 }

 .steps-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     margin-top: 60px;
     position: relative;
     z-index: 2;
 }

 .step-card {
     text-align: center;
     padding: 40px 30px;
     border-radius: 20px;
     background: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     position: relative;
     transition: all 0.4s ease;
     color: #333;
     border: 2px solid rgba(255, 255, 255, 0.3);
 }

 .step-card:hover {
     transform: translateY(-10px) scale(1.05);
     background: rgba(255, 255, 255, 1);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 .step-number {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #58B447, #4a9b38);
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     font-weight: bold;
     margin: 0 auto 25px;
     transition: all 0.3s ease;
     box-shadow: 0 10px 20px rgba(88, 180, 71, 0.3);
 }

 .step-card:hover .step-number {
     transform: rotate(360deg);
     box-shadow: 0 15px 30px rgba(88, 180, 71, 0.4);
 }

 /* ✅ Existing Styles (Keep as is) */


 /* 📱 Responsive Fixes */
 @media (max-width: 1200px) {
     .booking-section {
         padding: 45px 20px;
     }

     .step-card {
         padding: 35px 25px;
     }

     .step-number {
         width: 70px;
         height: 70px;
         font-size: 1.8rem;
     }
 }

 @media (max-width: 992px) {
     .booking-section .section-title {
         font-size: 2.3rem;
         margin-bottom: 40px;
     }

     .steps-container {
         gap: 30px;
         margin-top: 40px;
     }

     .step-card h3 {
         font-size: 1.3rem;
     }

     .step-card p {
         font-size: 1rem;
         line-height: 1.6;
     }
 }

 @media (max-width: 768px) {
     .booking-section {
         padding: 40px 15px;
     }

     .booking-section .section-title {
         font-size: 2rem;
         line-height: 1.3;
     }

     .steps-container {
         grid-template-columns: 1fr;
         /* Single column for better readability */
         gap: 25px;
     }

     .step-card {
         padding: 30px 20px;
         border-radius: 18px;
     }

     .step-number {
         width: 65px;
         height: 65px;
         font-size: 1.6rem;
     }
 }

 @media (max-width: 480px) {
     .booking-section {
         padding: 35px 12px;
     }

     .booking-section .section-title {
         font-size: 1.6rem;
     }

     .step-card {
         padding: 25px 15px;
     }

     .step-card h3 {
         font-size: 1.1rem;
     }

     .step-card p {
         font-size: 0.95rem;
         line-height: 1.5;
     }

     .step-number {
         width: 55px;
         height: 55px;
         font-size: 1.4rem;
     }
 }


 /* Enhanced locations section */
 .locations-section {
     max-width: 1200px;
     margin: 0 auto;
     padding: 60px 20px;
 }

 .section-title {
     text-align: center;
     font-size: 2.5rem;
     color: #2c5530;
     margin-bottom: 50px;
     font-weight: 700;
 }

 .locations-container {
     display: grid;
     gap: 40px;
 }

 .location-item {
     border-bottom: 2px solid #e9ecef;
     padding-bottom: 30px;
 }

 .location-item:last-child {
     border-bottom: none;
 }

 .location-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
 }

 .location-number {
     width: 35px;
     height: 35px;
     background: #58B447;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 1rem;
 }

 .location-title {
     font-size: 1.8rem;
     font-weight: 600;
     color: #2c5530;
 }

 .location-description {
     font-size: 1.1rem;
     color: #5a6c68;
     line-height: 1.7;
     text-align: justify;
     margin-left: 50px;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .locations-section {
         padding: 40px 15px;
     }

     .section-title {
         font-size: 2rem;
     }

     .location-title {
         font-size: 1.5rem;
     }

     .location-description {
         font-size: 1rem;
         margin-left: 0;
         margin-top: 10px;
     }

     .location-header {
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;
     }
 }

 @media (max-width: 480px) {
     .section-title {
         font-size: 1.8rem;
     }

     .location-title {
         font-size: 1.3rem;
     }

     .location-description {
         font-size: 0.95rem;
     }

     .location-number {
         width: 30px;
         height: 30px;
         font-size: 0.9rem;
     }
 }




 /* Enhanced features section */
 .why-choose-section {
     padding: 50px 15px;
     background: #e9ece9;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 25px;
     margin-top: 40px;
 }

 .feature-item {
     text-align: center;
     padding: 30px 20px;
     border-radius: 20px;
     background: linear-gradient(145deg, #ffffff, #fafafa);
     transition: all 0.3s ease;
     border: 2px solid transparent;
     position: relative;
     overflow: hidden;
 }

 .feature-item:hover {
     border-color: #58B447;
     background: linear-gradient(145deg, #ffffff, #f8fff6);
     box-shadow: 0 12px 25px rgba(88, 180, 71, 0.15);
     transform: translateY(-6px);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     background: linear-gradient(135deg, #58B447, #4a9b38);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 15px;
     font-size: 2rem;
     color: white;
     box-shadow: 0 10px 20px rgba(88, 180, 71, 0.3);
     transition: all 0.3s ease;
 }

 .feature-item:hover .feature-icon {
     transform: scale(1.1);
 }

 .feature-item h4 {
     color: #58B447;
     font-size: 1.2rem;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .feature-item p {
     color: #666;
     line-height: 1.6;
     font-size: 0.95rem;
 }

 /* Responsive tweaks */
 @media (max-width: 768px) {
     .features-grid {
         gap: 20px;
     }

     .feature-item {
         padding: 20px 15px;
     }

     .feature-icon {
         width: 60px;
         height: 60px;
         font-size: 1.8rem;
     }

     .feature-item h4 {
         font-size: 1.1rem;
     }

     .feature-item p {
         font-size: 0.9rem;
     }
 }

 @media (max-width: 480px) {
     .features-grid {
         grid-template-columns: 1fr;
     }

     .feature-item {
         padding: 18px 12px;
     }
 }