/*----Your One-Stop-------*/        

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero-section {
            background: linear-gradient(135deg, #003d68, #003d68, #3a8561);
            background-size: 400% 400%;
            animation: gradientShift 15s ease infinite;
            color: white;
            padding: 40px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,165.3C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            background-position: center;
            animation: wave 20s linear infinite;
        }

        @keyframes wave {
            0% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(-5%) translateY(-5%); }
            100% { transform: translateX(0) translateY(0); }
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            font-weight: 300;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 40px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .cta-button {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            animation: fadeInUp 1s ease-out 0.9s both;
        }

        .cta-button:hover {
            background-color: #e55a2b;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .features-section {
            padding: 80px 0;
            background-color: white;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            color: #1a2a6c;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #1a2a6c, #fdbb2d);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .feature-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            height: 200px;
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 4rem;
        }

        .feature-content {
            padding: 25px;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #1a2a6c;
        }

        .feature-description {
            color: #666;
            line-height: 1.6;
        }

        .locations-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .locations-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .location-tag {
            background: white;
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            font-weight: 600;
            color: #1a2a6c;
            transition: all 0.3s ease;
            cursor: pointer;
            opacity: 0;
            transform: scale(0.8);
        }

        .location-tag.visible {
            opacity: 1;
            transform: scale(1);

        }

        .location-tag:hover {
            background: #1a2a6c;
            color: white;
            transform: scale(1.05);
        }

        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
/*----Your One-Stop-------*/          



/*---Across Prime Locations in Delhi NCR-----*/

         /* RESET AND BASE STYLES */
        .exclusive-projects-section * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .exclusive-projects-section {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.6;
            padding: 60px 20px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }
        
        .exclusive-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* HEADER STYLES */
        .exclusive-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px 0;
        }

        .exclusive-main-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: #1a3a5f;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .exclusive-main-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 4px;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            border-radius: 2px;
        }

        .exclusive-subtitle {
            font-size: 1.2rem;
            color: #5a7a9c;
            max-width: 800px;
            margin: 0 auto;
        }

        /* PROJECT CARDS STYLES - MODIFIED TO SHOW ALL 5 BOXES TOGETHER */
        .exclusive-projects-container {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .exclusive-project-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            opacity: 1;
            transform: translateY(0);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .exclusive-project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .exclusive-card-header {
            padding: 25px 20px 15px;
            position: relative;
            z-index: 1;
        }

        .exclusive-location-name {
            font-size: 1.3rem;
            font-weight: 700;
            color: #1a3a5f;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

        .exclusive-location-icon {
            width: 35px;
            height: 35px;
            background: linear-gradient(135deg, #ff7e5f, #feb47b);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
            color: white;
            font-size: 1rem;
            flex-shrink: 0;
        }

        .exclusive-card-content {
            padding: 0 15px 20px;
            color: #5a7a9c;
            font-size: 0.95rem;
            line-height: 1.6;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .exclusive-highlight-badge {
            display: inline-block;
            background: linear-gradient(to right, #36d1dc, #5b86e5);
            color: white;
            padding: 6px 15px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-top: auto;
            box-shadow: 0 4px 15px rgba(91, 134, 229, 0.3);
            animation: exclusive-pulse 2s infinite;
            text-align: center;
        }

        @keyframes exclusive-pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        /* FLOATING SHAPES */
        .exclusive-floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .exclusive-shape {
            position: absolute;
            opacity: 0.1;
            border-radius: 50%;
            background: linear-gradient(135deg, #ff7e5f, #5b86e5);
            animation: exclusive-float 20s infinite linear;
        }

        @keyframes exclusive-float {
            0% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -50px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
            100% {
                transform: translate(0, 0) rotate(360deg);
            }
        }

        /* CTA SECTION */
        .exclusive-cta-section {
            text-align: center;
            padding: 50px 0;
            background: linear-gradient(135deg, #1a3a5f, #2c5282);
            border-radius: 15px;
            color: white;
            margin-top: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            padding-left:15px;
            padding-right:15px;
        }

        .exclusive-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
        }

        .exclusive-cta-description {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }

        .exclusive-cta-button {
            display: inline-block;
            background: linear-gradient(to right, #ff7e5f, #feb47b);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            border: none;
            cursor: pointer;
        }

        .exclusive-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* FOOTER */
        .exclusive-footer {
            text-align: center;
            padding: 30px 0;
            color: #5a7a9c;
            font-size: 0.9rem;
        }

        /* RESPONSIVE ADJUSTMENTS */
        @media (max-width: 1200px) {
            .exclusive-projects-container {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .exclusive-main-title {
                font-size: 2.5rem;
            }
            
            .exclusive-projects-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .exclusive-location-name {
                font-size: 1.3rem;
            }
            
            .exclusive-cta-title {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 576px) {
            .exclusive-projects-container {
                grid-template-columns: 1fr;
            }
            
            .exclusive-main-title {
                font-size: 2rem;
            }
        }

/*---Across Prime Locations in Delhi NCR-----*/




 

 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #1a2a3a, #2c3e50);
            color: #fff;
            min-height: 100vh;

            align-items: center;
            justify-content: center;

        }
        
        .container {
            max-width: 1200px;
            width: 100%;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            animation: fadeIn 1s ease-out;
        }
        
        .section-title h1 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            background: linear-gradient(135deg, #fff, #3498db);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .section-title p {
            font-size: 1.2rem;
            color: #ecf0f1;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.1);
            animation: slideUp 1s ease-out;
            gap: 10%; /* 10% gap between boxes */
        }
        
        .text-content {
            flex: 1.8;
            min-width: 300px;
            padding: 50px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-left: 5%; /* 5% margin from left */
        }
        
        .form-content {
            flex: 1;
            min-width: 250px;
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.05);
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            margin-right: 5%; /* 5% margin from right */
        }
        
        .text-content h2 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .text-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .text-content p {
            margin-bottom: 25px;
            color: #ecf0f1;
            font-size: 1.1rem;
            line-height: 1.7;
        }
        
        .features {
            margin: 30px 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            padding: 15px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            transition: transform 0.3s ease, background 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(10px);
            background: rgba(255, 255, 255, 0.1);
        }
        
        .feature-icon {
            width: 65px;
            height: 30px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: white;
            font-size: 0.9rem;
        }
        
        .feature-text h4 {
            color: #fff;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .feature-text p {
            font-size: 0.95rem;
            color: #bdc3c7;
            margin: 0;
        }
        
        .form-content h2 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .form-content h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .form-content > p {
            margin-bottom: 20px;
            color: #ecf0f1;
            font-size: 1rem;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #ecf0f1;
            font-size: 0.95rem;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: none;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .form-control:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px #3498db;
            border-color: #3498db;
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        .input-icon {
            position: absolute;
            right: 15px;
            top: 42px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        
        .btn-submit {
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
            letter-spacing: 0.5px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        .btn-submit:active {
            transform: translateY(-1px);
        }
        
        .floating-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }
        
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 70%;
            left: 80%;
            animation-delay: -5s;
        }
        
        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 50%;
            left: 5%;
            animation-delay: -10s;
        }
        
        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 85%;
            animation-delay: -2s;
        }
        
        .floating-element:nth-child(5) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 15%;
            animation-delay: -8s;
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @media (max-width: 768px) {
            .content-wrapper {
                flex-direction: column;
                gap: 0; /* Remove gap on mobile */
            }
            
            .text-content, .form-content {
                padding: 30px;
                margin-left: 0;
                margin-right: 0;
            }
            
            .section-title h1 {
                font-size: 2.2rem;
            }
            
            .form-content {
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
            }
        }







/*-----start footer-----*/
.sticky-footer {
            display: none;
            position: fixed;
            z-index: 2000;
            bottom: 0;
            width: 100%;
            background: #EFEFEF;
            color: white;
            padding-block: 4px;
            text-align: center;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.42);
            background: linear-gradient(697deg, rgba(0, 91, 83, 0.98), rgba(0, 30, 18, 0.3), rgba(0, 91, 83, 0.9));
        }

        .sticky-footer a,
        .sticky-footer button {
            color: white;
            text-decoration: none;
            font-size: 12px;
            padding: 6px 10px;
            border: none;
            /* background: #FFA500; */
            border-radius: 5px;
            cursor: pointer;
            margin: 0;
        }

        .button-call {
            background: linear-gradient(98deg, #000000c9, #1094bd);
            border-color: #004d46;
        }

        .button-enquiry {
            background: linear-gradient(98deg, #000000c9, #1094bd);
            border-color: #00695c;
        }

        .button-whatsapp {
            background: #25d366;
            border-color: #007d57;
        }

        .sticky-footer i {
            margin-right: 1px;
            font-size: 17px;
        }

        .sticky-footer i::before {
            margin-top: 0 !important;
        }

        .whatapp.whatapp {
            background: #25d366;
        }

        @media (width < 1160px) {
            .sticky-footer {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                padding-inline: 3px;
                gap: 3px;
            }

            .footer-section {
                padding-bottom: 1.5rem;
            }

            .slide-in-form {
                padding-bottom: 5rem;
            }
        }

/*----End Footer-----*/                



/*----Button Css----*/

.card-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.btn {
  position: relative;
  display: inline-block;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Gradient backgrounds */
.view-btn {
  background: linear-gradient(135deg, #003d68, #00c6ff);
}

.enquire-btn {
  background: linear-gradient(135deg, #fa6115, #ff4b2b);
}

/* Hover animations */
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: skewX(-45deg);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 150%;
}

/* Subtle scale & shadow on hover */
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive tweak */
@media (max-width: 500px) {
  .card-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
}
/*----Button Css----*/



/*----Page Payout Css--*/
        :root {
            --primary-color: #1a5276;
            --secondary-color: #f39c12;
            --accent-color: #2ecc71;
            --light-color: #f5f5f5;
            --dark-color: #333;
            --transition: all 0.4s ease;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #fff;
            color: var(--dark-color);
            line-height: 1.6;

        }
        
        .container {
            width: 80%; /* 10% larger than standard 80% */
            max-width: 1320px; /* Increased from 1200px */
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Overview Section */
        .section {
            /*padding: 1.1rem 0;*/
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary-color);
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
            margin: 10px auto;
        }
        
        .overview-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .overview-text {
            flex: 1;
        }
        
        .overview-text p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        
        .overview-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }
        
        .overview-image:hover img {
            transform: scale(1.05);
        }
        
        /* Top Line Shadow Effect for Overview Image */
        .overview-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(135deg, 
                rgba(26, 82, 118, 0.8) 0%, 
                rgba(243, 156, 18, 0.7) 50%, 
                rgba(46, 204, 113, 0.6) 100%);
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .overview-image:hover::before {
            opacity: 1;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light-color);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); /* Slightly larger */
            gap: 25px; /* Increased gap */
        }
        
        .image-box {
            position: relative;
            height: 280px; /* Slightly taller */
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
            cursor: pointer;
        }
        
        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .image-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .image-box:hover img {
            transform: scale(1.1);
        }
        
        .image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 25px; /* Slightly more padding */
            transform: translateY(100%);
            transition: var(--transition);
        }
        
        .image-box:hover .image-overlay {
            transform: translateY(0);
        }
        
        /* Top Line Shadow Effect for Gallery Boxes */
        .image-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(135deg, 
                rgba(26, 82, 118, 0.8) 0%, 
                rgba(243, 156, 18, 0.7) 50%, 
                rgba(46, 204, 113, 0.6) 100%);
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .image-box:hover::before {
            opacity: 1;
        }
        
        /* Highlights Section */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); /* Slightly larger */
            gap: 35px; /* Increased gap */
        }
        
        .highlight-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px; /* More padding */
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-align:center;
        }
        
        .highlight-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }
        
        .highlight-box:hover:before {
            opacity: 1;
        }
        
        .highlight-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .highlight-content {
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .highlight-box:hover .highlight-content {
            color: white;
        }
        
        .highlight-icon {
            font-size: 2.8rem; /* Slightly larger */
            margin-bottom: 20px; /* More spacing */
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .highlight-box:hover .highlight-icon {
            color: white;
            transform: scale(1.1);
        }
        
        .highlight-box h3 {
            font-size: 1.6rem; /* Slightly larger */
            margin-bottom: 20px; /* More spacing */
        }
        
        /* Top Line Shadow Effect for Highlight Boxes */
        .highlight-box::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(135deg, 
                rgba(26, 82, 118, 0.8) 0%, 
                rgba(243, 156, 18, 0.7) 50%, 
                rgba(46, 204, 113, 0.6) 100%);
            border-radius: 10px 10px 0 0;
            opacity: 0;
            transition: var(--transition);
            z-index: 2;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        
        .highlight-box:hover::after {
            opacity: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .overview-content {
                flex-direction: column;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .container {
                width: 95%; /* More width on mobile */
            }
        }
/*---Page layout Css---*/        



/*---Location to Amenities----*/

        
        /* Location Advantage Section */
        .location {
            background-color: var(--light-color);
        }
        
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .location-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .location-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }
        
        .location-box:hover::before {
            opacity: 1;
        }
        
        .location-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .location-content {
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .location-box:hover .location-content {
            color: white;
        }
        
        .location-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .location-box:hover .location-icon {
            color: white;
            transform: scale(1.1);
        }
        
        /* Investment Section */
        .investment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .investment-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }
        
        .investment-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }
        
        .investment-box:hover::before {
            opacity: 1;
        }
        
        .investment-box:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .investment-content {
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .investment-box:hover .investment-content {
            color: white;
        }
        
        .investment-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .investment-box:hover .investment-number {
            color: white;
            transform: scale(1.1);
        }
        
        /* Amenities Section */
        .amenities {
            background-color: var(--light-color);
        }
        
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .amenity-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            cursor: pointer;
            text-align: center;
        }
        
        .amenity-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: var(--transition);
            z-index: 0;
        }
        
        .amenity-box:hover::before {
            opacity: 1;
        }
        
        .amenity-box:hover {
            transform: translateY(-5px) scale(1.03);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .amenity-content {
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .amenity-box:hover .amenity-content {
            color: white;
        }
        
        .amenity-icon {
            font-size: 2rem;
            margin-bottom: 10px;
            color: var(--primary-color);
            transition: var(--transition);
        }
        
        .amenity-box:hover .amenity-icon {
            color: white;
            transform: scale(1.1);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .section-title h2 {
                font-size: 2rem;
            }
        }



/*-- =========== Home Lone EMI Calculator start ========= */        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
           
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }
        
        .calculator-container {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 1600px;
            overflow: hidden;
        }
        
        .calculator-header {
            background: linear-gradient(-45deg, #003d68, #4aa3d1, #375585);
            color: white;
            padding: 1px;
            text-align: center;
        }
        
        .calculator-header h1 {
            font-size: 24px;
            font-weight: 600;
        }
        
        .calculator-body {
            padding: 25px;
        }
        
        .input-section {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 15px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }
        
        .input-group {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 150px;
        }
        
        .input-group label {
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
            font-size: 14px;
        }
        
        .input-group input {
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            transition: border-color 0.3s;
            width: 100%;
        }
        
        .input-group input:focus {
            border-color: #3498db;
            outline: none;
        }
        
        .calculate-btn {
            background-color: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s;
            height: 42px;
            white-space: nowrap;
        }
        
        .calculate-btn:hover {
            background-color: #2980b9;
        }
        
        .results-section {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }
        
        .result-group {
            display: flex;
            flex-direction: column;
            text-align: center;
            padding: 15px;
            background-color: #f8f9fa;
            border-radius: 5px;
        }
        
        .result-label {
            font-size: 14px;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .result-value {
            font-size: 16px;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .emi-value {
            color: #e74c3c;
            font-size: 18px;
        }
        
        .total-value {
            color: #e74c3c;
            font-size: 18px;
        }
        
        @media (max-width: 768px) {
            .input-section {
                flex-direction: column;
                align-items: stretch;
            }
            
            .input-group {
                width: 100%;
            }
            
            .calculate-btn {
                width: 100%;
                margin-top: 10px;
            }
            
            .results-section {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .results-section {
                grid-template-columns: 1fr;
            }
        }     
/*-- =========== Home Lone EMI Calculator End ========= */          



/*-----Start Price List----*/ 
.section-title {
            text-align: center;

            margin-bottom: 50px;
            color: #2c3e50;
            position: relative;
            font-weight: 700;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2ecc71);
            border-radius: 2px;
        }
        
        .content-box {
            overflow-x: auto;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .price-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        .price-table thead {
            background: linear-gradient(-45deg, #003d68, #4aa3d1, #375585);
            color: white;
        }
        
        .price-table th {
            padding: 20px 15px;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .price-table th:first-child {
            border-top-left-radius: 15px;
        }
        
        .price-table th:last-child {
            border-top-right-radius: 15px;
        }
        
        .price-table tbody tr {
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }
        
        .price-table tbody tr:hover {
            background-color: #f8f9fa;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .price-table td {
            padding: 25px 15px;
            font-size: 1.1rem;
            color: #495057;
        }
        
        .price-table td:first-child {
            font-weight: 600;
            color: #2c3e50;
            display: flex;
            align-items: center;
        }
        
        .property-icon {
            margin-right: 15px;
            font-size: 1.5rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
        }
        
        .price {
            font-weight: 700;
            font-size: 1.3rem;
            color: #2c3e50;
        }
        
        .price.highlight {
            color: #e74c3c;
            position: relative;
        }
        
        .price.highlight::after {
            content: 'Most Popular';
            position: absolute;
            top: -25px;
            right: 0;
            background: #e74c3c;
            color: white;
            font-size: 0.7rem;
            padding: 3px 10px;
            border-radius: 20px;
            font-weight: 600;
        }
        
        .enquiry-btn {
            padding: 12px 25px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .enquiry-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        .enquiry-btn i {
            margin-left: 8px;
            font-size: 0.9rem;
        }
        
        .note {
            text-align: center;
            margin-top: 30px;
            color: #6c757d;
            font-style: italic;
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .price-table th, .price-table td {
                padding: 15px 10px;
                font-size: 1rem;
            }
            
            .property-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
                margin-right: 10px;
            }
            
            .enquiry-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 576px) {
            .price-table {
                display: block;
            }
            
            .price-table thead {
                display: none;
            }
            
            .price-table tbody, .price-table tr, .price-table td {
                display: block;
                width: 100%;
            }
            
            .price-table tr {
                margin-bottom: 20px;
                border: 1px solid #e9ecef;
                border-radius: 10px;
                padding: 15px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            }
            
            .price-table td {
                padding: 10px 0;
                border: none;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            
            .price-table td:before {
                content: attr(data-label);
                font-weight: 600;
                color: #2c3e50;
                margin-right: 10px;
            }
            
            .price-table td:first-child {
                font-size: 1.2rem;
                border-bottom: 1px dashed #e9ecef;
                padding-bottom: 15px;
            }
        }
        
/*-----Start floor plan----*/


/*------FAQ----------*/
/*------FAQ----------*/
/* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .header {
            text-align: center;
            /*margin-bottom: 5px;*/
            padding: 20px 0;
        }
        
        .header h1 {
            color: #2c3e50;
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header p {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* FAQ Section Styles */
        .faq-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .faq-item {
            border-bottom: 1px solid #eaeaea;
        }
        
        .faq-question {
            padding: 20px;
            background-color: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.3s;
        }
        
        .faq-question:hover {
            background-color: #f5f7fa;
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
        }
        
        .faq-toggle {
            font-size: 1.5rem;
            color: #3498db;
            transition: transform 0.3s;
        }
        
        /* Icon Rotation for Open State (From previous fix) */
        .faq-question.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            /* CHANGE 1: Background color set to white to match the container, removing the 'box' look */
            background-color: white; 
        }
        
        .faq-answer.active {
            /* CHANGE 2: Top padding removed to eliminate the box effect, only bottom padding remains */
            padding: 0 20px 20px 20px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #555;
            margin-bottom: 10px;
        }

        /* The following list style is often used in the answer for clarity. */
        .faq-answer ul.feature-list {
            list-style: disc inside;
            padding-left: 20px;
            margin-top: 5px;
            margin-bottom: 10px;
        }

        .faq-answer ul.feature-list li {
            margin-bottom: 5px;
        }
        
        /* Footer Styles */
        .footer {
            text-align: center;
            margin-top: 40px;
            padding: 20px;
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 15px;
            }
        }
/*-------FAQ-----------*/
        
        
/*-------FAQ-----------*/   