
        /* Global Styles */
        :root {
            --navy-blue: #1A2B49;
            --gold: #D4AF37;
            --white: white;
            --light-gray: #F5F5F5;
        }
        body {
            margin: 0;
            padding: 0;
    /* font-family: 'Playfair Display', serif; */
            /* background-color: var(--light-gray); */
            /* color: var(--navy-blue); */
            color: #1A2B49;
            overflow-x: hidden;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes fadeInLeft {
            from { transform: translateX(-50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes fadeInRight {
            from { transform: translateX(50px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }
        @keyframes bounceIn {
            0% { transform: scale(0.9); opacity: 0; }
            50% { transform: scale(1.05); opacity: 1; }
            100% { transform: scale(1); }
        }
        @keyframes glow {
            0% { box-shadow: 0 0 0 rgba(212, 175, 55, 0.3); }
            50% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.6); }
            100% { box-shadow: 0 0 0 rgba(212, 175, 55, 0.3); }
        }
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        @keyframes zoomIn {
            from { transform: scale(1); }
            to { transform: scale(1.05); }
        }



        /* Enhanced animations with better performance */
        @keyframes fadeInUp {
            from { 
                opacity: 0; 
                transform: translateY(60px);
            }
            to { 
                opacity: 1; 
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from { 
                opacity: 0; 
                transform: translateX(-60px);
            }
            to { 
                opacity: 1; 
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from { 
                opacity: 0; 
                transform: translateX(60px);
            }
            to { 
                opacity: 1; 
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from { 
                opacity: 0; 
                transform: scale(0.8);
            }
            to { 
                opacity: 1; 
                transform: scale(1);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes shimmer {
            0% { background-position: -200% 0; }
            100% { background-position: 200% 0; }
        }


        /* Navigation Bar */
      #hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }

  #hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    width: 90%;
    max-width: 800px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
  }

  .search-bar input {
    width: 70%;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    border: none;
  }

  .search-bar button {
    padding: 10px 20px;
    border: none;
    border-radius: 0 5px 5px 0;
    background-color: #1A2B49;
    color: white;
  }

  /* Navbar transparent + fixed */
  #header .navbar {
    padding: 1rem 1rem;
  }

  #header .navbar .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A2B49;
  }

  .cta-button {
   background-color: #1A2B49;
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
  }
        /* Featured Properties */
        #featured {
            padding: 80px 0;
        }
        .property-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 20px;
        }
        .property-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .property-card:hover {
            transform: scale(1.05);
        }
        .property-image {
            width: 100%;
            height: 120px;
            background: url('placeholder-property.jpg') center/cover; /* Replace with actual image */
            transition: transform 0.3s;
        }
        .property-card:hover .property-image {
            transform: scale(1.1);
        }
        .property-info {
            padding: 20px;
            position: relative;
            /* margin-top: 50px; */
        }
        .property-price {
            font-size: 1.5rem;
            color: var(--gold);
            margin-bottom: 10px;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.3s, opacity 0.3s;
        }
        .property-cta {
            display: block;
            background: var(--navy-blue);
            color: var(--white);
            text-align: center;
            padding: 10px;
            text-decoration: none;
            transform: translateY(20px);
            opacity: 0;
            transition: transform 0.3s, opacity 0.3s;
        }
        .property-card:hover .property-price,
        .property-card:hover .property-cta {
            transform: translateY(0);
            opacity: 1;
        }

        
        /* About Us */
        #about {
            /* padding: 50px 0; */
            display: flex;
            align-items: center;
        }
        .about-text {
            flex: 1;
            padding-right: 40px;
            opacity: 0;
            text-align: center;
            animation: fadeInLeft 1s ease forwards;
        }
        .about-image {
            flex: 1;
            height: 400px;
            background: url('about-image.jpg') center/cover; /* Replace with actual image */
            opacity: 0;
            animation: fadeInRight 1s ease forwards;
        }
        /* Why Choose Us */
        #why-choose {
            padding: 80px 0;
            text-align: center;
        }
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .why-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: bounceIn 0.5s ease forwards;
        }
        .why-icon {
            font-size: 3rem;
            color: var(--gold);
            margin-bottom: 20px;
            transition: animation 0.3s;
        }
        .why-card:hover .why-icon {
            animation: glow 1s infinite;
        }
        /* Testimonials */
        #testimonials {
            padding: 80px 0;
            text-align: center;
        }
        .testimonial-carousel {
            display: flex;
            overflow: hidden;
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .testimonial-item {
            flex: 0 0 100%;
            transition: transform 0.5s ease;
            padding: 0 20px;
        }
        .testimonial-photo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: url('client-photo.jpg') center/cover; /* Replace */
            margin: 0 auto 20px;
            transition: transform 0.3s;
        }
        .testimonial-item:hover .testimonial-photo {
            transform: scale(1.1);
        }
        /* CTA Banner */
        #cta-banner {
            position: relative;
            height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden;
        }
        #cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('cta-background.jpg') center/cover fixed; /* Parallax effect */
            z-index: -1;
        }
        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
       .cta-button-large {
    background: var(--gold);
    color: var(--navy-blue);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold; /* button text bold */
    /* hover effect removed */
}


.cta-button-large {
    font-size: 1.2rem; /* Default font size */
}

@media (max-width: 768px) {
    .cta-button-large {
        font-size: 1rem; /* Tablets */
    }
}

@media (max-width: 480px) {
    .cta-button-large {
        font-size: 0.9rem; /* Mobile phones */
    }
}



/* कोई hover effect अब नहीं रहेगा */
/* .cta-button-large:hover {
    animation: pulse 1s infinite;
} */

        /* Footer */
        /* #footer {
            background: white;
            color: var(--white);
            padding: 40px 0;
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s;
        } */
        footer.visible {
            opacity: 1;
            animation: fadeIn 0.5s ease;
        }
        .social-icons a {
            color: var(--white);
            margin: 0 10px;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        .social-icons a:hover {
            color: var(--gold);
        }

        
/* Gallery */
.gallery-item {
    /* border-radius: 15px; */
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-img {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* Project Highlights */
.highlight-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 128, 0, 0.2);
}

.highlight-icon i {
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon i {
    transform: scale(1.1);
}

.lead {
    font-size: 1.1rem;       /* Slightly larger text */
    line-height: 1.8;        /* Spacing between lines */
    text-align: center;       /* Center aligned */
    max-width: 800px;         /* Limit width */
    margin: 0 auto;           /* Center the paragraph */
    color: #555;              /* Darker gray for elegance */
    letter-spacing: 0.5px;    /* Slight spacing between letters */
}


/* Pricing Cards */
.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.price-highlight {
    padding: 1rem;
    /* background: linear-gradient(135deg, #fff3cd, #f8f9fa); */
    border-radius: 10px;
    border-left: 4px solid var(--warning-color);
}
.gallery-item {
  width: 100%; /* Column ke width ke hisaab se */
  height: 300px; /* Sabhi gallery cards ke liye same height */
  overflow: hidden;
  border-radius: 10px; /* Optional: rounded corners */
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Image container ke andar fit ho jaye aur aspect ratio maintain ho */
  display: block;
}


/* Card hover effect */
.hover-scale {
    transition: transform 0.3s, box-shadow 0.3s;
}
.hover-scale:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Card icon styling */
.why-choose-card .card-icon i {
    font-size: 3rem;
}

/* Responsive text centering and spacing */
@media (max-width: 768px) {
    .why-choose-card {
        margin: 0 auto;
    }
}
  
/* Hover effect */
/* .card-icon:hover {
  transform: scale(1.3) rotate(15deg); 
  background-color: #1A2B49; 
  color: #ffffff; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); 
} */

/* Icon inside the box */
.card-icon i {
  font-size: 2.5rem; /* icon size */
  transition: inherit; /* same smooth effect */
}
/* Amenity Cards */
.amenity-card {
    background: white;
    padding: 2rem 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 128, 0, 0.15);
    border-color: var(--primary-color);
}

.amenity-icon i {
    transition: all 0.3s ease;
}

.amenity-card:hover .amenity-icon i {
    transform: scale(1.2) rotate(5deg);
}

/* Hover effect */
.hover-scale {
    transition: transform 0.3s, box-shadow 0.3s;
}
/* .hover-scale:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
} */

/* Icon styling */
.amenity-icon i {
    transition: transform 0.3s, color 0.3s;
}
.amenity-card:hover .amenity-icon i {
    transform: scale(1.2);
    /* color: #1A2B49;  */
}

  /* Enhanced floating buttons with better positioning */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            cursor: pointer;
            /* animation: float 3s ease-in-out infinite; */
        }

        .phone-btn {
              background: linear-gradient(135deg, #25d366, #128c7e);
              color: white;
        }

.whatsapp-btn {
    background: #1A2B49;
}

.scroll-top-btn {
    background: #1A2B49;
}

        .floating-btn:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            animation-play-state: paused;
        }

        /* Enhanced responsive design with better breakpoints */
        @media (max-width: 1200px) {
            .about-content {
                gap: 3rem;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-cta {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 3rem 0;
            }
            
            .hero-section {
                min-height: 80vh;
                padding: 2rem 0;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 0.8rem 2rem;
                font-size: 1rem;
                width: 100%;
                max-width: 280px;
                text-align: center;
            }
            
            .card-custom {
                padding: 2rem 1.5rem;
            }
            
            .amenity-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .card-custom {
                padding: 1.5rem 1rem;
            }
            
            .section-title {
                margin-bottom: 0.5rem;
            }
            
            .section-subtitle {
                margin-bottom: 2rem;
            }
        }
/* Hero Section */

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url('../Img/bannerr1.jpg') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 128, 0, 0.1), rgba(0, 0, 0, 0.6));
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 250px; /* 🔹 Mobile par aur compact */
        background-position: top;
    }
}

.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;

}

.logo {
    height: 45px;
    width: auto;
    border-radius: 8px;
}

.navbar-nav .nav-link.active {
    color: #D4AF37; /* gold color for active page */
    font-weight: bold;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-fadeinup {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 2rem;
}

.hero-cta .btn {
    margin: 0.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}


  /* Enhanced amenities section */
        .amenities-section {
            background: var(--white);
        }

        .amenity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }



        
        /* Added scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.6s ease;
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.6s ease;
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

          /* Enhanced card designs with better hover effects */
        .card-custom {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px var(--shadow-light);
            border: none;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .card-custom:hover::before {
            left: 100%;
        }

        .card-custom:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px var(--shadow-medium);
        }

        .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

        .card-icon {
            width: 70px;
            height: 60px;
            background:#1A2B49;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--white);
              /* transition: transform 0.6s ease, background-color 0.6s ease, color 0.6s ease; */

            /* transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite; */
        }

        /* .card-custom:hover .card-icon {
            transform: scale(1.1) rotate(5deg);
            animation-play-state: paused;
        } */

        .card-title {
            /* font-family: 'Playfair Display', serif; */
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 1rem;
            text-align:justify ;
            /* text-align: center; */
        }

        .card-text {
            color: var(--dark-gray);
            /* text-align: center; */
            line-height: 1.7;
        }


          /* Enhanced card designs with better hover effects */
        .card-custom {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem 2rem;
            box-shadow: 0 10px 40px var(--shadow-light);
            border: none;
            transition: all 0.4s ease;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* .card-custom::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.5s ease;
        } */

        .card-custom:hover::before {
            left: 100%;
        }

        .card-custom:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 60px var(--shadow-medium);
        }



         .text-justify {
    text-align: justify;
    text-justify: inter-word;
  }







  .offer-section {
    width: 100%;
    max-width: 900px;
    text-align: center;
    padding: 40px 20px;
}

.offer-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.offer-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.offer-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #e0e0e0;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #e67e22;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* 
.card-title {
    font-size: 1.8rem;
    color: #2980b9;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 25px;
} */

.benefit-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 30px;
}

.benefit-item {
    font-size: 1rem;
    color: #34495e;
    line-height: 2.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.benefit-item .icon {
    font-size: 1.2rem;
    color: #051633;
}

.btn-book {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #2ecc71, #27ae60);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.6);
}

@media (max-width: 768px) {
    .offer-heading {
        font-size: 2rem;
    }
    .card-title {
        font-size: 1.5rem;
    }
    .btn-book {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

.text-success {
    color: #30ce84 !important;
}



i.bi {
    color: #30ce84; 
}


.custom-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    opacity: 1;
    /* background-color: #0F1A2E; */
    border-radius: 50%;
}
.custom-close::before, .custom-close::after {
    background-color: white;
}
#submitBtn {
  background-color: #0F1A2E;
  color: white;
  font-size: 1rem;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  width: 100%;
  max-width: 250px;
}

@media (max-width: 576px) {
  #submitBtn {
    max-width: 100%; /* mobile pe full width */
  }
}

/* Footer */
footer {
    border-top: 4px solid var(--primary-color);
}

footer a {
    text-decoration: none;
    transition: all 0.3s ease;
}

footer a:hover {
    color: var(--primary-color) !important;
    text-decoration: underline;
}

/* ============================== */
 /* Container */
  .fest-container-light {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
 background: linear-gradient(135deg,  #ffe6b3,#fff7e0, #fcd587);
    padding: 80px;
  }

  /* Header */
  .fest-header-light h1, .fest-title-light {
    color: #1A2B49;
    letter-spacing: 1px;
  }
  .fest-header-light p, .fest-tagline-light {
    color: #1A2B49;
  }
.rewards-image-container {
  display: flex;
  justify-content: center; 
  align-items: center;     
  margin-bottom: 25px;
  width: 60%;             
  max-width: 400px;        
        /* max height fix */
  overflow: hidden;
  border-radius: 8px;
}

.main-fest-image {
  width: 70%;             
  height: 100%;
  object-fit: cover;      
  display: block;
  animation: pulse-animation 0.8s infinite alternate ease-in-out;
}


  @keyframes pulse-animation {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
  }

  /* Rewards List Icons */
  .icon-bronze {
    color: var(--accent-bronze, #b8860b);
  }

  /* Rewards Section */
  .rewards-section-light h2 {
    color: var(--text-dark, #1A2B49);
  }
  .rewards-intro-light {
    color: var(--text-secondary, #555);
  }

  /* Pricing Section */
  .privileges-box-light h3 {
    color: var(--primary-teal, #008080);
    border-bottom: 2px solid var(--primary-teal, #008080);
  }
  .price-card-light {
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
  }
  .card-highlight-light {
    background-color: var(--accent-bronze, #b8860b);
    border-color: var(--accent-bronze, #b8860b);
    box-shadow: 0 4px 10px rgba(184,134,11,0.3);
  }
  .card-standard-light {
    background-color: var(--card-bg-light, #fefefe);
    color: var(--text-dark, #1A2B49);
  }
  .price-figure-light {
    font-size: 1.6em;
    font-weight: 700;
  }

  /* Button */
  .btn-book-tour-light {
    background-color: var(--primary-teal, #008080);
    color: #fff;
    font-weight: 700;
    border-radius: 5px;
  }
  .btn-book-tour-light:hover {
    background-color: #006666;
    box-shadow: 0 4px 10px rgba(0,128,128,0.4);
  }

  /* Responsive */
  @media (max-width: 992px) {
    .row-cols-md-2 {
      grid-template-columns: 1fr !important;
    }
    .fest-container-light {
      padding: 20px;
    }
  }


  /* =================================== */

  .scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}




/* Media query for smaller screens (mobile) */
@media (max-width: 768px) {
  .scroll-top {
    width: 35px;     /* Slightly smaller on mobile */
    height: 35px;
    left: 10px;      /* Thoda margin from left */
    bottom: 10px;
  }
}

/* Media query for very small screens */
@media (max-width: 480px) {
  .scroll-top {
    width: 30px;
    height: 30px;
    left: 8px;
    bottom: 8px;
  }
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;

  margin-bottom: 50px;
  gap: 12px;
  z-index: 9999;
}

/* Individual Buttons */
.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s, background 0.3s;
}
/* 
.floating-btn:hover {
  transform: translateY(-3px);
  background: #006666;
} */

/* Scroll Top Button Initially Hidden */
.scroll-top-btn {
  display: none;
}

.property-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #28a745;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 5px;
  z-index: 10;
}

.property-status.sold {
  background: #dc3545; 
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline-success:hover {
    background-color: #1A2B49;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3);
}



.page-header {
    position: relative;
}
/*
.page-header-bg {
    background-image: url('../Img/banner1.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;  
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
*/
.navbar-brand img {
    width: 100px; /* required width */
    height: 50px; /* required height */
    padding: 0; /* padding remove */
    margin: 0; /* margin remove */
   
}

/* Overlay effect for better readability */
.page-header-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.3); 
    z-index: 1;
}

.page-header-bg .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
    text-align: center;
}

.breadcrumb {
    background: transparent;
}

.breadcrumb a {
    color: #fff;
}
.breadcrumb .active {
    color: #ddd;
}


/* Responsive adjustment for small screens */
@media (max-width: 767px) {
    .page-header {
        padding-top: 0px;  /* top padding kam kar di */
        padding-bottom: 40px;
    }
}



.page-header {
    position: relative;
}

.page-header-bg {
    background-image: url('@Url.Content("~/Content/Img/aboutImg.jpg")');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

    /* Overlay effect for better readability */
    .page-header-bg::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 1;
    }

    .page-header-bg .container {
        position: relative;
        z-index: 2;
    }

.page-header h1 {
    color: #fff;
    text-align: center;
}

.breadcrumb {
    background: transparent;
}

    .breadcrumb a {
        color: #fff;
    }

    .breadcrumb .active {
        color: #ddd;
    }


/* Responsive adjustment for small screens */
@media (max-width: 767px) {
    .page-header {
        padding-top: 0px; /* top padding kam kar di */
        padding-bottom: 40px;
    }
}

.additional-service:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

.service-icon-small {
    width: 100px;
    height: 60px;
    /* background: var(--primary-color); */
    /* color: red; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.service-icon-small i {
    font-size: 35px;  /* aap apni marzi ka size de sakte ho */
}

.additional-service:hover .service-icon-small {
    transform: scale(1.1);
}

/* Additional Services */
.additional-service {
    text-align: center;
    padding: 2rem 1rem;
    transition: all 0.3s ease;
      border-radius: 10px 50px 0px 50px; /* top-left, top-right, bottom-right, bottom-left */

    background-color:#dee2e6 ;
    border-radius: 10px;
}

.additional-service:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}
/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

    .process-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 128, 0, 0.15);
        border-color: var(--primary-color);
    }

.process-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    background: var(--primary-dark);
}

/* Service Stats */
.service-stat {
    padding: 2rem 1rem;
    border-radius: 10px;
    background-color: #dee2e6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.service-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-stat:hover .stat-icon {
    transform: scale(1.1);
}

/* Mission Cards */
.mission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}

.mission-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    transform: scale(1.1);
}

/* Feature Items */
.feature-item {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    background: var(--primary-dark);
}


/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}


  .custom-card {
    background: #fff;
    padding: 20px;
  
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* thoda shadow classy look ke liye */
}

.stat-card {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

    .stat-card:hover {
        transform: translateY(-5px); /* hover effect optional */
        border: 1px solid #003366; /* Dark blue border */
        box-shadow: 0 4px 16px rgba(0, 51, 102, 0.15);
    }



.service-card {
         /* your bg color */
    /* color: #fff;              */
    border-radius: 10px 50px 0px 50px; /* corners */
    padding: 20px;
    height: 100%;             /* equal height cards */
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    font-size: 2rem;
}



/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    margin: 2rem 0;
}

.testimonial-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.stars {
    color: #ffc107;
}

     /* Testimonial Card */
.testimonial-card {
 
    color: #1A2B49; /* text color same as border color */
    padding: 30px;
    border: 2px solid #1A2B49; /* border color */
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1); /* subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


/* Client Image */
.testimonial-card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border: 3px solid #1A2B49; /* border same as card */
    border-radius: 50%;
}

/* Stars */
.testimonial-card .stars i {
    font-size: 16px;
    margin: 0 2px;
    color: #1A2B49; /* star color same as border */
}

/* Text */
.testimonial-card .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0;
}

/* Client Name */
.testimonial-card h6 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Client Designation */
.testimonial-card small {
    color: #555;
}

/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #1A2B49;
    border-radius: 50%;
    padding: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .testimonial-card {
        padding: 20px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .property-card img {
        height: 200px;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .auth-section {
        padding: 2rem 0;
    }
    
    /* .page-header {
        padding: 80px 0 40px;
    } */
}

@media (max-width: 576px) {
    body {
        padding-top: 70px;
    }
    
    .hero-overlay h1 {
        font-size: 1.75rem;
    }
    
    .hero-overlay .lead {
        font-size: 1rem;
    }
    
    .property-card .card-body {
        padding: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem 1rem;
    }
    
    .mission-card {
        padding: 2rem 1rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem 1rem;
    }
}

/* Scroll to top animation */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Property Details Sidebar */
.sidebar-card {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e6e6e6;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

    .sidebar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    }

/* Header Section */
.sidebar-header {
    background: linear-gradient(135deg, #1A2B49, #314e86);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: inset 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Property Info */
.property-info .price-section {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 1rem;
}

.property-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
}

.property-list i {
    font-size: 1.1rem;
}

/* Badges */
.available-row {
    background-color: #28a745 !important;
    color: #fff;
    font-weight: 600;
    border-radius: 30px;
}

.bg-danger {
    font-weight: 600;
    border-radius: 30px;
}

/* Button */
.buy-btn {
    background: #1A2B49;
    color: #fff;
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s;
}

    .buy-btn:hover {
        background: #243d6b;
        letter-spacing: 0.5px;
    }

/* Responsive */
@media (max-width: 768px) {
    .sidebar-card {
        padding: 1.5rem;
    }
}


/* High contrast mode */
@media (prefers-contrast: high) {
    .property-card,
    .service-card,
    .testimonial-card,
    .contact-info-card,
    .mission-card,
    .team-card,
    .contact-form,
    .sidebar-card {
        border: 2px solid var(--dark-color);
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip navigation link */
.skip-nav {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 1000;
}

.skip-nav:focus {
    top: 0;
}

/* Property Details Sidebar */
/*
.sidebar-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: var(--box-shadow-lg);
    border-color: var(--primary-color);
}*/

.agent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Property Badges */
.badge {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Authentication Sections */
.auth-section {
    min-height: calc(100vh - 76px);
    background: linear-gradient(135deg, var(--light-color) 0%, #e8f5e8 100%);
    padding: 4rem 0;
    display: flex;
    align-items: center;
}

.auth-section .form-control:focus,
.auth-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

.auth-section .input-group-text {
    background-color: var(--light-color);
    border-color: var(--border-color);
}



@media (max-width: 768px) {
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}


/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .svg-top svg {
        min-height: 100px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .additional-service {
        padding: 25px 15px;
    }
}

@media (max-width: 576px) {
    .svg-top svg {
        min-height: 80px;
    }

    .additional-service h5 {
        font-size: 1rem;
    }

    .service-icon-small {
        width: 60px;
        height: 60px;
    }
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }

    .form-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .map-container iframe {
        height: 250px;
    }

    .form-card h5 {
        font-size: 1.1rem;
    }

    .form-card button {
        width: 100%;
    }
}