* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}


body {
    font-family: 'Poppins', sans-serif;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.03"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
        linear-gradient(170deg, rgba(0, 153, 204, 0.07) 0%, rgba(255, 165, 0, 0.07) 100%);
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --orange: #F5A623 --accent-color: #8D6E63;
    --bg-color: #F9F9F9;
    --text-color: #333333;
    --white: #FFFFFF;
    --orange: #F7941E;
}



/* Loader full screen */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #0D0121;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

#loader.hide {
    opacity: 0;
    pointer-events: none;
}


:root {
    --text-color: #333;
    --text-hover-color: #fff;
    --primary-color: #28a745;
    --secondary-color: #f5a623;
    --background-color: #f4f4f4;

}


/* Optional: hide loader after page loads */
body.loaded #loader {
    display: none;
}



.buttom-line {
    border-bottom: 3px solid var(--orange);
    display: inline-block;
}

/* Fixed Social Icons */
.social-fixed-icons {
    position: fixed;
    top: 60%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-fixed-icons .icon {
    width: 45px;
    height: 45px;
    background-color: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.social-fixed-icons .icon:hover {
    transform: scale(1.1) rotate(360deg);
}

/* Platform-specific hover colors */
.icon.whatsapp:hover {
    background-color: #25D366;
}

.icon.call:hover {
    background-color: #007BFF;
}

.icon.email:hover {
    background-color: #ff4f4f;
}

.icon.location:hover {
    background-color: #198754;
}


.fix-icon-4 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 20px;
    background-color: var(--primary-color);
    padding: 0px 15px;
    border-radius: 2px;
    z-index: 9999;
    color: white;
}

.fix-icon-4:hover {
    background-color: var(--secondary-color);
    color: white !important;
}




/* social links section end */


/*@@@@@@@@@@@@ topbar start   @@@@@@@@@@ */
.topbar {
    background-color: #222;
    /* Deep grey for clean look */
    color: #f0f0f0;
    font-size: 14px;
    padding: 10px 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 100;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}


.topbar a {
    color: #ddd;
    transition: color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
}

.topbar a:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.topbar-center {
    flex: 1;
    margin: 0 30px;
    overflow: hidden;
}

.topbar-center marquee {
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*@@@@@@@@@@@@ topbar end   @@@@@@@@@@ */



/* Navbar Links */
/* .home {
    color: white !important;
    background-color: var(--primary-color);
} */

.navbar-nav .nav-link {
    color: var(--black);
    font-weight: 500;
    margin-right: 15px;
    padding: 10px 15px;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
    border-radius: 6px;
    /* Same as home */
}

/* Animated Background */
.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
    border-radius: 6px;
    /* Rounded corners for hover background */
}

/* On Hover */
.navbar-nav .nav-link:hover::before {
    transform: translateY(0);
}

.navbar-nav .nav-link:hover {
    color: var(--text-hover-color);
}


.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
}

/* hero section start */
.hero-section {
    height: 100vh;
    background: url('../images/banner/pexels-joey-kyber-31917-129743.jpg') no-repeat center center/cover;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.468);
    /* dark overlay */
    z-index: 1;
}

.hero-section .content {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero-section p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #f0f0f0;
}

.hero-section .btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s ease;
}

.hero-section .btn:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }
}




/* about-us section start */
.about-us {
    padding: 60px 0px;
}

.about-us-para {
    text-align: justify;
}

.about-us-img {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 100%; */
    position: relative;
}



.about-heading {
    font-size: 22px;
    font-weight: 900;
    color: var(--darkblue);
    position: relative;
}

.about-heading h1::before {
    content: '';
    position: absolute;
    background: var(--orange);
    width: 140px !important;
    height: 3px;
    top: 94%;
}

.about-services p img {
    width: 38px;
}


.readmore a {
    text-decoration: none;
}


.line {

    font-weight: 800;
    color: var(--darkblue);
    position: relative;
}

.line::before {
    content: '';
    position: absolute;
    background: var(--orange);
    width: 140px !important;
    height: 3px;
    top: 94%;
}

/* about-us section start */



/* counter start */
.counter-section {
    background-color: #1b2d2a;
    /* Matches your main dark green tone */
    padding: 60px 0;
}

.counter-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    /* Aqua color for count */
}

.counter-section p {
    font-size: 1.1rem;
    margin-top: 10px;
    color: #ffffff;
}


/* counter end  */




/* our product start */

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 20px;
}

.product-img {
    position: relative;
    overflow: hidden;
}



/* 
.product-card:hover .product-img img {
    transform: scale(1.1);
} */

.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}

.product-card:hover .product-hover {
    opacity: 1;
}

.product-hover i {
    font-size: 2rem;
    color: #fff;
    transform: scale(0.7);
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-hover i {
    transform: scale(1.2);
}





.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.product-img {
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.product-img img {
    width: 100%;
    height: 300px;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-content {
    padding: 1rem;
    text-align: center;
}

.product-content h5 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-content .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 5px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.product-card:hover {
    .btn {
        background-color: var(--primary-color);
        color: #ffff;
        border: none;
    }
}


.section-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
}

.product-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#our-products-wrapper {
    position: relative;
    overflow: hidden;

}

.prod-hvr:hover {
    border: 8px solid var(--primary-color);

}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.floating-boxes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-boxes-bg::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: none;
}

.floating-boxes-bg .box {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #28a746e0;
    /* light green */
    animation: floatBox 20s linear infinite;
    border-radius: 3px;
}

@keyframes floatBox {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) translateX(100px);
        opacity: 0;
    }
}

/* Positioning and random delay for multiple boxes */
.floating-boxes-bg .box:nth-child(1) {
    left: 5%;
    animation-delay: 0s;
}

.floating-boxes-bg .box:nth-child(2) {
    left: 15%;
    animation-delay: 2s;
}

.floating-boxes-bg .box:nth-child(3) {
    left: 25%;
    animation-delay: 4s;
}

.floating-boxes-bg .box:nth-child(4) {
    left: 35%;
    animation-delay: 1s;
}

.floating-boxes-bg .box:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
}

.floating-boxes-bg .box:nth-child(6) {
    left: 65%;
    animation-delay: 6s;
}

.floating-boxes-bg .box:nth-child(7) {
    left: 75%;
    animation-delay: 5s;
}

.floating-boxes-bg .box:nth-child(8) {
    left: 85%;
    animation-delay: 1.5s;
}

.floating-boxes-bg .box:nth-child(9) {
    left: 95%;
    animation-delay: 2.5s;
}

.floating-boxes-bg .box:nth-child(11) {
    left: 8%;
    animation-delay: 0.5s;
}

.floating-boxes-bg .box:nth-child(12) {
    left: 18%;
    animation-delay: 2.7s;
}

.floating-boxes-bg .box:nth-child(13) {
    left: 28%;
    animation-delay: 4.4s;
}

.floating-boxes-bg .box:nth-child(14) {
    left: 38%;
    animation-delay: 1.3s;
}

.floating-boxes-bg .box:nth-child(15) {
    left: 52%;
    animation-delay: 3.6s;
}

.floating-boxes-bg .box:nth-child(16) {
    left: 60%;
    animation-delay: 6.8s;
}

.floating-boxes-bg .box:nth-child(17) {
    left: 70%;
    animation-delay: 5.2s;
}

.floating-boxes-bg .box:nth-child(18) {
    left: 82%;
    animation-delay: 1.1s;
}

.floating-boxes-bg .box:nth-child(19) {
    left: 90%;
    animation-delay: 3.9s;
}

.floating-boxes-bg .box:nth-child(20) {
    left: 98%;
    animation-delay: 2.2s;
}





/* our gallery start */
/* working gallery session start here */

.our-gallery {
    position: relative;
    margin-bottom: 20px;
    margin-top: 20px;
    border: 1px solid gainsboro;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 0.7s ease-in-out;
}

.our-gallery:hover {
    border: 4px solid var(--orange);

}

.p {
    text-align: center;
    transition: 0.7s ease-in-out;
    width: 100%;
    font-style: italic;
    text-transform: capitalize;
}

.our-gallery:hover .p {
    transform: scale(1.07);
    text-align: center;
    color: #ffff;
    transform: rotate(360deg);
    background-color: var(--orange);
    font-size: 19px;
    font-weight: 700;
    font-style: italic;
}

.our-gallery:hover .view {
    opacity: 1;
    height: 100%;
    width: 100%;

}

.work-heading h1 {
    color: var(--black);
}

.high-light {
    color: var(--primary);

}

.our-gallery .view {
    overflow: hidden;
    transition: 0.3s ease;
    height: 0%;
    background-color: #000000a9;
    width: 0%;
    position: absolute;
    top: 0;

    opacity: 0;
}

.our-gallery .view .add-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    transform: translateY(120px);
    transition: 0.3s ease;
}

.our-gallery .view .add-icon a i {
    color: var(--orange);
    font-size: 25px;


}

.our-gallery:hover .fa {
    transform: rotate(180deg);
}

.our-work-section {
    /* background: url(/assets/images/banner/17580.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat; */
    padding: 50px 0;
}

.our-work-section .our-gallery .view .add-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100px);
}

@media (max-width:500px) {
    .our-gallery .view .add-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        transform: translateY(40px);
    }
}

@media screen and (max-width:500px) {

    .gallery-section {
        padding: 0px 0 !important;
    }
}


/* working gallery session end here */









/* form start */
/* .formmm {
    background-color: #F5F5F5;
} */


.form-box {
    background-image: url(/assets/images/banner/contact-form-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.form-box {
    /* background: var(--primary-color); */
    border-left: 6px solid var(--secondary-color);

}

.custom-input {
    border-radius: 10px;
    border: 1px solid #cde8cd;
    background-color: #ffffff;
    padding: 12px 16px;
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.custom-input:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 0 0.15rem rgba(25, 135, 84, 0.25);
}

.form-box h2 {
    font-weight: 600;
    color: #ECECEC;
}

.btn-success {
    background-color: var(--secondary-color);
    border: none;
}








/* testimonial start */
.bg-img {
    background-image: url(/assets/images/banner/rm422-047.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* footer start */
.list-unstyled li a {
    text-decoration: none;
}

.top-footer {
    background-color: #198754;
    color: white;
    padding: 20px 10px;
}

.test-head {
    color: var(--orange);
    font-weight: bolder;
}

.testi-box {
    border: 1px solid var(--orange);
    border-radius: 5px;
}

/* .top-footer-content {
    text-align: start;
  } */


.list-unstyled li a:hover {
    color: var(--primary-color) !important;
    font-weight: bold;
    border-bottom: 1px solid white;
    transition: ease-in-out;

}


.social-media a i {
    color: white;

}

.footer-head {
    font-size: 22px;
    font-weight: 700;
}

/* testimonial start */
.testimonial img {
    width: 40px;
    /* height: 80px; */
    object-fit: cover;
    /* border-radius: 50%; */
    margin: 0 auto 15px auto;
}












/*@@@@@@@@@@@@@@@@@@@@@ contact page start@@@@@@@@@@@@@@@@@@@ */
.contact-hero-banner {
    min-height: 80vh;
    /* Instead of fixed height */
    position: relative;
    overflow: hidden;
}

.contact-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.black-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 15px;
}

/* Typewriter effect */
.typewriter-text {
    overflow: hidden;
    border-right: 2px solid #fff;
    white-space: nowrap;
    animation: typing 3s steps(30, end) forwards, blink 0.8s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Responsive text */
.contact-text h1 {
    font-size: 2.5rem;
}

.contact-text p {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .contact-text h1 {
        font-size: 2rem;
    }

    .contact-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-text h1 {
        font-size: 1.6rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }
}



.contc-box {

    border-right: 2px solid var(--orange);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.contact p {
    color: #666;
    font-size: 1rem;
}

.contact .btn-warning {
    background-color: var(--orange);
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
}

.contact .btn-warning:hover {
    background-color: var(--primary-color);
}

.contact .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
}

.contact .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.contact .form-check-label {
    font-size: 0.95rem;
    color: var(--text-color);
}

.contact .btn[type="submit"] {
    font-weight: 600;
    padding: 12px 0;
    font-size: 1.1rem;
    background-color: var(--orange);
    transition: all 0.3s ease;
}

.contact .btn[type="submit"]:hover {
    background-color: var(--primary-color);
}

.h6-clr {
    color: var(--orange);
}

.text-warning {
    color: var(--orange) !important;
}


.mappp {
    margin-top: 50px;
}

@media(max-width:500px) {
    .mappp {
        margin-top: 25px;
    }
}

@media(max-width:991px) {
    .contc-box {
        border-right: none;
    }
}

/* .contc-box {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
} */




/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ about us page start @@@@@@@@@@@@@@@@@@@@@@@@@@*
/* Buttons (nav pills) */
.nav-pills .nav-link {
    background-color: #f0f0f0;
    color: #333;
    transition: all 0.3s ease-in-out;
    border-radius: 30px;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Icon Card Styling */
.card-hover {
    transition: all 0.4s ease;
}

.card-hover i {
    transition: transform var(--icon-rotate-speed) ease-in-out;
    display: inline-block;
}

/* Icon rotate on card hover */
.card-hover:hover i {
    transform: rotate(360deg);
    color: var(--primary-color);
}

/* Optional: hover shadow */
.card-hover:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.process-section {
    background-color: #f4f4f4;
}

.section-subtitle {
    color: var(--primary-color);
    /* change as needed */
    font-weight: 600;
    text-transform: uppercase;
}

.scroll-wrapper {
    overflow: hidden;
    position: relative;
}

.scroll-cards {
    display: flex;
    gap: 20px;
    animation: scroll-left 30s linear infinite;
    padding: 10px;
}

.scroll-card {
    flex: 0 0 280px;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.scroll-card:hover {
    transform: translateY(-5px);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}


/*@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ gallery page start @@@@@@@@@@@@@@@@@@@@@@@@@@@@ */
/* Gallery section styles with namespace prefixes to avoid conflicts */
/* 
.gallery-section {
    padding: 60px 20px;
}

.gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gallery-heading {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #222;
}

.gallery-subheading {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

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

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(40, 167, 69, 0.9);
    color: #fff;
    opacity: 0;
    transition: 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.overlay p {
    font-size: 1rem;
    margin-bottom: 16px;
}

.overlay .btn {
    padding: 8px 20px;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s;
}

.overlay .btn:hover {
    background: #fff;
    color: #28a745;
} */