﻿body {
    background: #f8f9fa;
}

/* Gallery */
.gallery-item {
    overflow: hidden;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        transition: 0.4s;
        border-radius: 10px;
    }

    /* Hover Zoom */
    .gallery-item:hover img {
        transform: scale(1.1);
    }

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

    /* Show */
    .lightbox.show {
        display: flex;
    }

/* Image */
.lightbox-img {
    max-width: 80%;
    max-height: 80%;
    animation: zoom 0.4s ease;
}

/* Zoom Animation */
@keyframes zoom {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* Navigation */
.prev, .next {
    position: absolute;
    top: 50%;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

    .prev:hover, .next:hover {
        color: #ff6a00;
    }



/* Navbar Styling */
.navbar {
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.navbar-brand img {
    height: 50px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
    position: relative;
    font-weight: 500;
}

    /* Hover Underline Effect */
    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 2px;
        background: #ff6a00;
        left: 0;
        bottom: 0;
        transition: 0.3s;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

/* Dropdown */
.dropdown-menu {
    border-radius: 10px;
}

.dropdown-item:hover {
    background: #ff6a00;
    color: #fff;
}

/* Banner Section */
.banner {
    background: url('~/Content/assest/images/banner.jpg') no-repeat center;
    background-size: cover;
    height: 90vh;
    position: relative;
}

.banner-overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
}

/* Sticky effect */
.sticky {
    background: #000 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
/* Topbar */
.topbar {
    background: #ff6a00;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

/* Navbar */
.main-navbar {
    position: fixed;
    top: 40px; /* 👈 Topbar height ke hisaab se */
    width: 100%;
    z-index: 998;
    background-color: #1c1a1a;
}



/* Menu */
.navbar-nav .nav-link {
    color: #fff !important;
    margin: 0 10px;
}

    /* Hover effect */
    .navbar-nav .nav-link:hover {
        color: #ff6a00 !important;
    }

.logo {
    font-family: 'Segoe UI', sans-serif;
}

/* Icon circle */
.logo-icon {
    position: relative;
    width: 60px;
    height: 60px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

    /* Building inside icon */
    .logo-icon .inner-icon {
        position: absolute;
        font-size: 14px;
        bottom: 12px;
        right: 14px;
       
    }

/* Main text */
.logo-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

/* Tagline */
.logo-text small {
    color: #ff6a00;
    font-weight: 500;
}

.counter {
    font-weight: bold;
    letter-spacing: 2px;
}


/* Mobile Fix */
@media (max-width: 991px) {

    .topbar {
        display: none;
    }

    .navbar-nav {
        background: #0d1b2a;
        padding: 10px 0;
    }

        .navbar-nav .nav-link {
            margin: 10px 0;
        }

    .logo-text small {
        font-size: 10px;
    }
}

/*nav end*/
/*-- map--*/
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Section */
.team-map {
    position: relative;
    height: 600px;
    overflow: hidden;
}

    /* Map */
    .team-map iframe {
        position: absolute;
        width: 100%;
        height: 100%;
        border: 0;
        z-index: 1;
    }

/* Overlay */
.team-content {
    position: relative;
    z-index: 2;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

/* Heading */
.heading h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.heading p {
    color: #ccc;
}

/* Team Line */
.team-line {
    position: relative;
    margin-top: 100px;
}

/* Curved Line */
/*.team-line::before {
                content: "";
                position: absolute;
                width: 100%;
                height: 2px;
                background: red;
                top: 50%;
                left: 0;
            }*/

/* Team Box */
.team-box {
    display: inline-block;
    margin: 0 30px;
    position: relative;
    text-align: center;
}

    /* Circle Image */
    .team-box img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 3px solid red;
        transition: 0.3s;
    }

        /* Hover Effect */
        .team-box img:hover {
            transform: scale(1.2);
        }

    /* Text */
    .team-box h4 {
        margin-top: 10px;
    }

    .team-box p {
        font-size: 14px;
        color: #ccc;
    }


/* Buttons */
.category-btn {
    padding: 10px 25px;
    border-radius: 30px;
    border: 2px solid #0d6efd;
    background: transparent;
    color: #0d6efd;
    transition: 0.3s;
    font-weight: 500;
}

    .category-btn:hover,
    .category-btn.active {
        background: #0d6efd;
        color: #fff;
        transform: translateY(-3px);
    }

/* Gallery Box */
.gallery-box {
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

    /* Image */
    .gallery-box img {
        width: 100%;
        transition: 0.5s;
    }

    /* Zoom Hover */
    .gallery-box:hover img {
        transform: scale(1.1);
    }

    /* Overlay Text */
    .gallery-box::after {
        content: "View";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0);
        background: rgba(0,0,0,0.6);
        color: #fff;
        padding: 10px 20px;
        border-radius: 30px;
        transition: 0.3s;
    }

    .gallery-box:hover::after {
        transform: translate(-50%, -50%) scale(1);
    }

/* Hide animation */
.gallery-item {
    transition: 0.4s;
}
