/* Root Colors & Global Styles */
:root {
    --parrot-green: #7ed957;
    --green: #27ae60;
    --dark-green: #145a32;
    --black: #050505;
    --light-bg: #f7f9fb;
    --white: #ffffff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
}

img {
    max-width: 100%;
    display: block;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(90deg, var(--dark-green), var(--green));
    font-size: 0.85rem;
}

.top-bar a {
    color: #fff;
}

/* Header / Navbar */
.main-header .navbar {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(6px);
}

.logo {
    width: 100%;
    height: 66px;
    object-fit: contain;
}

.brand-text {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1.05rem;
}

.brand-text span {
    color: var(--parrot-green);
}

.navbar-nav .nav-link {
    color: #e0e0e0;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.7rem 0.9rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0.9rem;
    bottom: 0.35rem;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--parrot-green), var(--green));
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 50%;
}

.navbar-nav .nav-link.active {
    color: var(--parrot-green);
}

/* Call Button in Navbar */
.btn-call {
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    color: #000;
    border-radius: 999px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border: none;
    box-shadow: 0 0 16px rgba(126, 217, 87, 0.4);
    font-weight: 600;
}

.btn-call:hover {
    color: #000;
    background: linear-gradient(135deg, var(--green), var(--parrot-green));
}

/* Hero Carousel */
.hero-slide {
   min-height: calc(100vh - 90px); /* adjust 90px if your header is taller/shorter */
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
     background: linear-gradient(120deg, rgba(5, 5, 5, 0.45), rgba(20, 90, 50, 0.45));
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.hero-content .subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--parrot-green);
    font-weight: 600;
}

.hero-content .title {
    font-family: "Montserrat", sans-serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 700;
    margin: 0.4rem 0 1rem;
}

.hero-content .title span {
    color: var(--parrot-green);
}

.hero-content .lead {
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 1.5rem;
}

.btn-primary-cts {
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    color: #000;
    box-shadow: 0 0 20px rgba(126, 217, 87, 0.5);
}

.btn-primary-cts:hover {
    background: linear-gradient(135deg, var(--green), var(--parrot-green));
    color: #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: drop-shadow(0 0 4px #000);
}


/* On small screens, center the text a bit more nicely */
@media (max-width: 767.98px) {
    .hero-content {
        text-align: left;
    }

    .hero-slide {
        min-height: 70vh;
    }
}

/* Extra padding so text never sticks to top/bottom */
.hero-slide .container {
    height: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-heading {
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green);
    font-weight: 600;
}

.section-title {
    font-family: "Montserrat", sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
}

.section-title span {
    color: var(--parrot-green);
}

.section-desc {
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* About */
.bg-light {
    background-color: var(--light-bg) !important;
}

.about-list li {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
}

.about-list i {
    color: var(--green);
    margin-right: 0.4rem;
}

/* About Image Grid */
.about-image-grid {
    position: relative;
    min-height: 320px;
}

.about-img.main {
    position: relative;
    z-index: 2;
}

.about-img.small {
    position: absolute;
    width: 44%;
    z-index: 3;
}

.about-img.small.top {
    top: -12%;
    right: 6%;
}

.about-img.small.bottom {
    bottom: -12%;
    left: 4%;
}

.floating-badge {
    position: absolute;
    right: 4%;
    bottom: -4%;
    background: linear-gradient(135deg, var(--dark-green), var(--green));
    color: #fff;
    padding: 0.7rem 1.1rem;
    border-radius: 1.6rem;
    font-size: 0.8rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    z-index: 4;
}

.floating-badge span {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Hover Effect for About Section Images */
.about-image-grid .about-img img {
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

/* Main Image Hover */
.about-image-grid .about-img.main img:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Small Image Hover */
.about-image-grid .about-img.small img:hover {
    transform: scale(1.08);
    filter: brightness(1.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

/* Optional: lift small images slightly on hover */
.about-image-grid .about-img.small:hover {
    transform: translateY(-6px);
    transition: transform 0.4s ease;
}


/* Services */
.service-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem 1.6rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    border: 1px solid rgba(126, 217, 87, 0);
}

.service-card .icon-wrap {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    color: #000;
    font-size: 1.6rem;
    box-shadow: 0 0 18px rgba(126, 217, 87, 0.5);
}

.service-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(126, 217, 87, 0.6);
}


/* 360° Icon Hover Animation for Service Section */
.service-card .icon-wrap i {
    display: inline-block;
    transition: transform 0.6s ease-in-out;
}

/* Hover rotates the icon */
.service-card:hover .icon-wrap i {
    transform: rotate(720deg);
    transition: transform 0.5s ease;
}




/* Why Choose Us */
.bg-dark-gradient {
    background: linear-gradient(135deg, #020202, var(--dark-green));
    color: #f4f4f4;
}

.why-card {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 1.5rem;
    padding: 1.4rem 1.4rem;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(126, 217, 87, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
}

.why-card .icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    color: #000;
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
}

.why-card h5 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.why-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
    border-color: rgba(126, 217, 87, 0.7);
}

/* Achievements / Counters */
.counter-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.6rem 1.1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.counter-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    margin: 0 auto 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    color: #000;
    font-size: 1.5rem;
}

.counter-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: var(--dark-green);
}

.counter-card p {
    margin: 0;
    font-size: 0.9rem;
}

/* Gallery */
#galleryGrid .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.1rem;
    cursor: pointer;
}

#galleryGrid .gallery-item img {
    transition: transform 0.4s ease;
}

#galleryGrid .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 5, 5, 0.1), rgba(20, 90, 50, 0.7));
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

#galleryGrid .overlay i {
    font-size: 2rem;
    color: #fff;
}

#galleryGrid .gallery-item:hover img {
    transform: scale(1.07);
}

#galleryGrid .gallery-item:hover .overlay {
    opacity: 1;
}

/* Contact */
.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-info-card .info-item .icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--parrot-green), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.9rem;
    color: #000;
}

.contact-info-card h6 {
    margin-bottom: 0.1rem;
    font-weight: 600;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: #444;
    text-decoration: none;
}

.contact-form-card .form-control {
    border-radius: 0.8rem;
    border-color: #dcdcdc;
}

.contact-form-card .form-control:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 0.15rem rgba(39, 174, 96, 0.15);
}

/* Map */
.map-section {
    height: 350px;
    overflow: hidden;
}

.map-embed {
    width: 100%;
    height: 100%;
}

/* Footer */
.footer {
    background: #050505;
    color: #e1e1e1;
    font-size: 0.92rem;
}

.footer-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: var(--parrot-green);
}

.footer-text {
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.footer-links a,
.footer-links span {
    color: #cfcfcf;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--parrot-green);
}

.footer-links i {
    font-size: 0.78rem;
    margin-right: 0.4rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.6rem;
}

.footer-contact i {
    margin-right: 0.5rem;
    margin-top: 0.15rem;
    color: var(--parrot-green);
}

.footer-contact a {
    color: #cfcfcf;
    text-decoration: none;
}

.footer-contact a:hover {
    color: var(--parrot-green);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 1.8rem 0 1rem;
}

.footer-bottom {
    font-size: 0.85rem;
}

/* Floating Buttons */
.floating-btn {
    position: fixed;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    border: none;
    text-decoration: none;
    font-size: 1.7rem;
    color: #fff;
    box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4);
    animation: pulseGlow 1.6s infinite;
}

.whatsapp-btn {
    bottom: 100px;
    background: #25d366;
}

.call-btn {
    bottom: 40px;
    background: var(--dark-green);
}

.floating-btn:hover {
    transform: translateY(-2px);
}

/* Back To Top */
.back-to-top {
    position: fixed;
    bottom: 160px;
    left: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(5, 5, 5, 0.9);
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    cursor: pointer;
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Animations */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-out;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

#callme {
        position: fixed;
        right: 15px;
        top: 190px;
        width: 70px;
        height: 70px;
        cursor: pointer;
      
        z-index: 99990;
    }
    #callme #callmeMain {
        -moz-border-radius: 50% !important;
        -webkit-border-radius: 50% !important;
        border-radius: 50% !important;
        -moz-background-clip: padding;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        background-color: rgb(40 167 69);
        width: 60px;
        height: 60px;
        -webkit-animation: zcwmini2 1.5s 0s ease-out infinite;
        -moz-animation: zcwmini2 1.5s 0s ease-out infinite;
        animation: zcwmini2 1.5s 0s ease-out infinite;
    }
    #callme #callmeMain:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: -6px;
        left: -6px;
        background-image: url(https://ss.zadarma.com/callbackWidget/images/mini.png);
        background-repeat: no-repeat;
        background-position: center center;
        -webkit-animation: zcwphone2 1.5s linear infinite;
        -moz-animation: zcwphone2 1.5s linear infinite;
        animation: zcwphone2 1.5s linear infinite;
    }
    @-webkit-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-moz-keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @keyframes zcwphone2 {
        0% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        25% {-ms-transform:rotate(30deg);-webkit-transform:rotate(30deg);transform:rotate(30deg);}
        50% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
        75% {-ms-transform:rotate(-30deg);-webkit-transform:rotate(-30deg);transform:rotate(-30deg);}
        100% {-ms-transform:rotate(0deg);-webkit-transform:rotate(0deg);transform:rotate(0deg);}
    }
    @-webkit-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-webkit-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @-moz-keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
    @keyframes zcwmini2 {
        0% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 0 rgba(0,0,0,0), 0 0 0 0 rgba(207,8,8, 0);}
        10% {box-shadow: 0 0 8px 6px , 0 0 12px 10px rgba(0,0,0,0), 0 0 12px 14px ;}
        100% {box-shadow: 0 0 8px 6px rgba(207,8,8, 0), 0 0 0 40px rgba(0,0,0,0), 0 0 0 40px rgba(207,8,8, 0);}
    }
/* Responsive */
@media (max-width: 991.98px) {
    .navbar-nav .nav-link::after {
        left: 0;
    }

    .hero-slide {
        min-height: 70vh;
    }

    .hero-content {
        text-align: left;
    }
	.cu-jf-cntr{
		justify-content:center!important
	}
	.cu-md-ds-nn{
		display:none!important
	}
	.sticky-top{
		position:relative;
	}
	
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

    .about-image-grid {
        margin-top: 2.5rem;
        min-height: auto;
    }

    .about-img.small.top,
    .about-img.small.bottom,
    .floating-badge {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .floating-badge {
        display: inline-block;
    }

    .map-section {
        height: 260px;
    }
}

@media (max-width: 575.98px) {
    .top-bar {
        /* display: none; */
    }

    .hero-content .title {
        font-size: 1.8rem;
    }

    .hero-content .lead {
        font-size: 0.9rem;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 1.4rem;
    }
}
