/* Menu Styles (unchanged) */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children:hover .sub-menu {
    display: block;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000000;
    min-width: 300px;
    padding: 10px 0;
    z-index: 9999;
    display: none;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.sub-menu li {
    list-style: none;
}

.sub-menu li a {
    display: block;
    padding: 10px 15px;
    color: #ffffff;
    text-decoration: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.sub-menu li a:hover {
    background: #fed700;
    color: #000 !important;
}

.toggle-icon {
    display: none;
}

@media (max-width: 991px) {
    .menu-item-has-children>a {
        display: flex !important;
        justify-content: space-between;
        align-items: start;
        color: #000;
    }

    .toggle-icon {
        font-size: 16px;
        font-weight: 600;
        display: inline-block;
        margin-left: auto;
    }

    .menu-item-has-children .sub-menu {
        position: static;
        width: 100%;
        background: transparent;
        padding: 0;
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-item-has-children.active .sub-menu {
        max-height: 400px;
    }

    .sub-menu li a {
        padding: 8px 0 8px 15px;
        color: inherit;
        background: transparent;
        font-size: 14px;
    }

    .sub-menu li a:hover {
        background: transparent;
        color: #fed700;
    }
}

/* ===== LOCATION PAGE CUSTOM STYLES (Keep original) ===== */
.location-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    text-align: center;
    color: #fff;

    background:
        linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)),
        url("../images/location/location-header-image.jpeg");

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.location-hero .container {
    position: relative;
    /* z-index: 2; */
}

.location-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1%, transparent 1%);
    background-size: 40px 40px;
    animation: shiftBg 40s linear infinite;
    pointer-events: none;
}

@keyframes shiftBg {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.location-hero h1 {
    font-size:48px ;
    font-weight: 800;
    letter-spacing: -0.4px;
    margin-bottom: 20px;
    position: relative;
    color: #fff;

}

.location-hero p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    position: relative;
  
}

.location-services {
    padding: 100px 0;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
}

.location-section-head {
    text-align: center;
    margin-bottom: 30px;
}

.location-section-head h2 {
    font-size: 48px;
    font-weight: 800; 
    margin-top: 20px;
    color: black;
    
    
    position: relative;
    display: inline-block;
}

.location-section-head h2:after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #fed700;
    margin: 12px auto 0;
    border-radius: 3px;
}

.location-section-head p {
    
    margin-top: 8px;
    font-size: 1.1rem;
    color: black;
    
}

.location-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.location-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
    display: flex;
    flex-direction: column;
}

.location-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 55px -15px rgba(0, 0, 0, 0.2);
}

.location-service-img {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.location-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.location-service-card:hover .location-service-img img {
    transform: scale(1.08);
}

.location-service-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}

.location-service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fed700;
    color: #1e2f3e;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-service-content {
    padding: 30px;
    flex: 1;
}

.location-service-content h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1e2f3e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.location-service-content p {
    color: #5a6874;
    line-height: 1.6;
    margin-bottom: 25px;
}

.location-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 25px;
}

.location-feature-tag {
    background: #f0f2f5;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: #1e4e6e;
}

.location-service-btn {
    background: linear-gradient(135deg, #fed700 0%, #f5b800 100%);
    color: #1e2f3e;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
    border: none;
    box-shadow: 0 4px 12px rgba(254, 215, 0, 0.3);
}

.location-service-btn:hover {
    transform: translateX(5px);
    background: linear-gradient(135deg, #f5b800 0%, #fed700 100%);
    color: #1e2f3e;
    box-shadow: 0 6px 18px rgba(254, 215, 0, 0.4);
}

/* ===== REDESIGNED PROJECT SLIDER SECTION (Clean White Background, Modern Cards) ===== */
.location-project-slider {
    position: relative;
    background-image: url('image here'); /* apni image path daalo */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* ye banayega background ko static */
    padding: 20px 0; /* spacing maintain karne ke liye */
    
}
/* Optional overlay for better readability */
.location-project-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* opacity adjust kar sakte ho */
    z-index: 1;
}

/* Ensure content stays above overlay */
.location-project-slider .container {
    position: relative;
    z-index: 1;
}    

.project-swiper {
    padding: 20px 5px 50px 5px;
}

.project-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    height: 80%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.1);
    /* border-color: rgba(254, 215, 0, 0.3); */
}

.project-img {
    height: 240px;
    overflow: hidden;
    background: #f5f7fb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-size: 22px;
    font-weight: 700;
    color: #122b3b;
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-desc {
    color: #5f6c7a;
    font-size: 14px;
    /* line-height: 1.5; */
    margin-bottom: 10px;
    flex: 1;
}

.project-meta {
    margin-bottom: 20px;
    padding-top: 8px;
    border-top: 1px solid #f0f2f5;
}

.project-meta span {
    font-size: 13px;
    color: #fed700;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-meta span i {
    color: #f5b800;
    font-size: 12px;
}

.project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #1e2f3e;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 0;
    transition: 0.3s;
    border-bottom: 2px solid #fed700;
    width: fit-content;
}

.project-btn i {
    font-size: 12px;
    transition: transform 0.3s;
}

.project-btn:hover {
    color: #fed700;
    border-bottom-color: #1e2f3e;
}

.project-btn:hover i {
    transform: translateX(5px);
}

/* Swiper Navigation Custom */
.location-project-slider .swiper-button-prev,
.location-project-slider .swiper-button-next {
    background: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

.location-project-slider .swiper-button-prev:after,
.location-project-slider .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
    color: #122b3b;
}

.location-project-slider .swiper-button-prev:hover,
.location-project-slider .swiper-button-next:hover {
    background: #fed700;
}

.location-project-slider .swiper-button-prev:hover:after,
.location-project-slider .swiper-button-next:hover:after {
    color: #122b3b;
}

.location-project-slider .swiper-pagination-bullet {
    background: #d4d9e0;
    opacity: 1;
    width: 10px;
    height: 10px;
}

.location-project-slider .swiper-pagination-bullet-active {
    background: #fed700;
    width: 24px;
    border-radius: 6px;
}

/* Why Choose */
.location-why-choose {
    background: #f8fafd;
    padding: 60px 0;
    color: #000;
}

.location-choose-card {
    background: #fff;
    border-radius: 30px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    height: 90%;
    
}

.location-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.location-choose-icon {
    width: 80px;
    height: 80px;
    background: #fff5e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 40px;
    color: #fed700;
    transition: 0.3s;
}

.location-choose-card:hover .location-choose-icon {
    background: #fed700;
    color: #1e2f3e;
}

.location-choose-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.location-choose-card p {
    color: #5f6c7a;
    font-size: 0.95rem;
    
    
}

.location-areas-covered {
    padding: 80px 0;
    background: linear-gradient(145deg, #ffffff 0%, #fef9ef 100%);
    margin-bottom: 5px;
}

.location-area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
    
}

.location-area-badge a {
    background: #fff;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    color: #1f4e6e;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    border: 1px solid #ffe2aa;
    font-size: 1rem;
}

.location-area-badge a:hover {
    background: #fed700;
    color: #1e2f3e;
    transform: scale(1.02);
    border-color: #fed700;
}

.location-map-illustration {
    text-align: center;
    margin-top: 30px;
}

.location-map-illustration i {
    font-size: 70px;
    color: #ffcf4a;
}

.view-all-wrapper {
    text-align: center;
    margin-top: 40px;
}

.btn-view-all {
    background: #fed700;
    color: black;
    padding: 14px 42px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: 2px solid #fed700;
    box-shadow: 0 5px 15px rgba(254, 215, 0, 0.3);
}

.btn-view-all:hover {
    background: transparent;
    color: #fed700;
    border-color: #fed700;
    transform: translateY(-3px);
}

.cta-simple {
    padding: 50px 0;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-box {
    background: black;
    border-radius: 12px;
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.cta-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #fff;
}

.cta-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-buttons a {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-call {
    background: #fff;
    color: #1e3c72;
    border: none;
}

.btn-call:hover {
    background: #e8e8e8;
    transform: translateY(-1px);
    color: #1e3c72;
}

.btn-enquiry {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-enquiry:hover {
    background: #fff;
    color: #1e3c72;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .location-hero h1 {
        font-size: 2.5rem;
    }

    .location-section-head h2 {
        font-size: 32px;
        color: black;
    }

    .location-services-grid {
        grid-template-columns: 3fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .location-hero{
        padding: 100px 0px 70px  0px;
    }
       .location-hero h1 {
        font-size: 2rem;
    }
    .location-hero p{
        font-size: 1rem;
    }

    .location-service-img {
        height: 220px;
    }

    .location-service-content h3 {
        font-size: 22px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 25px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .cta-buttons a {
        text-align: center;
    }

    .delhi-area-container{
        padding: 0px 5px !important;
    }
}
.project-title {
  min-height: 48px;
}





/*  location main section css */

/* SECTION */
.signage-section {
  padding: 60px 20px;
}

/* CONTAINER */
.signage-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: center;
}




.signage-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

/* IMAGE SIDE */
.signage-image-box {
  position: relative;
 
}

.signage-image-box img {
  width: 900%;
  height: 800%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .signage-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .signage-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .signage-section {
    padding: 15px 15px;
  }

  .signage-title {
    font-size: 24px;
  }

  .signage-text p {
    font-size: 14px;
  }
}

/* Make wrapper flex */
.location-project-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch; /* THIS is stretch */
}

/* Each slide should stretch */
.location-project-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Card should fill full height */
.project-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}



/* Keep content above overlay */
.location-hero .container {
    position: relative;
    /* z-index: 2; */
    max-width: 900px;
    margin: auto;
}

/* Heading */
.location-hero h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* Paragraph */
.location-hero p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* 🔽 Tablet */
@media (max-width: 992px) {
    .location-hero {
        padding: 100px 15px;
    }

    .location-hero h1 {
        font-size: 34px;
    }

    .location-hero p {
        font-size: 16px;
    }
}

/* 🔽 Mobile */
@media (max-width: 576px) {
    .location-hero {
        padding: 80px 15px;
    }

    .location-hero h1 {
        font-size: 26px;
        line-height: 1.4;
    }

    .location-hero p {
        font-size: 15px;
    }
}





 