@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    box-sizing: border-box;
}


:root {
    --primary-color: #002d6d;
    --secondary-color: #c7b294;
    --light-color: #e7e8ed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cal Sans', sans-serif;
}

header {
    position: relative;
}

/* Header Styles */
.header {
    position: fixed;
    /* top: 0; */
    width: 100%;
    background: #fff;
    /* backdrop-filter: blur(10px); */
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    padding-top: 0;
    margin-top: -120px;
}

.logo {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    width: 250px;
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 15px;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Cal Sans', sans-serif;
    letter-spacing: 1px;
}

.navbar-collapse {
    padding-top: 15px;
    padding-bottom: 18px;
}

.navbar>.container {
    display: block;
}

.head-logo {
    text-align: center;
}
.head-logo p{
    font-weight: 600;
    padding-top: 15px;
    margin: 0;
    padding-bottom: 0;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color) !important;
}

.navbar-nav .nav-link.active::after {
    /* content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color); */
}


/* Banner Section */
.banner {
    height: 140vh;
    /* background: linear-gradient(rgba(0, 45, 109, 0.7), rgba(199, 178, 148, 0.7)), url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    background-image: url('../img/Banner.webp');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; */
    display: flex;
    align-items: top;
    justify-content: inherit;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 45, 109, 0.2);
}

.banner-content {
    position: relative;
    z-index: 2;
    margin-left: 0px;
    text-align: left;
    top: 180px;
}

.banner-content .big::before {
    content: '';
    width: 80px;
    height: 100px;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 4px, var(--secondary-color) 4px, var(--secondary-color) 8px, transparent 8px, transparent 12px);
    flex-shrink: 0;
}

.banner-content .big {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;

}

.banner h1 {
    font-size: 64px;
    font-weight: 500;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease;

    text-align: left;
    line-height: 1;
    letter-spacing: 1px;

}

.banner h1 b {
    font-weight: 500;
    font-size: 100px;
    letter-spacing: 2px;

}

.explore-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 66px;
    border: none;
    border-radius: 0px;
    font-size: 17px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.3s both;
    text-transform: uppercase;
    margin-left: 120px;
}

.explore-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

/* Section Styles */
.section {
    padding: 50px 0;
    position: relative;
}

.section-title {
    font-size: 130px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light-color);
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

}

.section-title::before {
    content: '';
    width: 600px;
    height: 100px;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 4px,
            var(--secondary-color) 4px,
            var(--secondary-color) 8px,
            transparent 8px,
            transparent 12px);
    flex-shrink: 0;
}
.master-plan .section-title::before {
    content: '';
    width: 750px; 
}

.section-title::after {
    content: '';
    width: 90%;
    height: 100px;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 4px,
            var(--secondary-color) 4px,
            var(--secondary-color) 8px,
            transparent 8px,
            transparent 12px);
    flex-shrink: 0;
}

/* Overview Section */
.overview {
    /* background: var(--primary-color); */
    color: #262626;
}

.overview .section-title {
    color: var(--light-color);
}

.overview p {
    font-size: 1.2rem;
    /* text-align: center; */
    /* max-width: 800px; */
    margin: 0 auto;
    line-height: 1.4;
}

/* Facilities Section */
.facilities {
    /* background: #f8f9fa; */
    padding-top: 0;
    padding-bottom: 0;
}

.facilities .col-md-6 {
    margin-bottom: 0px;
}

.facilities .section-title {
    color: var(--primary-color);
}

.facility-item {
    border-top: 2px solid #838486;
    /* border-bottom: 2px solid #838486; */
    padding: 40px 20px;
    padding-bottom: 0;
    /* margin-bottom: 30px; */
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.faclit2 {
    border-bottom: 2px solid #838486;
    padding-bottom: 30px;
}

.facility-item p {
    margin: 0;
    font-size: 17px;
}

.facility-item:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); */
}

.facility-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.facility-icon img {
    width: 50px;
}

.faci-desktop {
    display: block;
}

.faci-mob {
    display: none;
}

.facility-content {
    flex: 1;
}

.facility-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.facility-images {
    margin-top: 50px;
}

.facility-img-large {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.facility-img-small {
    height: 400px;
    background: url('https://images.unsplash.com/photo-1571055107559-3e67626fa8be?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

/* Master Plan Section */
.master-plan {
    background: white;
}

.master-plan .row {
    align-items: anchor-center;
    margin-top: -50px;
}

.master-plan .section-title {
    /* color: var(--primary-color); */
    margin-bottom: 50px;
}

.master-plan h3 {
    color: var(--primary-color);
    font-size: 45px;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: -15px;
    padding-left: 60px;
}

.plan-legend {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* padding: 15px; */
    border-radius: 10px;
    /* background: #f8f9fa; */
}

.legend-color {
    width: 85px;
    height: 35px;
    /* border-radius: 8px; */
    flex-shrink: 0;
    border: 1px solid #32323242;
}

.legend-text {
    font-weight: 500;
    color: #323232;
    font-size: 21px;
}

.plan-image {
    height: 500px;
    background: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Location Section */
.location {
    /* background: #f8f9fa; */
    padding-top: 0;
}

.location .section-title {
    color: var(--primary-color);
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        /* margin-top: 50px; */
}

.map-embed {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

/* Contact/Footer Section */
.contact {
    background: #eee7dd;
    padding: 40px 0;
    padding-top: 80px;
    margin-top: 50px;

}

.contact .section-title {
    color: var(--primary-color);
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Cal Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-logo img {
    width: 350px;
}

.footer-divider {
    width: 2px;
    height: 100px;
    background: #97928e;
    margin: 0 40px;
}

.bord-btn {
    padding-bottom: 30px;
    border-bottom: 1px solid #97928e;
}

.footer-description h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.adr-b {
    padding-top: 40px;
}

.footer-description p {
    color: #000;
    line-height: 1.6;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eee7dd;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info h5 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-info p {
    color: #000;
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.footer-map {
    height: 220px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    padding: 16px 30px;
    margin-top: 50px;
    /* margin-bottom: 40px; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    background: #fff;
    border-radius: 70px;
}

.footer-bottom p {
    margin: 0;
    color: #000;
    font-weight: 500;
}

.footer-bottom p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .banner {
        background-attachment: scroll;
    }

    .facility-img-large,
    .facility-img-small {
        height: 300px;
        margin-bottom: 20px;
    }

    .plan-image {
        height: 400px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .banner h1 {
        font-size: 2.5rem;
        padding: 0 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .facility-item {
        margin-bottom: 20px;
    }

    .facility-img-large,
    .facility-img-small {
        height: 250px;
    }

    .footer-divider {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .legend-item {
        padding: 10px;
    }

    .legend-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .explore-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .facility-icon {
        font-size: 2.5rem;
    }

    .facility-title {
        font-size: 1.3rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

p {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Parent section */
.khan-salaar {
    padding: 90px 0;
    background-color: #fff;
    padding-bottom: 120px;
}

/* Card styling */
.khan-salaar .feature-box {
    background: #eee7dd;
    border-radius: 0px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.3s ease; 
}

.khan-salaar .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Icon box */
.khan-salaar .icon-box {
    background: var(--primary-color);
    width: 100px;
    height: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    /* border-radius: 5px; */
    margin-bottom: 20px;
    /* margin-left: 50px; */
    margin-top: -80px;
        padding: 15px;
}

.khan-salaar .icon-box i {
    font-size: 32px;
    color: #000;
}

/* Titles & text */
.khan-salaar h5 {
    font-weight: 500;
    margin-bottom: 10px;
    color: #111;
}

.khan-salaar p {
    color: #555;
    font-size: 15px;
}

.premier-contact {
      background: #fff;
      padding: 40px 0;
    }

    /* KHAN-SALAAR SUBSECTION */
    .premier-contact .khan-salaar {
      padding-bottom: 60px;
    }

    .premier-contact .khan-salaar .feature-box {
      background: #f8f9fc;
      border-radius: 10px;
      padding: 40px 25px;
      text-align: center;
      transition: all 0.3s ease;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .premier-contact .khan-salaar .feature-box:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .premier-contact .khan-salaar .icon-box {
      background: #00ff73;
      width: 80px;
      height: 80px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 20px;
      border-radius: 5px;
    }

    .premier-contact .khan-salaar .icon-box i {
      font-size: 32px;
      color: #000;
    }

    .premier-contact .khan-salaar h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #111;
    }

    .premier-contact .khan-salaar p {
      color: #555;
      font-size: 15px;
    }

    /* CONTACT FORM STYLING */
    .premier-contact .contact-box {
      background: #eee7dd;
      border-radius: 10px;
      padding: 40px; 
    }
  

    .premier-contact h3 {
      text-align: center;
      margin-bottom: 30px;
      font-weight: 400;
      color: var(--primary-color);
      font-size: 40px;
    }

    .premier-contact .form-control {
      border-radius: 8px;
      padding: 12px 15px;
      border: 1px solid #ddd;
      box-shadow: none;
      transition: all 0.3s ease;
    }

    .premier-contact .form-control:focus {
      border-color: #00ff73;
      box-shadow: 0 0 0 0.2rem rgba(0, 255, 115, 0.25);
    }
    .premier-contact button{
        margin-top: 10px;
        margin-left: 0;
    }

    .premier-contact .btn-submit {
      background: #00ff73;
      color: #000;
      border: none;
      padding: 12px 25px;
      border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .premier-contact .btn-submit:hover {
      background: #00e56a;
      transform: translateY(-2px);
    }

    
    /* Basic styling for your facility items and container */
        

        /* Styling for the facility item within the slider */
        .facility-item {
            display: flex; /* Aligns icon and content side-by-side */
            gap: 20px;
            padding: 20px;
            border: 1px solid #f0f0f0;
            border-radius: 8px;
            min-height: 150px; /* Ensure slides have a visible height */
            align-items: center;
            margin-bottom: 40px;
        }

        .facility-icon img {
            width: 60px; /* Adjust size of your icons */
            height: auto;
            display: block;
        }

        .facility-content h4 {
            margin-top: 0;
            font-size: 1.2em; 
        }
        .header.sticky .head-logo p {
  display: none;
}

        /* Swiper Container Spacing */
        .swiper-container {
            width: 100%;
            height: auto;
            margin-bottom: 30px; /* Space between the two distinct sliders */
            overflow: hidden;
        }

        /* Custom styling for pagination dots (optional) */
        .swiper-pagination-bullet-active {
            background: var(--secondary-color) !important; /* Blue active dot */
        }
        .swiper-pagination {
    position: relative; 
}