body {
    font-family: Arial, sans-serif;
   }

   /* ================= THEME (GREEN ONLY) ================= */
   :root {
    --green: #28a745;
    --green-dark: #218838;
    --dark: #1f2933;
   }

   /* ================= NAVBAR ================= */
   .navbar {
    background: #ffffff;
    padding: 14px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   }

   .navbar-brand {
    font-weight: 600;
    letter-spacing: 1px;
    color: #000 !important;
   }

   .nav-link {
    color: #333 !important;
    font-weight: 500;
   }

   .nav-link:hover {
    color: var(--green) !important;
   }

   .btn-contact {
    border: 2px solid #000;
    padding: 8px 22px;
    font-weight: 600;
    background: transparent;
   }

   .btn-contact:hover {
    background: #000;
    color: #fff;
   }

   /* ================= HERO ================= */
   .hero {
    min-height: 90vh;
    background:
     linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
     url('img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
   }

   .hero h1 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
   }

   .hero p {
    font-size: 20px;
    color: #f1f1f1;
   }

   .hero .btn-primary {
    background: var(--green);
    border: none;
    padding: 12px 32px;
    font-size: 18px;
   }

   .hero .btn-primary:hover {
    background: var(--green-dark);
   }

   /* ================= ABOUT ================= */
   .about {
    padding: 70px 0;
   }

   .about small {
    color: var(--green);
    font-weight: 700;
    letter-spacing: 1px;
   }

   .about h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 15px 0;
   }

   .about p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
   }

   .about a {
    color: var(--green);
    font-weight: 600;
    text-decoration: underline;
   }

   .about img {
    width: 100%;
    border-radius: 6px;
   }

   /* ================= SECTIONS ================= */
   section {
    padding: 50px 0;
   }

   section h2 {
    color: var(--green);
    font-weight: 700;
   }
			
			
			/* ================= ENQUIRY BUTTON ================= */
			.btn-enquiry {
					background: #28a745;
					color: #fff;
					font-weight: 600;
					padding: 10px 26px;
					border-radius: 6px;
					border: none;
					transition: 0.3s ease;
			}

			.btn-enquiry:hover {
					background: #218838;
					color: #fff;
					text-decoration: none;
			}


   /* ================= CARDS ================= */
   .service-box {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
   }

   .service-box:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.12);
   }

   .service-box h4,
   .service-box h5 {
    color: var(--green);
   }
			
			
			
			/* Professional circular slider arrows */
.pro-arrow{
    width:40px;
    height:40px;
    top:50%;
    transform:translateY(-50%);
    background:#ffffff;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,0.25);
    opacity:1;
}

/* Remove default Bootstrap icons */
.pro-arrow .carousel-control-prev-icon,
.pro-arrow .carousel-control-next-icon{
    display:none;
}

/* Custom arrow shape */
.carousel-control-prev.pro-arrow::after,
.carousel-control-next.pro-arrow::after{
    content:'';
    width:10px;
    height:10px;
    border-top:3px solid #333;
    border-right:3px solid #333;
    position:absolute;
    top:50%;
    left:50%;
}

/* Left arrow */
.carousel-control-prev.pro-arrow::after{
    transform:translate(-40%,-50%) rotate(-135deg);
}

/* Right arrow */
.carousel-control-next.pro-arrow::after{
    transform:translate(-60%,-50%) rotate(45deg);
}

/* Hover */
.pro-arrow:hover{
    background:#f1f1f1;
}


					
			
		/* ================= TESTIMONIAL SPACING ================= */
		.testimonial-section{
			background:#f6fff9;
			padding:80px 0;
		}

		.testimonial-header{
			display:flex;
			justify-content:space-between;
			align-items:center;
			margin-bottom:30px;
		}

		.testimonial-header h2{
			color:#28a745;
			font-weight:700;
			margin:0;
		}

		/* ARROWS TOP RIGHT */
		.testimonial-controls button{
			background:#28a745;
			color:#fff;
			border:none;
			width:42px;
			height:42px;
			border-radius:50%;
			font-size:22px;
			margin-left:10px;
			cursor:pointer;
			transition:0.3s;
		}
		.testimonial-controls button:hover{
			background:#218838;
		}

		/* SLIDER */
		.testimonial-wrapper{
			position:relative;
			width:100%;
		}

		.testimonial-slide{
			display:none;
			width:100%;
			background:#ffffff;
			padding:40px 50px;
			border-radius:8px;
			border:1px solid #eaeaea;
			position:relative;
			animation:slideFade 0.6s ease;
		}

		.testimonial-slide.active{
			display:block;
		}

		/* QUOTE ICON */
		.quote-icon{
			font-size:100px;
			color:#28a745;
			position:absolute;
			top:-20px;
			left:25px;
			opacity:0.15;
		}

		/* TEXT */
		.testimonial-slide p{
			font-size:17px;
			line-height:1.8;
			color:#444;
			margin-bottom:20px;
		}

		.testimonial-slide h5{
			margin:0;
			font-weight:600;
			color:#28a745;
		}

		.testimonial-slide .location{
			font-size:13px;
			color:#777;
		}

		/* ANIMATION */
		@keyframes slideFade{
			from{
							opacity:0;
							transform:translateX(30px);
			}
			to{
							opacity:1;
							transform:translateX(0);
			}
		}

		/* MOBILE */
		@media(max-width:768px){
			.testimonial-slide{
							padding:30px 25px;
			}
			.testimonial-header{
							flex-direction:column;
							align-items:flex-start;
			}
			.testimonial-controls{
							margin-top:15px;
			}
		}
 





   /* ================= CONTACT ================= */
   .contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
   }

   .map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
   }

   /* ================= FAQ (THEME MATCHED) ================= */
   .faq-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
   }

   .faq-question {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    color: #28a745;
    position: relative;
   }

   .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 20px;
    color: #28a745;
   }

   .faq-question:not(.collapsed)::after {
    content: "−";
   }

   .faq-answer {
    padding: 0 22px 18px;
    color: #555;
    line-height: 1.6;
   }

   /* ================= FOOTER ================= */
   .site-footer {
    background: #1f2933;
    color: #cfd8dc;
    padding: 60px 0 25px;
    font-size: 15px;
   }

   .footer-logo {
    height: 50px;
    margin-bottom: 15px;
   }

   .footer-about {
    line-height: 1.6;
    color: #b0bec5;
   }

   .footer-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
   }

   .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
   }

   .footer-menu li {
    margin-bottom: 8px;
   }

   .footer-menu a {
    color: #cfd8dc;
    text-decoration: none;
   }

   .footer-menu a:hover {
    color: #28a745;
   }

   .footer-social {
    width: 100px;
    margin-right: 8px;
    vertical-align: top;
   }
   .footer-icon {
    width: 18px;
    margin-right: 8px;
    vertical-align: top;
   }

   .site-footer a {
    color: #ffffff;
    text-decoration: none;
   }

   .site-footer a:hover {
    color: #28a745;
   }

   .footer-social-wrapper {
    margin: 25px 0 15px;
   }

   .footer-social-wrapper a {
    display: inline-block;
    margin: 0 10px;
   }

   .footer-social-wrapper img {
    width: 34px;
    height: 34px;
    background: #ffffff;
    padding: 6px;
    border-radius: 50%;
   }

   .footer-bottom {
    font-size: 14px;
    color: #90a4ae;
    margin-top: 10px;
   }

   /* MOBILE */
   @media (max-width: 767px) {
    .site-footer {
     text-align: center;
    }
   }

   /* ================= MOBILE ================= */
   @media (max-width: 991px) {
    .hero h1 {
     font-size: 32px;
    }

    .about h2 {
     font-size: 30px;
    }
   }
   /* ================= WHATSAPP FLOATING ICON ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px; 
}

.whatsapp-float img:hover {
    transform: scale(1.08);
}
