 /* <style> */


        :root {
            --primary: #1a3a5f;
            --secondary: #d4af37;
            --accent: #2c5aa0;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--dark);
            line-height: 1.7;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        /* Header & Navigation */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand img {
            height: 45px;
            transition: all 0.3s ease;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--secondary) !important;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after, .nav-link.active:after {
            width: 100%;
        }
        
        .navbar-toggler {
            border: none;
            padding: 5px 10px;
        }
        
        .navbar-toggler:focus {
            box-shadow: none;
        }
        
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/banner/gallery_2.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }

            .hero-section-glamz{
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/glamz/glamz-banner.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }
             .hero-section-timez{
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/timez/timez-banner.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }

          .hero-section-starz{
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/starz/starz.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }

         .hero-section-bayz{
            background: linear-gradient(rgba(26, 58, 95, 0.85), rgba(26, 58, 95, 0.75)), url('../images/bayz/banner1.webp') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            position: relative;
        }

        
        
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-highlights {
            list-style: none;
            padding-left: 0;
            margin-bottom: 40px;
        }
        
        .hero-highlights li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .hero-highlights li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        .btn-primary-custom {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-primary-custom:hover {
            background-color: #c19b2a;
            border-color: #c19b2a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Form Styles */
        .form-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .form-container h3 {
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }
        
        .form-label {
            font-weight: 500;
            color: var(--dark);
        }
        
        .form-control {
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--secondary);
            box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
        }
        
        .phone-input-group {
            display: flex;
            gap: 10px;
        }
        
        .country-code-select {
            width: 40%;
        }
        
        .phone-number-input {
            width: 60%;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 100px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Overview Section */
        .overview-section {
            background-color: var(--light);
        }
        
        .overview-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .overview-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
        }
        
        /* Highlights Section */
        .highlight-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .highlight-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .highlight-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 1.8rem;
        }
        
        /* Redesigned Pricing Section */
        .pricing-section {
            background-color: var(--light);
        }
        
        .pricing-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            position: relative;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .pricing-header {
            background: var(--primary);
            color: white;
            padding: 25px 20px;
            text-align: center;
        }
        
        .pricing-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .pricing-type {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .pricing-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0;
        }
        
        .pricing-body {
            padding: 30px;
        }
        
        .pricing-feature {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid var(--light-gray);
        }
        
        .pricing-feature:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .feature-label {
            color: var(--gray);
            font-weight: 500;
        }
        
        .feature-value {
            font-weight: 600;
            color: var(--dark);
        }
        
        .price-amount {
            /* font-size: 1.8rem; */
             font-size: 1.3rem;
            font-weight: 700;
            color: var(--secondary);
            margin: 20px 0;
            text-align: center;
        }
        
        .price-note {
            font-size: 0.9rem;
            color: var(--gray);
            text-align: center;
            margin-bottom: 25px;
        }
        
        /* Amenities Section */
        .amenities-section {
            background-color: var(--light);
        }
        
        /* .amenity-item {
            text-align: center;
            margin-bottom: 30px;
        } */

        .amenity-item {
    text-align: center;
    /* margin-bottom: 58px; */
    height: 100%;
    padding: 25px 25px;
    background: #dcc0651a;
    border-radius: 28px;
    border-left: 4px solid #dcc065;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
section#amenities .col-md-3 {
    margin-bottom: 25px;
}
        
        .amenity-icon {
            width: 70px;
            height: 70px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }


        
        
        .amenity-item:hover .amenity-icon {
            background: var(--secondary);
            transform: rotateY(180deg);
        }
        
        /* Gallery Section */
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 30px;
            height: 300px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(26, 58, 95, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-icon {
            color: white;
            font-size: 2rem;
        }
        
        /* Location Section */
        .location-feature {
            margin-bottom: 20px;
            padding-left: 30px;
            position: relative;
        }
        
        .location-feature:before {
            content: '\f3c5';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        /* Footer */
        footer {
            background: var(--primary);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer-logo {
            height: 50px;
            margin-bottom: 20px;
        }
        
        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-heading:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }
        
        /* Developer Section */
        .developer-section {
            background-color: var(--light);
            padding: 80px 0;
        }
        
        .developer-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .developer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        /* .developer-image {
            height: 200px;
            background: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1973&q=80') no-repeat center center;
            background-size: cover;
        } */

               .developer-image {
            height: 200px;
            background: url('../images/danubegroup.jpg') no-repeat center center;
            background-size: cover;
        }
        
        .developer-content {
            padding: 30px;
        }
        
        .developer-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .developer-title {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .developer-description {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .developer-features {
            list-style: none;
            padding-left: 0;
            margin-bottom: 25px;
        }
        
        .developer-features li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }
        
        .developer-features li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        /* Modal Styles */
        .custom-modal .modal-content {
            border-radius: 15px;
            overflow: hidden;
            border: none;
        }
        
        .custom-modal .modal-header {
            border-bottom: none;
            padding: 20px 30px 0;
        }
        
        .custom-modal .modal-body {
            padding: 0;
        }
        
        /* .modal-image {
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2053&q=80') no-repeat center center;
            background-size: cover;
        } */

          /* .modal-image {
            height: 100%;
            background: url('../images/images.jpg') no-repeat center center;
            background-size: cover;
        } */

        .modal-image {
            height: 100%;
            background: url(../images/images.jpg) no-repeat center center;
            background-size: cover;
            filter: sepia(1);
        }
        
        .modal-form-section {
            padding: 30px;
        }

/* ----plan------- */
   /* Floor Plans Section */
.floor-plans-section {
    background-color: var(--light);
}

.floor-plans-container {
    max-width: 1200px;
    margin: 0 auto;
}

.floor-plan-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.floor-plan-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blue-image {
    filter: sepia(100%) hue-rotate(190deg) saturate(500%);
}

.floor-plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floor-plan-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 58, 95, 0.85);
    color: white;
    padding: 20px;
    text-align: center;
}

.floor-plan-overlay h4 {
    margin: 0;
    font-weight: 600;
}

.view-plan-container {
    padding: 20px;
}

.view-plan-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.view-plan-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}


/* ----------------------- */
.gallery-item-location img{
  border-radius:5px;
}

    .icondWrap button {
    display: block;
    width: 2px;
    height: 2px;
}
.icondWrap {
    position: absolute;
    right: 3px;
    top: 3px;
    background: var(--bs-gray-100);
    z-index: 39;
    border-radius: 50%;
    font-size: 20px;
    padding: 8px;
}


/* a.navbar-brand {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
} */

a.navbar-brand {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    /* border: 2px solid #d4af37; */
    line-height:6px;
    padding: 11px;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    border-radius: 50%;
}
a.navbar-brand:hover {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
}
/* a.navbar-brand {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    border: 2px solid #d4af37;
    line-height: 21px;
    padding: 11px;
} */

/* a.navbar-brand {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    line-height: 21px;
    padding: 11px;
    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;
} */

/* a.navbar-brand {
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #000000;
    border: 3px solid #d4af37;
    line-height: 21px;
    padding: 11px;
    border-radius: 20%;
} */
/* a.navbar-brand:hover{
    font-family: fangsong;
    font-size: 42px;
    font-weight: 900;
    color: #d4af37;
} */
/* ---- */

span.bdandu2 {
    font-size: 27px;
    color: #dcc065;
    letter-spacing: 10p;
    letter-spacing: 6px;
}

span.bdandu1 {
    font-size: 21px;
}

.padding-wrap{
    padding:5px 20px;
}

#paypemtplansmal {
   background: #dcc065b8;
    padding: 25px 10px;
}

.disclimerwrap{
    font-size: 13px;
    color: #ffffffa1;
    letter-spacing: 1px;
}


/* -------------------------faq---------------------- */

/* FAQ Section Styles */
.faq-section {
    background-color: #f8f9fa;
}

.faq-section .section-title h2 {
    color: #1a3a6c;
    margin-bottom: 15px;
}

.faq-section .section-title p {
    color: #6c757d;
    font-size: 1.1rem;
}

.accordion-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    color: #1a3a6c;
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #1a3a6c;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a3a6c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: #fff;
    color: #495057;
    line-height: 1.6;
}


/* projec section start */


/* Projects Section */
.projects-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.project-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-content {
    padding: 25px;
}

.project-content h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.project-location {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-location i {
    color: #e74c3c;
    margin-right: 5px;
}

.project-description {
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.6;
}

.project-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
}

.project-features span {
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem;
}

.project-features i {
    color: #3498db;
    margin-right: 5px;
}

.project-price h5 {
    color: #e74c3c;
    font-weight: 700;
    margin: 0;
    font-size: 1.2rem;
}

/* ------------ */

.footUrl ul li {
    list-style: none;
    border-right: 1px solid #838383;
    padding: 0px 10px;
}
.footUrl ul li a {
    text-decoration: none;
    color: #dfdfdf;
    font-size: 13px;
    text-transform: capitalize;
}

.footUrl ul {
    display: flex;
    /* gap: 10px; */
    padding: 0px;
    margin-top: 17px;
    line-height: 15px;
}

.wrapCnter {
    background: #fff;
    padding: 20px 20px;
    margin:5px 0px;
}



/* ---- Dropdown Hover ---- */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px 0;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.dropdown-item {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: var(--secondary);
    color: #fff;
}

/* ---- */

li#buttontopmanu {
    margin-left: 35px;
}



/* ----------------------- */

/* Remove underline effect for dropdown (Project) */
.nav-item.dropdown .nav-link::after {
    display: none !important;
}
/* Disable underline animation ONLY for Project dropdown */
.nav-item.dropdown > .nav-link::after {
    content: none !important;
}

   



/* Responsive Design */
@media (max-width: 768px) {
    .project-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .project-content {
        padding: 20px;
    }
    
    .project-content h4 {
        font-size: 1.2rem;
    }
   
    .section-padding{
    padding: 50px 0;
 }
/* ------------ */
 li#buttontopmanu a {
    width: 100%;
}
li#buttontopmanu {
    margin-left: 10px;
    margin-top: 30px;
}

}




/* Responsive adjustments for floor plans */
@media (max-width: 991.98px) {
    .floor-plan-image {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .view-plan-container {
        margin: 20px 0;
    }
}

@media (max-width: 575.98px) {
    .floor-plan-image {
        height: 250px;
    }
}
/* ----plan end------- */



   
        
        /* Responsive Adjustments */
        @media (max-width: 991.98px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
            
            .navbar-collapse {
                background: white;
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                margin-top: 15px;
            }
            
            .phone-input-group {
                flex-direction: column;
            }
            
            .country-code-select, .phone-number-input {
                width: 100%;
            }
            
            .modal-image {
                height: 300px;
            }
        }
        
        @media (max-width: 767.98px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            
            .section-padding {
                padding: 70px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 575.98px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }
            
            .form-container {
                padding: 20px;
            }
            
            .pricing-card {
                margin-bottom: 20px;
            }
        }


/*         
    </style> */


