
        :root {
            --primary-color: #005b8f;
            --secondary-color: #f8f9fa;
            --accent-color-green: #25d366;
            --accent-color-red: #ff4c4c;
            --text-color: #333;
            --light-text: #fff;
            --border-radius: 4px;
            --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

        .f-20 {
            font-size: 20px;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .top-hed {
            padding: 0px 50px;
        }

        /* Header Styles */
        .topbar {
            background-color: var(--primary-color);
            color: var(--light-text);
            padding: 8px 0;
            font-size: 14px;
        }

        .topbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .topbar-contact {
            display: flex;
            gap: 20px;
        }

        .topbar-contact a {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .topbar-auth {
            display: flex;
            gap: 15px;
        }


        /* Navigation Styles */
        .navbar {
            background-color: #003b5c;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 90px !important;
        }

        .logo img{
           width: 200px;
           margin-top: 10px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 20px 20px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        /* .nav-link:hover {
            background-color: #005b85;
        } */

        .nav-link.dropdown-toggle::after {
            content: ' ▼';
            font-size: 12px;
            margin-left: 5px;
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #003b5c;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            position: relative;
            list-style: none;
        }

        .dropdown-link {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-link:hover {
            background-color: #005b85;
        }

        .dropdown-link.has-submenu::after {
            content: ' ►';
            float: right;
            font-size: 12px;
        }

        /* Nested Dropdown Styles */
        .nested-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #005b85;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            list-style: none;
        }

        .nested-dropdown.left {
            left: auto;
            right: 100%;
            transform: translateX(10px);
            list-style: none;
        }

        .dropdown-item:hover .nested-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .dropdown-item:hover .nested-dropdown.left {
            transform: translateX(0);
        }

        .nested-dropdown .dropdown-link {
            background-color: #005b85;
        }

        .nested-dropdown .dropdown-link:hover {
            background-color: #0077b3;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: white;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 60px;
                flex-direction: column;
                background-color: #003b5c;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0;
            }

            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link.dropdown-toggle::after {
                content: ' +';
                float: right;
                font-size: 16px;
                font-weight: bold;
            }

            .nav-link.dropdown-toggle.active::after {
                content: ' -';
            }

            .hamburger {
                display: flex;
            }

            /* Mobile Dropdown Styles */
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: #005b85;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown.active {
                max-height: 500px;
            }

            .dropdown-link {
                padding-left: 40px;
            }

            .dropdown-link.has-submenu::after {
                content: ' +';
                float: right;
                font-size: 14px;
            }

            .dropdown-link.has-submenu.active::after {
                content: ' -';
            }

            /* Mobile Nested Dropdown */
            .nested-dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background-color: #0077b3;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nested-dropdown.active {
                max-height: 300px;
            }

            .nested-dropdown .dropdown-link {
                padding-left: 60px;
                background-color: #0077b3;
            }

            .nested-dropdown .dropdown-link:hover {
                background-color: #0099d4;
            }
        }

        .btn {
            padding: 8px 16px;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
            display: inline-block;
            text-align: center;
        }

        .btn-green {
            background-color: var(--accent-color-green);
            color: var(--light-text);
        }

        .btn-red {
            background-color: var(--accent-color-red);
            color: var(--light-text);
        }

        .btn-blue {
            background-color: var(--primary-color);
            color: var(--light-text);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        .mobile-menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* Hero Section */
        .hero-slider {
            position: relative;
            height: 80vh;
        }

        .slider {
            height: 100%;
        }

        .slide {
            height: 80vh;
            position: relative;
            outline: none;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .slide-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 91, 143, 0.7);
        }

        .slide1 .slide-bg {
            background-image: url('https://mcor.co.in/wp-content/uploads/2024/01/Bird-view-copy.webp');
        }

        .slide2 .slide-bg {
            background-image: url('/api/placeholder/1920/1080');
        }

        .slide3 .slide-bg {
            background-image: url('/api/placeholder/1920/1080');
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 15%;
            /* instead of 50% */
            transform: translateY(-50%);
            /* only vertical centering */
            text-align: left;
            color: var(--light-text);
            z-index: 1;
            width: 40%;
            max-width: 600px;
        }

        .hero-title {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
        }

        /* Slider Navigation */
        .slick-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 18px;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .slick-arrow:hover {
            background-color: rgba(255, 255, 255, 0.8);
        }

        .slick-prev {
            left: 20px;
        }

        .slick-next {
            right: 20px;
        }

        .slick-dots {
            position: absolute;
            bottom: 20px;
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0;
            width: 100%;
            list-style: none;
            z-index: 9;
        }

        .slick-dots li {
            margin: 0 5px;
        }

        .slick-dots li button {
            font-size: 0;
            border: 0;
            background-color: rgba(255, 255, 255, 0.5);
            height: 12px;
            width: 12px;
            border-radius: 50%;
            cursor: pointer;
            transition: var(--transition);
            padding: 0;
        }

        .slick-dots li.slick-active button {
            background-color: #fff;
            transform: scale(1.2);
        }

        .slick-dots li button:before {
            color: transparent !important;
        }

        .slick-next:before {
            display: none;
        }

        .slick-prev:before {
            display: none;
        }

        /* About Section */
        .about {
            padding: 80px 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: var(--box-shadow);
        }

        .about-text h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-text p {
            margin-bottom: 25px;
            color: #666;
        }

        /* Achievements Section */
        .achievements {
            background-color: var(--primary-color);
            padding: 60px 0;
            color: var(--light-text);
            text-align: center;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .achievement-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .achievement-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .achievement-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .achievement-text {
            font-size: 1rem;
        }

        /* Projects Section (Common) */
        .projects {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* Apartments Section */
        .apartments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .apartment-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            background-color: var(--light-text);
        }

        .apartment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .apartment-image {
            height: 200px;
            position: relative;
        }

        .apartment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .completed-tag {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--accent-color-red);
            color: var(--light-text);
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
        }

        .apartment-details {
            padding: 20px;
        }

        .apartment-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .apartment-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .apartment-features {
            margin-bottom: 20px;
        }

        .apartment-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .apartment-feature i {
            color: var(--primary-color);
        }

        /* Plots Section */
        .plots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .plot-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            background-color: var(--light-text);
        }

        .plot-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .plot-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .plot-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .plot-features {
            margin-bottom: 20px;
        }

        .plot-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .plot-feature i {
            color: var(--primary-color);
        }

        /* Promo Banner */
        .promo-banner {
            background-color: #003b5c;
            color: var(--light-text);
            padding: 40px 0;
            text-align: center;
        }

        .promo-text {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-office h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .office-address {
            margin-bottom: 15px;
        }

        .office-contact {
            margin-bottom: 20px;
        }

        .office-contact div {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .office-contact i {
            color: var(--primary-color);
        }

        .get-directions {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            gap: 5px;
            transition: var(--transition);
        }

        .get-directions:hover {
            text-decoration: underline;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--light-text);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-menu,
            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: 1fr;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100%;
                background-color: var(--light-text);
                z-index: 1001;
                padding: 20px;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                overflow-y: auto;
            }

            .mobile-menu.active {
                left: 0;
            }

            .mobile-menu-close {
                text-align: right;
                margin-bottom: 20px;
                font-size: 24px;
                cursor: pointer;
            }

            .mobile-menu-items {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .mobile-menu-item {
                padding: 10px 0;
                border-bottom: 1px solid #eee;
            }

            .mobile-menu-cta {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                display: none;
            }

            .overlay.active {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .topbar-content {
                flex-direction: column;
                gap: 10px;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-slider {
                height: 70vh;
            }

            .slide {
                height: 70vh;
            }

            .hero-content {
                left: 5%;
                width: 90%;
                max-width: 90%;
                transform: translateY(-50%);
                /* only vertical center, no X centering */
                text-align: left;
            }

            .topbar-contact {
                display: block;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            /* transform: translateY(20px); */
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;

        }


        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .achievement-item {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .achievement-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .achievement-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .achievement-text {
            font-size: 1rem;
        }

        /* Projects Section (Common) */
        .projects {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--primary-color);
        }

        /* Apartments Section */
        .apartments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .apartment-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            background-color: var(--light-text);
        }

        .apartment-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .apartment-image {
            height: 200px;
            position: relative;
        }

        .apartment-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .completed-tag {
            position: absolute;
            top: 0;
            left: 0;
            background-color: var(--accent-color-red);
            color: var(--light-text);
            padding: 5px 10px;
            font-size: 12px;
            font-weight: 500;
        }

        .apartment-details {
            padding: 20px;
        }

        .apartment-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary-color);
        }

        .apartment-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .apartment-features {
            margin-bottom: 20px;
        }

        .apartment-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .apartment-feature i {
            color: var(--primary-color);
        }

        /* Plots Section */
        .plots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .plot-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            background-color: var(--light-text);
        }

        .plot-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .plot-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .plot-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .plot-features {
            margin-bottom: 20px;
        }

        .plot-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .plot-feature i {
            color: var(--primary-color);
        }

        /* Promo Banner */
        .promo-banner {
            background-color: #003b5c;
            color: var(--light-text);
            padding: 40px 0;
            text-align: center;
        }

        .promo-text {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-office h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .office-address {
            margin-bottom: 15px;
        }

        .office-contact {
            margin-bottom: 20px;
        }

        .office-contact div {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .office-contact i {
            color: var(--primary-color);
        }

        .get-directions {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            gap: 5px;
            transition: var(--transition);
        }

        .get-directions:hover {
            text-decoration: underline;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--light-text);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-menu,
            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: 1fr;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100%;
                background-color: var(--light-text);
                z-index: 1001;
                padding: 20px;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                overflow-y: auto;
            }

            .mobile-menu.active {
                left: 0;
            }

            .mobile-menu-close {
                text-align: right;
                margin-bottom: 20px;
                font-size: 24px;
                cursor: pointer;
            }

            .mobile-menu-items {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .mobile-menu-item {
                padding: 10px 0;
                border-bottom: 1px solid #eee;
            }

            .mobile-menu-cta {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                display: none;
            }

            .overlay.active {
                display: block;
            }
        }

        @media (max-width: 576px) {
            .topbar-content {
                flex-direction: column;
                gap: 10px;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero-slider {
                height: 70vh;
            }

            .slide {
                height: 70vh;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            /* transform: translateY(20px); */
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;

        }

        .apartment-features {
            margin-bottom: 20px;
        }

        .apartment-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .apartment-feature i {
            color: var(--primary-color);
        }

        /* Plots Section */
        .plots-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .plot-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 20px;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            background-color: var(--light-text);
        }

        .plot-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-color);
        }

        .plot-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .plot-location {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .plot-features {
            margin-bottom: 20px;
        }

        .plot-feature {
            font-size: 0.9rem;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .plot-feature i {
            color: var(--primary-color);
        }

        /* Promo Banner */
        .promo-banner {
            background-color: #003b5c;
            color: var(--light-text);
            padding: 40px 0;
            text-align: center;
        }

        .promo-text {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 500;
        }

        /* Footer */
        .footer {
            background-color: #f8f9fa;
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .footer-office h3 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .office-address {
            margin-bottom: 15px;
        }

        .office-contact {
            margin-bottom: 20px;
        }

        .office-contact div {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .office-contact i {
            color: var(--primary-color);
        }

        .get-directions {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 500;
            gap: 5px;
            transition: var(--transition);
        }

        .get-directions:hover {
            text-decoration: underline;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
            font-size: 0.9rem;
            color: #666;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background-color: var(--primary-color);
            color: var(--light-text);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-icon:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .achievements-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .nav-menu,
            .nav-cta {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .apartments-grid,
            .plots-grid {
                grid-template-columns: 1fr;
            }

            .mobile-menu {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                height: 100%;
                background-color: var(--light-text);
                z-index: 1001;
                padding: 20px;
                box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
                transition: var(--transition);
                overflow-y: auto;
            }

            .mobile-menu.active {
                left: 0;
            }

            .mobile-menu-close {
                text-align: right;
                margin-bottom: 20px;
                font-size: 24px;
                cursor: pointer;
            }

            .mobile-menu-items {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }

            .mobile-menu-item {
                padding: 10px 0;
                border-bottom: 1px solid #eee;
            }

            .mobile-menu-cta {
                margin-top: 20px;
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .overlay {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0, 0, 0, 0.5);
                z-index: 1000;
                display: none;
            }

            .overlay.active {
                display: block;
            }
        }

        .mobile-menu {
            display: none;
        }

        @media (max-width: 576px) {
            .topbar-content {
                flex-direction: column;
                gap: 10px;
            }

            .mobile-menu {
                display: block;
            }

            .achievements-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero {
                height: 70vh;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            /* transform: translateY(20px); */
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.active {
            opacity: 1;

        }
        .goog-te-banner-frame {
            display: none !important;
        }

        body {
            top: 0 !important;
        }

        /* Navigation Styles */
        .navbar {
            background-color: #fff;
            position: relative;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 60px;
        }

        .logo {
            color: white;
            font-size: 24px;
            font-weight: bold;
            text-decoration: none;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: block;
            padding: 20px 20px;
            color: #000;
            text-decoration: none;
            transition: background-color 0.3s ease;
            white-space: nowrap;
        }

        /* .nav-link:hover {
            background-color: #005b85;
        } */

        .nav-link.dropdown-toggle::after {
            content: ' ▼';
            font-size: 12px;
            margin-left: 5px;
        }

        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #003b5c;
            min-width: 300px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            position: relative;
        }

        .dropdown-link {
            display: block;
            padding: 12px 20px;
            color: white;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dropdown-link:hover {
            background-color: #005b85;
        }

        .dropdown-link.has-submenu::after {
            content: ' ►';
            float: right;
            font-size: 12px;
        }

        /* Nested Dropdown Styles */
        .nested-dropdown {
            position: absolute;
            top: 0;
            left: 100%;
            background-color: #005b85;
            min-width: 180px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-10px);
            transition: all 0.3s ease;
            z-index: 1001;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .nested-dropdown.left {
            left: auto;
            right: 100%;
            transform: translateX(10px);
        }

        .dropdown-item:hover .nested-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .dropdown-item:hover .nested-dropdown.left {
            transform: translateX(0);
        }

        .nested-dropdown .dropdown-link {
            background-color: #005b85;
        }

        .nested-dropdown .dropdown-link:hover {
            background-color: #0077b3;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: #000;
            margin: 3px 0;
            transition: 0.3s;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .btn {
            padding: 8px 16px;
            border-radius: var(--border-radius);
            font-weight: 500;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            outline: none;
            display: inline-block;
            text-align: center;
        }

        .btn-green {
            background-color: var(--accent-color-green);
            color: var(--light-text);
        }

        .btn-red {
            background-color: var(--accent-color-red);
            color: var(--light-text);
        }

        .btn-blue {
            background-color: var(--primary-color);
            color: var(--light-text);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--box-shadow);
        }

        /* Mobile Menu Styles */
        @media screen and (max-width: 768px) {
            .dropdown {
            min-width: 200px;
        }
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 0px !important;
                flex-direction: column;
                background-color: #fff;
                width: 100%;
                text-align: left;
                transition: 0.3s;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
                height: calc(100vh - 60px);
                overflow-y: auto;
            }

            .nav-menu.active {
                left: 0;
            }

            .nav-item {
                margin: 0;
                list-style: none !important;
            }

            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-link.dropdown-toggle::after {
                content: ' +';
                float: right;
                font-size: 16px;
                font-weight: bold;
            }

            .nav-link.dropdown-toggle.active::after {
                content: ' -';
            }

            .hamburger {
                display: flex;
            }
.hamburger.active{
    position: fixed;
    top: 5px;
    right: 5px;
    background-color: #fff;
    display: flex;
}
            /* Mobile Dropdown Styles */
            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: #005b85;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .dropdown.active {
                max-height: 500px;
            }

            .dropdown-link {
                padding-left: 40px;
            }

            .dropdown-link.has-submenu::after {
                content: ' +';
                float: right;
                font-size: 14px;
            }

            .dropdown-link.has-submenu.active::after {
                content: ' -';
            }

            /* Mobile Nested Dropdown */
            .nested-dropdown {
                position: static;
                transform: none;
                opacity: 1;
                visibility: visible;
                box-shadow: none;
                background-color: #0077b3;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }

            .nested-dropdown.active {
                max-height: 300px;
            }

            .nested-dropdown .dropdown-link {
                padding-left: 60px;
                background-color: #0077b3;
            }

            .nested-dropdown .dropdown-link:hover {
                background-color: #0099d4;
            }
        }

        /* Content Styles */
        .content {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .content h1 {
            color: #003b5c;
            margin-bottom: 20px;
            padding: 20px;
        }

        .content p {
            padding: 0 20px 20px;
            color: #666;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        @media (max-width: 576px) {
            .topbar-content {
                flex-direction: column;
                gap: 10px;
            }

            .topbar-contact {
                display: block;
            }
        }
