@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

@font-face {
  font-family: 'Claire Murphy';
  src: url('fonts/claire-murphy-claire-murphy-400.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f9f6f1;
    z-index: 10;
     
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo img {
    height: 30px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.bottom-link  {
	  background-color: #62bce4;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding: 6px 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
} 

.nav-links li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #9f5b84;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

.container {
    width: 100%;
    height: 100%;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10%;
    padding-top: 80px;
}

 
.content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center !important; 
}

.content h1 {
  font-weight: 500;
  letter-spacing: 4px;
  margin-bottom: -15px;
  font-size: 75px;
  text-shadow: 0px 2px 2px rgba(255, 255, 255, 0.4); 
}

.content h2 {
  font-size: 35px;
  color: #daa026;
  font-weight:300;
} 

.content h3 {
  font-size: 20px;
  color: #000;
  font-weight:300;
}

.highlight {
    color: #daa026;
    font-weight: 500;
}

.content p {
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 1px;
     
}

.btn {
    display: inline-block;
    background-color: #9f5b84;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    padding: 3px 20px;
    margin-top: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #62bce4;
}

 

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 20px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: -100%;
        background: rgba(255, 255, 255, 0.95);
        width: 100%;
        height: calc(100vh - 70px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .nav-links.open {
        left: 0;
    }

    .container {
        padding-right: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0px 0px 50px;
    }

    .content {
        text-align: center;
    }
}


.hero-section {
    position: relative;
    height: 100vh;
    background: url('images/Hero-bg-web.jpg') no-repeat center center / cover;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 10%;
    color: white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(159, 91, 132, 0.6);
    z-index: 1;
}

 

.play-button {
    border: 1px solid white;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-left: 20%;
}

.play-button:hover {
    background-color: rgba(255,255,255,0.2);
}

.play-button span {
    font-size: 24px;
}


.italic {
    font-style: italic;
}

 

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-left: 5%;
        justify-content: center;
        text-align: left;
    }

    .content {
        align-items: center;
    }

    h1 {
        font-size: 28px;
    }

    .content p {
        font-size: 14px;
    }
}


 

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(3 153 219 / 49%);
}

.content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
}



.tagline {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: #fff;
}

.btn {
    display: inline-block;
    padding: 6px 25px;
    background-color: #62bce4;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: #62bce4;
}

.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10;
}

.whatsapp-icon img {
    width: 45px;
    height: 45px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .content h1 {
        font-size: 50px;
    }

    .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .btn {
        font-size: 14px;
        padding: 10px 20px;
    }
}


.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    color: #fff;
    background: linear-gradient(#fff, #9198e5);
}

.text-section {
    width: 50%;
}

.video-section {
    width: 50%;
    position: relative;
}

.possession-date {
    font-size: 40px;
    color: #000;
}

.date {
    font-size: 25px;
    color: #333;
}

video {
    width: 100%;
    height: auto;
    outline: none;
}



/* ======================
   Inquiry Section Layout
   ====================== */
   .inquiry-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f9f6f1; /* Adjust to your preferred background */
    padding: 60px 80px;
    gap: 40px;
  }
  
  /* Left Side (Text) */
  .inquiry-left {
    flex: 1;
  }
  
  .inquiry-left h2 {
    font-size: 2rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  /* Right Side (Form) */
  .inquiry-right {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  /* Form Container */
  .inquiry-form {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    display: flex;
    flex-direction: column;
  }
  
  /* Form Groups */
  .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-group input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  /* Phone Group: +91 + input side by side */
  .phone-group {
    flex-direction: row;
    align-items: center;
  }
  
  .phone-group label {
    margin-right: 10px;
    margin-bottom: 0; /* so it's vertically centered */
    font-size: 16px;
    font-weight: 500;
    width: auto; /* ensures label is just as wide as the content */
  }
  
  /* Note about OTP */
  .otp-note {
    font-size: 14px;
    color: #666;
    margin: 10px 0;
  }
  
  /* Checkbox Group */
  .checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  
  .checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.2); /* slightly larger checkbox */
  }
  
  .checkbox-group label a {
    color: #9f5b84; /* Link color */
    text-decoration: none;
    font-weight: 500;
  }
  
  .checkbox-group label a:hover {
    text-decoration: underline;
  }
  
  /* Submit Button */
  .btn.inquiry-btn {
    background-color: #9f5b84; /* Main brand color */
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn.inquiry-btn:hover {
    background-color: #62bce4; /* Hover color */
  }
  
  /* ======================
     Mobile Responsiveness
     ====================== */
  @media (max-width: 768px) {
    .inquiry-section {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .inquiry-left {
      margin-bottom: 20px;
      text-align: center;
    }
  
    .inquiry-left h2 {
      font-size: 1.6rem;
    }
  
    .inquiry-right {
      width: 100%;
      justify-content: flex-start; /* or center if preferred */
    }
  
    .inquiry-form {
      max-width: 100%;
    }
  }
  




/* Mobile responsive modifications */
@media (max-width: 768px) {
    .container1 {
        flex-direction: column;
        padding: 20px; /* Adjust padding as needed */
        text-align: center;
    }
    .text-section, 
    .video-section {
        width: 100%;
        margin-bottom: 20px; /* Add spacing between sections */
    }
}



.promo-section {
    background: url('images/Hero-bg-web.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF; /* Assuming white text */
}

.promo-section h1 {
    font-size: 48px; /* Adjust size as needed */
    margin: 0;
    font-weight: 100;
}

.promo-section p {
    font-size: 20px;
    margin: 20px 0;
    font-weight: 100;
    letter-spacing: 6px;
}

.explore-button {
    display: inline-block;
    padding: 6px 25px;
    background-color: #62bce4;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.explore-button:hover {
    background-color: #9A4E88; /* Darker purple on hover */
}



.projects-section h2 {
    text-align: center;
    margin: 20px 0;
    font-size: 36px;
    font-weight: 200;
}

.about-d h3{
  text-align: center;
}

.about-d img{
align-items: center;
}

.projects-section p {
    text-align: center;
    padding: 50px;
    
}

.about-d {
  padding: 100px;
  align-items: center;

}

.project-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}

.project-card {
    width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-in-out;
    background-color: #2d084b;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-info {
    padding: 10px;
    background: rgb(45 8 75);
    color: white;
    text-align: center;
}

@media (max-width: 800px) {
    .project-cards {
        flex-direction: column;
        align-items: center;
    }
}




.footer {
    background-color: #2D084B; /* Dark purple background */
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.footer-contact {
    margin-top: 20px;
    font-size: 16px;
}

.phone-icon, .email-icon {
    margin-right: 5px;
}

.social-media a {
    color: white;
    margin: 0 5px;
    font-size: 20px;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
}

@media (max-width: 800px) {
    .footer-links, .footer-contact, .social-media {
        display: block;
        margin-top: 10px;
    }
}

/* Container for the entire section */
.downtown-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background-color: #f9f6f1; /* Adjust to match your design */
    gap: 40px;                /* Spacing between text and image */
  }
  
  /* Left Side (Text) */
  .downtown-left {
    flex: 1;
    max-width: 50%;
  }
  
  .downtown-left h2 {
    font-size: 3rem;
    color: #a08f0c;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 500;
    font-family: 'Claire Murphy', sans-serif !important; 
  }
  
  .subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase; /* optional style */
  }
  
  /* Button Styles */
  .btn.explore-btn {
    display: inline-block;
    background-color: #9f5b84; /* Adjust to match your brand */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn.explore-btn:hover {
    background-color: #62bce4; /* Hover color */
  }
  
  /* Right Side (Image) */
  .downtown-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .downtown-right img {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Slightly rounded corners, optional */
    object-fit: cover;  /* Ensures the image maintains aspect ratio */
  }
  
  /* Mobile Responsiveness */
  @media (max-width: 768px) {
    .downtown-section {
      flex-direction: column; /* Stack text above image */
      padding: 40px 20px;
    }
    
    .downtown-left,
    .downtown-right {
      max-width: 100%;
    }
    
    .downtown-left {
      margin-bottom: 20px;
      text-align: center; /* Center the text on mobile */
    }
    
    .downtown-left h2 {
      font-size: 1.6rem;
    }
    
    .subtitle {
      font-size: 0.9rem;
    }
    
    .btn.explore-btn {
      font-size: 0.9rem;
      padding: 10px 20px;
    }
  }
  

/* ========== Container ========== */
.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 80px;
    background-color: #fff;
    gap: 40px; /* Space between text and images */
  }
  
  /* ========== Left Side (Text) ========== */
  .about-left {
    flex: 1;
    max-width: 50%;
  }
  
  .about-left h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
  }
  
  .about-left p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
  }
  
  /* ========== Feature List ========== */
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .features-list .icon {
    margin-right: 8px;
    font-size: 1.2rem; /* Adjust icon size */
  }
  
  /* ========== Right Side (Images) ========== */
  .about-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Using a grid for the two images side by side */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    width: 100%;
  }
  
  .image-grid img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
  }
  
  /* ========== Responsive Adjustments ========== */
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
      padding: 40px 20px;
    }
  
    .about-left,
    .about-right {
      max-width: 100%;
    }
  
    .about-left {
      margin-bottom: 20px;
    }
  
    /* Switch to single-column images on mobile */
    .image-grid {
      grid-template-columns: 1fr;
    }
  }

  /* Hide bottom bar on desktop, show on mobile */
.mobile-bottom-bar {
  display: none; /* Hidden by default for larger screens */
}

/* Display on screens 768px wide or less */
@media (max-width: 768px) {
  .mobile-bottom-bar {
    position: fixed;
        border-radius: 10px;
        bottom: 10px;
        left: 10px;
        right: 10px;
        background-color: #9f5b84;
        display: flex
;
        justify-content: space-around;
        align-items: center;
        padding: 10px 0;
        box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.15);
        z-index: 999;
  }

  .bottom-link,
  .bottom-round-button {
    display: flex;
    flex-direction: column; /* Icon above text */
    align-items: center;
    text-decoration: none;
    color: #fff; /* Text/icon color */
    font-size: 12px;
    font-weight: 500;
    margin: 0 8px;
  }

  /* The left/right buttons (flat) */
  .bottom-link i {
    font-size: 15px;
    margin-bottom: 4px;
  }

  /* Center round button with elevated styling */
  .bottom-round-button {
    background-color: #9f5b84;
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-top: -50px;
    box-shadow: 0 4px 6px rgb(249 238 238);
    justify-content: center;
    margin-left: -4%;
  }

  .bottom-round-button i {
    font-size: 20px;
    margin-bottom: 4px;
  }

  /* If you prefer to hide the text under the center icon, remove these lines: */
  .bottom-round-button span {
    font-size: 10px; /* Smaller text under icon */
  }
}

/* Bottom Explore Button (mobile only example) */
.bottom-round-button {
  position: fixed;
  bottom: 25px;
  right: 45%;
  transform: translateX(50%); /* Center it horizontally */
  width: 70px;
  height: 70px;
  background-color: #9f5b84; /* Button color */
  color: #fff;
  border-radius: 50%;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(255, 255, 255, 0.5);
}
.bottom-round-button i {
  font-size: 20px;
}
.bottom-round-button span {
  font-size: 10px;
  margin-top: 2px;
}

/* Popup Overlay */
.explore-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* dim the background */
  display: none;                      /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.explore-popup-overlay.show {
  display: flex; /* show the overlay when the 'show' class is added */
}

/* Popup Content Container */
.explore-popup-content {
  position: relative;
  text-align: center;
}

/* Grid of Icons (4 icons in a row) */
.explore-popup-grid {
    display: flex;
    gap: 20px;
    background-color: #402435;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    margin-top: 300px;
}

/* Individual Icon Buttons */
.popup-icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  width: 60px; /* adjust as desired */
}
.popup-icon-btn i {
  font-size: 24px;
  margin-bottom: 5px;
  color: #62bce4;
}
.popup-icon-btn span {
  font-size: 12px;
  color: #62bce4;
}

/* Example: Hide the entire setup on desktop, show on mobile */
@media (min-width: 769px) {
  .bottom-round-button {
    display: none; /* hide the bottom button on larger screens */
  }
}

html {
  scroll-behavior: smooth;
}


.unit-plan-carousel-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.unit-plan-title {
  text-align: center;
  font-size: 36px;
  font-weight: 500;
  color: #2D084B;
  margin-bottom: 30px;
  border-bottom: 2px solid #9f5b84;
  display: inline-block;
  padding-bottom: 10px;
}

.unit-plan-carousel {
  position: relative;
  width: 100%;
  padding-top: 50%; /* Maintains 1600x800 (2:1) aspect ratio */
  overflow: hidden;
}

.unit-plan-images {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 1600px;
  height: 800px;
  transition: transform 0.5s ease-in-out;
}

.unit-plan-carousel img {
  width: 1600px;
  height: 800px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(159, 91, 132, 0.8);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

@media (max-width: 768px) {
  .unit-plan-title {
    font-size: 24px;
  }

  .carousel-btn {
    font-size: 20px;
    padding: 8px 12px;
  }

  .unit-plan-carousel {
    padding-top: 62.5%; /* fallback 16:10 ratio for smaller screens */
  }
}


.unit-plan-stack-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.unit-plan-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #2D084B;
  margin-bottom: 30px;
  position: relative;
}

.unit-plan-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
}

.unit-plan-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .unit-plan-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .unit-plan-image-wrapper {
    margin-bottom: 20px;
  }
}


.gallery-section {
  padding: 40px 20px;
  background-color: #fff;
}

.gallery-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  color: #2D084B;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive for tablets and mobile */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


.about-developer-section {
  background-color: #f7f7f7;
  padding: 60px 20px;
  align-items: center;
}

.about-developer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.developer-text-content {
  flex: 1 1 550px;
}

.developer-text-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  margin-bottom: 10px;
}

.developer-subtitle {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.developer-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  text-align: justify;
}

.developer-logo-content {
  flex: 1 1 300px;
  text-align: center;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}


.developer-logo {
  
  height: 60px;
  max-height: 120px;
  object-fit: contain;
}

@media (max-width: 768px) {

   

  .developer-logo {
    height: 35px;
  }

}

.blink-soft {
  animation: blinker 1.5s linear infinite;
   
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}










