 :root {
            --primary: #0a2540;
            --secondary: #d4af37;
            --accent: #8b7355;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --text: #333333;
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .brandFont{
            font-family: "Emilys Candy", serif;
            font-weight: 400;
            font-style: normal;
        }

        /* Header & Navigation */
        header {
          position: fixed;
          top: 0;
          left: 0;
          width: 100vw;
          z-index: 1000;
          padding: 4px 0;
          transition: var(--transition);
          background: rgba(255, 255, 255, 0.05);
          backdrop-filter: blur(15px);
          -webkit-backdrop-filter: blur(15px);
          border-bottom: 1px solid var(--glass-border);
          box-sizing: border-box; /* ✅ ensures consistent sizing */
          overflow-x: hidden;     /* ✅ prevents width overflow on mobile */
        }
        
        header * {
          box-sizing: border-box; /* ✅ makes child elements respect container width */
        }

        header.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--light);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap:5px;
        }

        .logo img{
            display: flex;
            width: 60px;
        }

        .font1 , .font1 span{
            font-family: "Tangerine", serif;
        }

        .logo span {
            color: var(--dark);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: #d4af37;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: var(--transition);
        }

        .nav-links a:hover:after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .cta-button {
            background: var(--secondary);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid var(--secondary);
        }

        .cta-button:hover {
            background: transparent;
            color: var(--secondary);
        }

        .mobile-menu {
            display: none;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
            z-index: 1001;
        }

        /* Mobile Navigation */
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background: rgba(10, 37, 64, 0.95);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            z-index: 999;
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            padding: 100px 30px 30px;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            list-style: none;
            margin-bottom: 30px;
        }

        .mobile-nav-links li {
            margin-bottom: 20px;
        }

        .mobile-nav-links a {
            color: var(--light);
            text-decoration: none;
            font-size: 18px;
            font-weight: 500;
            display: block;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }

        .mobile-nav-links a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }

        .mobile-nav .cta-button {
            width: 100%;
            text-align: center;
            margin-top: 20px;
        }

        .close-menu {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 24px;
            color: var(--light);
            cursor: pointer;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .project-hero-content {
            max-width: 800px;
            color: var(--light);
            z-index: 2;
        }

        .project-hero-subtitle {
            font-size: 18px;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
        }

        .project-hero-title {
            font-size: 64px;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
        }

        .project-hero-title span {
            color: var(--secondary);
        }

        .project-hero-description {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .project-hero-buttons {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
        }

        .secondary-button {
            background: transparent;
            color: var(--light);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid var(--light);
        }

        .secondary-button:hover {
            background: var(--light);
            color: var(--primary);
        }

        /* Project Overview */
        .project-overview {
            padding: 100px 0;
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            font-size: 36px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .overview-text p {
            margin-bottom: 20px;
            font-size: 16px;
        }

        .overview-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            background: var(--secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
        }

        .highlight-text h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .overview-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(50px);
        }

        .overview-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .overview-image:hover img {
            transform: scale(1.05);
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: #f5f5f5;
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 60px;
            color: var(--primary);
            position: relative;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .gallery-item {
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            position: relative;
            cursor: pointer;
            opacity: 0;
            transform: translateY(30px);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 37, 64, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            color: var(--light);
            font-size: 30px;
        }

        /* Images Gallery */
        /* Lightbox background */
/* Lightbox */
.image-lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 9999;
  overflow: hidden;
}

.image-lightbox.active {
  visibility: visible;
  opacity: 1;
}

.image-lightbox img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  position: absolute;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 1;
  z-index: 10; /* Make sure image is below buttons */
}

/* Close button */
.image-lightbox .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 35px;
  color: white;
  cursor: pointer;
  font-weight: bold;
  z-index: 20; /* Always on top */
  user-select: none;
}

/* Navigation arrows */
.image-lightbox .prev,
.image-lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  color: white;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  background: rgba(0,0,0,0.4);
  border-radius: 50px;
  z-index: 20; /* Always on top */
}

 .image-lightbox .prev { left: 10px; font-size: 40px; }
 .image-lightbox .next { right: 10px; font-size: 40px; }

/* Position arrows for mobile */
@media (max-width: 768px) {
  .image-lightbox .prev { left: 10px; font-size: 40px; }
  .image-lightbox .next { right: 10px; font-size: 40px; }
  .image-lightbox .close-btn { top: 10px; right: 10px; font-size: 30px; }
}


        /* Features Section */
        .features-section {
            padding: 100px 0;
        }

        .features-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .tab-button {
            background: var(--light);
            color: var(--primary);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            display: inline-block;
            border: 2px solid var(--primary);
            cursor: pointer;
        }

        .tab-button.active {
            background: var(--primary);
            color: var(--light);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(30px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--secondary);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        /* Location Section */
        .location-section {
            padding: 80px 0;
            background: var(--primary);
            color: var(--light);
        }

        .location-section .section-title {
            color: var(--light);
        }

        .location-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .location-info h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: var(--secondary);
        }

        .location-details {
            margin-bottom: 30px;
        }

        .location-detail {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .location-detail i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 18px;
            width: 20px;
        }

        .location-map {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            height: 400px;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Floor Plans */
        .floorplans-section {
            padding: 100px 0;
        }

        .floorplan-tabs {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
            justify-content: center;
        }

        .floorplan-content {
            display: none;
        }

        .floorplan-content.active {
            display: block;
        }

        .floorplan-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 30px;
        }

        .floorplan-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .floorplan-details {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }

        .floorplan-detail {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .floorplan-detail h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .floorplan-detail p {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary);
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(10, 37, 64, 0.9), rgba(10, 37, 64, 0.9)), url('https://images.unsplash.com/photo-1564013798-1a7b165312d8?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--light);
            text-align: center;
        }

        .cta-section .section-title {
            color: var(--light);
        }

        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-description {
            font-size: 18px;
            margin-bottom: 40px;
        }

        .contact-methods {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-method {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            width: 180px;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.1);
        }

        .contact-icon {
            font-size: 30px;
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .contact-method h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .contact-method a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-method a:hover {
            color: var(--secondary);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--secondary);
            color: var(--primary);
            transform: translateY(-5px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 14px;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Back to Projects */
        .back-to-projects {
            padding: 20px 0;
            background: var(--primary);
        }

        .back-link {
            color: var(--light);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }

        .back-link:hover {
            color: var(--secondary);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .project-hero-title {
                font-size: 48px;
            }
            
            .overview-content, .location-content {
                grid-template-columns: 1fr;
            }
            
            .overview-image {
                order: -1;
            }
            
            .nav-links, .navbar .cta-button {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .project-hero-title {
                font-size: 36px;
            }
            
            .project-hero-buttons {
                flex-direction: column;
            }
            
            .section {
                padding: 70px 0;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .overview-highlights {
                grid-template-columns: 1fr;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-method {
                width: 100%;
                max-width: 250px;
            }
        }

        @media (max-width: 576px) {
            .project-hero-title {
                font-size: 32px;
            }
            
            .project-hero-description {
                font-size: 16px;
            }
            
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .features-tabs, .floorplan-tabs {
                flex-direction: row;
                align-items: center;
            }
        }
        
        
        /*Floating Buttons -------------------------*/
        
/* Floating buttons container */
        .float-buttons {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 1000;
        }
        
        /* Common button styles */
        .float-button {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            pointer-events: auto;
            text-decoration: none;
        }
        
        .float-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
        }
        
        /* WhatsApp button */
        .whatsapp-float {
            background-color: #25D366;
        }
        
        /* Phone button */
        .phone-float {
            background-color: #3498db;
        }
        
        /* Ripple effect */
        .ripple {
            position: absolute;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.7);
            transform: scale(0);
            animation: ripple 0.6s linear;
            pointer-events: none;
        }
        
        @keyframes ripple {
            to {
                transform: scale(4);
                opacity: 0;
            }
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .float-button {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .float-buttons {
                padding: 0 15px;
            }
        }
        
        @media (max-width: 480px) {
            .float-button {
                width: 50px;
                height: 50px;
                font-size: 20px;
                /*top: -50px;*/
            }
            
            .float-buttons {
                padding: 0 10px;
                bottom: 15px;
                right: 20px;
            }
            
        }