* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    color: #1a2c3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.navbar,
footer {
    background: #0a2a2f;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f5c542;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #ffffff;
    font-size: 0.9rem;
    transition: 0.2s;
}

.nav-links a:hover {
    color: #f5c542;
}

.nav-cta {
    background: #f5c542;
    color: #0a2a2f !important;
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-weight: 700;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

.hero-banner {
    width: 100%;
    min-height: 600px;
    background: linear-gradient(rgba(10, 42, 47, 0.85), rgba(10, 42, 47, 0.65)),
        url('images/godrej-dmic-banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.banner-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.banner-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    color: white;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.banner-badge {
    display: inline-block;
    background: #f5c542;
    color: #0a2a2f;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.enquiry-card-inline {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    padding: 1.8rem;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact_number {
    display: flex;
    gap: 12px;
}

.contact_number .countryCode {
    width: 35%;
}

.contact_number input {
    width: 65%;
}

.form-control,
.countryCode,
.form-select {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    background: white;
}

.send_btn {
    background: #f5c542;
    color: #0a2a2f;
    padding: 14px 30px;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
}

.send_btn:hover {
    background: #ffd966;
    transform: translateY(-2px);
}

.bg-white {
    background: #ffffff;
}

.bg-gray-light {
    background: #f5f7fa;
}

.bg-dark-green {
    background: #0a2a2f;
    color: white;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #0a2a2f;
}

.section-title:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: #f5c542;
    margin: 0.6rem auto 0;
}

.section-title-light {
    color: white;
}

.section-title-light:after {
    background: #f5c542;
}

#overview .overview-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width:768px) {

    #overview img {
        min-height: 250px !important;
        max-height: none !important;
        object-fit: contain !important;
    }

    #overview p {
        text-align: left !important;
        font-size: 0.98rem !important;
        line-height: 1.75 !important;
    }

}


@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatGlow {
    0% {
        transform: scale(0.9) translate(0, 0);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.1) translate(10px, -10px);
        opacity: 1;
    }
}

@keyframes floatCircle {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.1);
    }

    100% {
        transform: translate(-10px, 10px) scale(0.95);
    }
}

.hero-banner .form-control:focus {
    border-color: #f5c542;
    box-shadow: 0 0 0 3px rgba(245, 197, 66, 0.15);
    background: #ffffff;
}

.hero-banner .send_btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 12px 35px rgba(245, 197, 66, 0.45);
}

.hero-banner .enquiry-card-inline:hover {
    transform: translateY(-6px);
    box-shadow: 0 50px 90px -20px rgba(0, 0, 0, 0.7);
}

@media (max-width:992px) {
    .hero-banner h1 {
        font-size: 2.8rem;
    }

    .hero-banner .banner-content {
        padding-right: 0;
    }

    .hero-banner {
        min-height: auto;
        padding: 2.5rem 1.5rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.2rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eef2f5;
}

.pricing-table th {
    background: #0a2a2f;
    color: white;
}

.req-btn {
    background: #f5c542;
    color: #0a2a2f;
    border: none;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.req-btn:hover {
    background: #ffd966;
    transform: scale(1.02);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 1.5rem;
    border: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1rem;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.faq-item {
    background: white;
    border-radius: 1rem;
    margin-bottom: 1rem;
    padding: 1rem 1.5rem;
    border: 1px solid #eef2f0;
    cursor: pointer;
    transition: 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    color: #0a2a2f;
}

.faq-answer {
    margin-top: 0.8rem;
    color: #4a5b6e;
    display: none;
}

.faq-answer.show {
    display: block;
}

.stats-wrapper {
    background: #0a2a2f;
    color: white;
    padding: 2rem;
    border-radius: 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 1rem;
}

footer {
    color: #cfdfe9;
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    margin-top: 0;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid #eef2f5;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #f5c542;
}

.feature-card-dark {
    background: #0d3a42;
    color: white;
    border-color: #1a5a62;
}

.feature-card-dark h3,
.feature-card-dark h4 {
    color: #f5c542;
}

.feature-card-dark ul li {
    color: #cfdfe9;
}

.amenity-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f5;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #f5c542;
}

.amenity-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #0a2a2f;
}

.amenity-card p {
    font-size: 0.85rem;
    color: #4a5b6e;
}

.amenity-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.sticky-mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.8rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    gap: 1rem;
}

.btn-primary-custom {
    background: #0a2a2f;
    color: white;
    border: none;
    padding: 0.9rem;
    border-radius: 2rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

.btn-primary-custom:hover {
    background: #f5c542;
    color: #0a2a2f;
}

.btn-gold {
    background: #f5c542;
    color: #0a2a2f;
}

.btn-gold:hover {
    background: #ffd966;
    color: #0a2a2f;
}

.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.check-list li::before {
    content: "✓";
    color: #f5c542;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.check-list-white li::before {
    color: #f5c542;
}

.check-list-white li {
    color: white;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #0a2a2f;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
}

.about-badge-gold {
    background: #f5c542;
    color: #0a2a2f;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #eef2f5;
    transition: 0.3s;
}

.highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.highlight-item .number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f5c542;
}

.highlight-item .label {
    font-size: 0.9rem;
    color: #4a5b6e;
    margin-top: 0.3rem;
}

.step-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.step-item {
    flex: 1 1 160px;
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #eef2f5;
    position: relative;
}

.step-item .step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f5c542;
    color: #0a2a2f;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.step-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem;
}

.step-item p {
    font-size: 0.8rem;
    color: #4a5b6e;
}

.similar-project-card {
    background: white;
    border-radius: 1rem;
    padding: 1.2rem;
    border: 1px solid #eef2f5;
    transition: 0.3s;
    text-align: center;
}

.similar-project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.similar-project-card h5 {
    color: #0a2a2f;
    margin-bottom: 0.3rem;
}

.similar-project-card .dev {
    font-size: 0.8rem;
    color: #4a5b6e;
}

.similar-project-card .price-tag {
    font-weight: 700;
    color: #f5c542;
    margin-top: 0.5rem;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #0a2a2f;
        padding: 1rem;
    }

    .nav-links.show {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .banner-content h1 {
        font-size: 2rem;
    }

    .sticky-mobile-cta {
        display: flex;
    }

    .contact_number {
        flex-direction: column;
    }

    .contact_number .countryCode,
    .contact_number input {
        width: 100%;
    }

    .section-container {
        padding: 2rem 1.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        font-size: 0.85rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem;
    }
}

.modal-content {
    border-radius: 24px;
    overflow: hidden;
}

.modal-header {
    background: #0a2a2f;
    color: white;
    border-bottom: none;
    padding: 20px 25px;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.popup-form-group {
    margin-bottom: 20px;
}

.popup-form-group input,
.popup-form-group select,
.popup-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    background: white;
}

.text-justify {
    text-align: justify;
}

.text-center {
    text-align: center;
}

.badge-gold {
    background: #f5c542;
    color: #0a2a2f;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.7rem;
    display: inline-block;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    list-style: none;
}

.pill-list li {
    background: #f5f7fa;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #0a2a2f;
}

.divider {
    width: 100%;
    height: 1px;
    background: #eef2f5;
    margin: 2rem 0;
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid #f5c542;
    color: #f5c542;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline-gold:hover {
    background: #f5c542;
    color: #0a2a2f;
}

.btn-gold-full {
    background: #f5c542;
    color: #0a2a2f;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: inline-block;
    text-decoration: none;
}

.btn-gold-full:hover {
    background: #ffd966;
    transform: translateY(-2px);
    color: #0a2a2f;
}

.section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.05rem;
    color: #4a5b6e;
}

.section-subtitle-light {
    color: rgba(255, 255, 255, 0.8);
}

/* Navbar hover effects */
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f5c542 !important;
}

/* Active link indicator */
.nav-link.active {
    color: #f5c542 !important;
}

/* CTA button hover effect */
.nav-cta:hover {
    background: #ffd966 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 197, 66, 0.3);
}

/* Logo text styling */
.logo-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #f5c542;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Ensure collapse works properly */
.collapse:not(.show) {
    display: none !important;
}

.collapse.show {
    display: block !important;
}

/* For desktop */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
    }

    .navbar-expand-lg .navbar-collapse.collapse {
        display: flex !important;
    }
}

/* Mobile menu styling */
@media (max-width: 991.98px) {
    #navbarNav {
        background: #0a2a2f;
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        position: absolute;
        top: 74%;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    #navbarNav.show {
        display: block !important;
    }

    #navbarNav .navbar-nav {
        gap: 0 !important;
    }

    #navbarNav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    #navbarNav .nav-link {
        padding: 0.8rem 1rem !important;
    }
}