* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2D5035;
    --accent-color: #9E4B25;
    --secondary-color: #4C7B5D;
    --text-color: #2F3E2C;
    --white-color: #FAF7EC;
}

html,
body {
    overflow-x: hidden;
}


body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* Heading style */
h1,
h2,
h3,
h4,
.heading {
    font-family: 'Montserrat', sans-serif;


}

.fixed-icons {
    position: fixed;
    top: 70%;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.fixed-icons .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.fixed-icons .icon.call {
    background: #007bff;
    /* Blue */
}

.fixed-icons .icon.whatsapp {
    background: #25d366;
    /* WhatsApp Green */
}

.fixed-icons .icon.mail {
    background: #ff5e5e;
    /* Red */
}

.fixed-icons .icon:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-headinggg {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
    color: #000;
}

.section-headinggg::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff8500;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}


.heading {
    font-size: 2.8rem;
    color: var(--secondary-color);
}

.btn-theme {
    background-color: var(--accent-color) !important;
    color: #fff !important;
}

.btn-theme:hover {
    background-color: #fff !important;
    color: var(--accent-color) !important;
    border: 2px solid var(--accent-color) !important;
}

.section-headinggg {
    font-size: 2.3rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    /* letter-spacing: 1px; */
    font-family: 'Poppins', sans-serif;
}

.section-headinggg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 80px;
    background: var(--primary);
    border-radius: 2px;
}

@media(max-width-600px) {
    .section-headinggg {
        font-size: 1.5rem !important;
        font-weight: 500;
        font-family: 'Poppins', sans-serif;
    }

}

/* BUTTON */
.btn-theme {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    /* Cube shape */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 8px 20px rgba(0, 59, 115, 0.15);
    font-family: 'Poppins', sans-serif;
}

.btn-theme:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}



.btn-for-nav {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    /* padding: 5px; */
}

.btn-for-nav:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    /* padding: 5px; */
}




/* BUTTON */


/* Paragraphs and content */
body,
p,
span,
a,
li {
    font-family: 'Lora', serif;
}

/* icons */
/* whtsapp icon */
/* ✅ WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    animation: blink 1.2s infinite ease-in-out;
}

@keyframes blink {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0px rgba(37, 211, 102, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(37, 211, 102, 0.7);
    }
}





/* icons */


.fixed-sticker {
    position: fixed;
    bottom: 0px;
    /* bottom se thoda upar */
    left: 20px;
    /* right side */
    width: 140px;
    /* size tu apne hisaab se adjust kar sakta hai */
    z-index: 9999;
    /* taaki sabke upar dikhe */
    cursor: pointer;
}




.main-header {
    background-color: var(--accent-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 999;
}

.navbar-nav .nav-link {
    color: #000;
    padding: 12px 18px;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
}

.dropdown-menu .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #ffff;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #ffff;
    background-color: var(--primary-color);
}

/* Dropdown styling */
.dropdown-menu {
    border-radius: 0;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega Menu */
.mega-menu {
    width: 600px;
    padding: 20px;
}

.mega-links li {
    list-style: none;
    margin-bottom: 8px;
}

.mega-links li a {
    color: #000;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: 0.3s;
}

.mega-links li a:hover {
    color: var(--primary);
}

/* Hover dropdowns (desktop only) */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
    }

    .navbar-nav .mega-dropdown:hover>.mega-menu {
        display: block;
    }
}

/* Mobile view */
@media (max-width: 991px) {
    .mega-menu {
        width: 100% !important;
    }

    .mega-menu .col-md-8 {
        display: none !important;
    }
}

/* Top Bar */
.top-bar {
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    padding: 13px 0;
    overflow: hidden;
    position: relative;
}

.offer-text {
    white-space: nowrap;
    display: inline-block;
    animation: marquee 12s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Navbar */
.navbar-nav .nav-item:hover .dropdown-menu {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

.dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    border: none;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.dropdown-menu a {
    padding: 10px 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* enquiary button */
.enq-button {
    position: fixed;
    left: -70px;
    bottom: 280px;
    z-index: 9999;
    transform: rotate(270deg);

}


.enq-button a {
    text-decoration: none;
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    /* border-radius: 10px; */
}


.btn1 {
    background-color: #25d366;
    color: white;
    padding: 10px;
    border: 2px solid white;
    transition: ease-in-out 0.4s;
}

.btn-close {
    margin-bottom: 25px;
}



.btn1:hover {
    background-color: var(--white);
    color: #25d366;
    border: 2px solid #25d366;

    /* padding: 10px; */
    /* border: 2px solid var(--primary); */
}

#RefreshCaptcha1 {
    background-color: #25d366;
    color: #fff;
}

.enq-button a:hover {
    background-color: #fff;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.contact-heading {
    color: var(--secondry-color);
}

#err31 {
    color: #de3f4e;
}

#err11 {
    color: #de3f4e;
}

#err21 {
    color: #de3f4e;
}



@media(max-width:550px) {
    .enq-button a {

        padding: 8px 8px;
    }

    .fixed-sticker {
        position: fixed;
        bottom: 10px;
        /* bottom se thoda upar */
        right: 20px;
        /* right side */
        width: 60px;
        /* size tu apne hisaab se adjust kar sakta hai */
        z-index: 9999;
        /* taaki sabke upar dikhe */
        cursor: pointer;
    }

    .enq-button {
        display: none;
    }
}

/* enquiary button */


/* sliders */
.slider-container {
    position: relative;
    width: 100%;
    /* Full width instead of max-width */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slides {
    display: flex;
    transition: transform 0.8s ease-in-out;
    height: 550px;
}

.slide {
    min-width: 100%;
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.slide-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.5s;
}

.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide h2 {
    font-size: 40px;
    margin-bottom: 15px;
    position: relative;
}

/* .slide h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: var(--primary);
} */

.slide p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.slide-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.slide-btn:hover {
    background-color: transparent;
    color: var(--white);
}

.slide-btn.light {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    margin-left: 15px;
}

.slide-btn.light:hover {
    background-color: var(--accent-color);
    color: var(--background-color);
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 20px;
}

.nav-btn {
    background-color: rgba(0, 0, 0, 0.3);
    color: var(--secondary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    border: none;
}

.nav-btn:hover {
    background-color: var(--accent-color);
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .slides {
        height: 450px;
    }

    .slide-overlay {
        padding: 40px;
    }

    .slide h2 {
        font-size: 34px;
    }

    .slide p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .slides {
        height: 400px;
    }

    .slide-overlay {
        padding: 30px;
    }

    .slide h2 {
        font-size: 28px;
    }

    .slide p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .slides {
        height: 350px;
    }

    .slide-overlay {
        padding: 20px;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8));
    }

    .slide h2 {
        font-size: 22px;
    }

    .slide h2::after {
        width: 60px;
        height: 3px;
    }

    .slide p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .slide-btn {
        padding: 8px 16px;
        font-size: 12px;
        display: block;
        text-align: center;
        margin-bottom: 10px;
    }

    .slide-btn.light {
        margin-left: 0;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .slider-controls {
        bottom: 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .badge {
        padding: 4px 10px;
        font-size: 10px;
    }
}

.slide:last-child .slide-content {
    opacity: 1 !important;
    transition: none !important;
}


/********       Slider End      ***********/










/*** Services Start ***/
.service {
    padding-top: 40px;
}


.service .service-item {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    z-index: 1;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.2);
}

.service .service-item::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
    z-index: 2;
}

.service .service-item:hover:after {
    height: 100%;
    background: rgba(0, 0, 0, .4);
}

.service .service-item .service-content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.service .service-item:hover .service-content {
    opacity: 1;
}

.service .service-item:hover .service-content a.fs-4 {
    color: var(--white-color);
    transition: 0.5s;
    font-size: 2rem !important;
}

/* .service .service-item:hover .service-content a.fs-4:hover {
    color: var(--secondary-color);
} */

.service .service-item .service-tytle {
    position: absolute;
    width: 100%;
    height: 80px;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    display: flex;
    transition: 0.5s;
    z-index: 3;
    color: #fff;
}

.service .service-item:hover .service-tytle {
    margin-right: -100%;
}

.bg-icons {
    background-color: none;

}

/*** Services End ***/



/* ===== WHY CHOOSE US ===== */
#why-choose-us {
    position: relative;
    background: url('../images/backgrounds/why-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    background-attachment: fixed;
}

#why-choose-us .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

#why-choose-us .container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: auto;
}

#why-choose-us h2 {
    font-size: 32px;
    font-weight: bold;
}

#why-choose-us .underline {
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 10px auto 40px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
    background-color: #fff;
    border-radius: 50%;
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.icon-circle img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.featuree h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.featuree p {
    font-size: 14px;
    line-height: 1.5;
    max-width: 300px;
    margin: auto;
}

.btn-quote {
    background: var(--accent-color);
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-quote:hover {
    background: #fff;
    color: var(--accent-color);
}

/* Responsive text sizing */
@media (max-width: 768px) {
    #why-choose-us h2 {
        font-size: 26px;
    }

    .featuree p {
        font-size: 13px;
    }
}




/* cta  */
.cta-section {
    background: url('../images/backgrounds/cta-bg.png') center/cover no-repeat;
    position: relative;
    /* padding: 80px 20px; */
    color: #fff;
    text-align: center;
}

.cta-section .overlay {
    background: rgba(0, 0, 0, 0.55);
    /* Dark overlay */
    padding: 80px 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.cta-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #a4d600;
    /* green underline */
    margin: 10px auto 0;
}

.cta-section p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
    color: #eee;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary {
    background: #a4d600;
    color: #000;
}

.btn-primary:hover {
    background: #8cbc00;
}

.btn-secondary {
    background: #a4d600;
    color: #000;
}

.btn-secondary:hover {
    background: #8cbc00;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

/* cta  */












/* click content  */
.surface-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.surface-section .section-heading {
    position: absolute;
    top: 15%;
    /* background ke upar thoda gap */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    /* sabse upar */
    text-align: center;
}

.surface-section .section-heading h2 {
    font-size: 2rem;
    font-weight: 500;
    color: #fff;
    /* dark blue bg pe white text */
    text-transform: uppercase;
    /* letter-spacing: 1px; */
}

.bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Labels */
.label {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 2;
}

.label span {
    background: #a4d600;
    padding: 4px 10px;
    border-radius: 0px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    animation: blink 1.5s infinite;
    white-space: nowrap;
}

/* Blink animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ===== DEFAULT POSITIONS (DESKTOP) ===== */
.hospitality {
    top: 65%;
    left: 18%;
}

.residential {
    top: 62%;
    left: 30%;
}

.commercial {
    top: 50%;
    left: 50%;
}

.hospitals {
    top: 60%;
    left: 68%;
}

.educational {
    top: 58%;
    left: 85%;
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {
    .hospitality {
        top: 72%;
        left: 15%;
    }

    .residential {
        top: 60%;
        left: 25%;
    }

    .commercial {
        top: 48%;
        left: 50%;
    }

    .hospitals {
        top: 66%;
        left: 65%;
    }

    .educational {
        top: 55%;
        left: 82%;
    }

    .label span {
        font-size: 12px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .hospitality {
        top: 75%;
        left: 12%;
    }

    .residential {
        top: 65%;
        left: 20%;
    }

    .commercial {
        top: 50%;
        left: 50%;
    }

    .hospitals {
        top: 70%;
        left: 62%;
    }

    .educational {
        top: 60%;
        left: 80%;
    }

    .label span {
        font-size: 11px;
        padding: 2px 6px;
    }
}

/* ===== MODAL POPUP ===== */
.modd {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* click content  */





















/* award section */
.award-section {
    background: #f9fafb;
    position: relative;
    overflow: hidden;
}

.award-box {
    border: 2px solid transparent;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    border-image: linear-gradient(45deg, #ffc107, #28a745) 1;
}

.award-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.award-icon i {
    font-size: 50px;
    color: #ffc107;
    animation: pulse 2s infinite;
}

.highlight {
    color: #28a745;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Decorative leaves background like your attached style */
.award-section::before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: url('https://png.pngtree.com/png-clipart/20230821/original/pngtree-green-tree-leaves-nature-picture-image_8234627.png') no-repeat center/contain;
    opacity: 0.2;
}

.award-section::after {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 180px;
    height: 180px;
    background: url('https://png.pngtree.com/png-clipart/20230821/original/pngtree-green-tree-leaves-nature-picture-image_8234627.png') no-repeat center/contain;
    opacity: 0.15;
}

/* award section */




/*** Appoinment ***/
.appoinment {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url('../images/backgrounds/form-bg.jpg') left center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}



/* footer start */

.custom-footer {
    /* padding: 60px !important; */
    background-color: var(--primary);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    border: 1px dotted var(--primary-color);
}

.footer-logo {
    max-width: 140px;
}

.footer-text {
    font-size: 14px;
    color: var(--hover-bg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--hover-bg);
    padding-left: 5px;
}

.custom-footer h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.custom-footer p {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--hover-bg);
}

.social-icons a {
    font-size: 16px;
    color: var(--white);
    margin-right: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--hover-bg);
    transform: scale(1.15);
}

hr {
    border-color: var(--hover-bg);
    opacity: 0.3;
}

@media (max-width: 767px) {

    .custom-footer .col-md-6,
    .custom-footer .col-lg-2,
    .custom-footer .col-lg-3 {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }
}

/* footer end */

/* gallery page start */
/* Header Section */
.gallery-header h1 {
    font-size: 31px;
    font-weight: 600;
    color: var(--black);
    text-transform: uppercase;
}

.gallery-header p {
    font-size: 16px;
    color: var(--primary);
}

/* ===== Gallery Menu Styling ===== */
/* ===== Gallery Menu Styling ===== */
.gallery-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 10px;
}

.gallery-menu span {
    flex: 1 1 6;
    /* auto width on large */
    border: 2px solid #28a745;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    /* border-radius: 30px; */
    transition: all 0.3s ease;
    background: #fff;
    text-align: center;
}

/* Hover effect */
.gallery-menu span:hover {
    background: #4F642B;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Active tab */
.gallery-menu span.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Medium devices (tablet) = 3 per row */
@media (max-width: 992px) {
    .gallery-menu span {
        flex: 1 1 calc(33.33% - 12px);
    }
}

/* Small devices (mobile) = 2 per row */
@media (max-width: 576px) {
    .gallery-menu span {
        flex: 1 1 calc(50% - 12px);
    }
}

/* Cards */
.cctv-card {
    background: var(--white);
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cctv-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cctv-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cctv-card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 20px;
    /* text-align: center; */
}

.category {
    color: var(--green);
    font-size: 14px;
    font-weight: 600;
}

.titles {
    font-size: 19px;
    font-weight: bold;
    margin: 10px 0;
    color: var(--black);
    line-height: 1.4;
}

.icons a {
    width: 38px;
    height: 38px;
    background: #25d366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffff;
    font-size: 16px;
    transition: 0.3s;
}

.icons a:hover {
    background: var(--green);
    color: var(--white);
}

/* Fullscreen Viewer */
#image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 1000;
}

#image-viewer.show {
    opacity: 1;
    pointer-events: auto;
}

#image-viewer img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 10px;
    transform: scale(0.8);
    transition: transform 0.4s ease;
}

#image-viewer.show img {
    transform: scale(1);
}

#image-viewer .close {
    position: absolute;
    top: 30%px;
    right: 30px;
    font-size: 50px;
    color: #fff;
    cursor: pointer;
}

#image-viewer .close:hover {
    color: rgb(235, 68, 68);
}

.view-image:hover {
    background-color: #fff !important;
    color: #25d366 !important;
    font-weight: bold;
}


.btn-new-thm {
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px;
    text-decoration: none;
    margin-top: 10px !important;
}




/* process section start */
.report-process {
    padding: 60px 20px;
}

.report-process h2 {
    font-size: 2.3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.report-step {
    text-align: center;
    padding: 10px 15px;
    position: relative;
    border: 2px solid var(--secondary-color);
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
    border-radius: 8%;

}

.report-icon {
    background: rgba(82, 174, 116, 0.229);
    /* light green bg */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: #0B346E;
}





.report-step h5 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.report-step p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    /* text-align: justify; */
}

/* Connecting dashed line */


/* Hide line on small screens */
@media (max-width: 991px) {
    .report-line {
        display: none;
    }
}

/* process section end */



/* permit section start */
.permits-section {
    width: 100%;
    padding: 80px 20px;
    /* background: #25d36516; */
    text-transform: uppercase;
}

.permits-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 2px solid green;
    display: inline-block;
}

.permits-section p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
}

.permits-list {
    margin-top: 25px;
    margin-bottom: 25px;
    padding-left: 0;
    list-style: none;
}

.permits-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 18px;
    color: var(--text-color);
}

.permits-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(82, 161, 100, 0.15);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid black;
}

.permits-btn {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.permits-btn:hover {
    background: var(--secondary-color);
    color: #fff;
}

.permit-image {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* permit section send */