/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Manrope", serif;
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
  }
  
  /* Hero Section */
  .hero-section {
    background: url('./images/osadia-bng.jpg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .hero-section-bangalore {
    background: url('./images/osadia-bangalore.jpeg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  .hero-section-begumpet {
    background: url('./images/begumpet/osadia-begumpet.jpeg') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
  }
  
  .hero-section::before,.hero-section-bangalore::before, .hero-section-begumpet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000a3;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 56px;
  }

  .hero-content img{
    width: 220px;
    margin-bottom: 53px;
}


  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .tagline{
    font-size:12px!important;
    margin-top: -17px;

  }
  
  .cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #63b232;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  }
  
  /* Projects Section */
  .projects-section {
    padding: 4rem 1rem;
    text-align: center;
    background-color: #231f20;
  }

  
  .projects-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color:#fff;
  }
  
  .section-tagline {
    color: #997d7d;
    margin-bottom: 2rem;
  }
  
  .project-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .project-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 400px;
    transition: transform 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
  }
  
  .project-card img {
    width: 100%;
    height: auto;
  }
  
  .project-info {
    padding: 1.5rem;
    text-align: left;
  }
  
  .project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .project-info p {
    color: #555;
    margin-bottom: 1rem;
  }
  
  .project-link {
    display: inline-block;
    color: #63b232;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .project-link:hover {
    color: #005f4f;
  }
  
  /* Osadia Bangalore Landing Page Styles */
 .hero-wrapper{
    padding:0 30px;
 }
 .hero-wrapper img{
    border-radius: 10px;
 }
 .premium{
  color:#63b232;
 }
 .location{
  color:#ccc;
  font-size: 13px!important;
 }
 .highlights {
  padding: 4rem 10rem;
  background-color: #231f20;
  color:#fff;
}

.highlights h2 {
  font-size: 2rem;
  margin-bottom: 3rem;
  line-height: 45px;
}

/* Content Row */
.content-container {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Image Container */
.image-container {
  flex: 1 1 40%; /* Image occupies 40% */
  display: flex;
  justify-content: center;
  align-items: center;
}

.highlight-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Cards Container */
.cards-container {
  flex: 1 1 60%; /* Cards occupy 60% */
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two cards per row */
  gap: 2rem;
}

/* Card Styles */
.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 5px solid #63b232;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-container {
    flex-direction: column; /* Stack image and cards vertically */
  }

  .image-container {
    flex: 1 1 100%; /* Image takes full width */
    max-width: 100%; /* Prevent overflowing */
    margin-bottom: 2rem; /* Add spacing between image and cards */
  }

  .highlight-image {
    max-width: 100%; /* Image scales to full width */
    height: auto;
  }

  .cards-container {
    flex: 1 1 100%; /* Cards take full width */
    grid-template-columns: 1fr; /* One card per row */
    gap: 1.5rem; /* Adjust spacing between cards */
  }
}

@media (max-width: 480px) {
  .highlights {
    padding: 2rem 1rem; /* Reduce padding for smaller devices */
  }

  .card {
    padding: 15px; /* Reduce padding inside cards */
  }

  .card h3 {
    font-size: 16px; /* Adjust heading size in cards */
  }

  .card p {
    font-size: 12px; /* Adjust text size in cards */
  }
}


/* Contact Section */
.contact-section {
  background: url('https://www.home-designing.com/wp-content/uploads/2019/01/Luxury-open-plan-home.jpg') no-repeat center center/cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Ensure full height based on viewport */
  padding: 0;
  margin: 0;
}

.contact-section .overlay {
  background-color: rgba(0, 0, 0, 0.5); /* Transparent overlay */
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-form-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 600px;
}

.contact-form-container h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-form-container .form-description {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  font-size: 1rem;
  border: 1px solid #8d8d8d;
  border-radius: 5px;
}

.form-group.full-width {
  grid-column: span 2; /* Full width for submit button */
}

.form-group input:focus,
.form-group select:focus {
  border-color: #007bff;
  outline: none;
}

.submit-button {
  background-color: #63b232;
  color: #fff;
 padding: 0.8rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  transition: background 0.3s ease;
}

::placeholder {
  font-size: 0.8rem; /* Adjust the size to your preference */
  color: #999; /* Optional: Change the placeholder color */
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr; /* Single column on small screens */
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .contact-form-container {
    padding: 1.5rem;
  }

  .contact-form-container h2 {
    font-size: 1.5rem;
  }
}

/* Model Flat Section */
.model-flat-section {
  background-color: #231f20;
  padding: 4rem 10rem;
  text-align: center;
  color:#fff;
}

.model-flat-header h2 {
  font-size: 2.5rem;
}

.model-flat-header p{
  color:#997d7d;
}
.model-flat-header{
  margin-bottom: 37px;
}


/* Gallery Grid */
.model-flat-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 images per row */
  gap: 1.5rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05); /* Subtle zoom effect */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .model-flat-gallery {
    grid-template-columns: repeat(2, 1fr); /* 2 images per row */
  }

  .model-flat-section {
    padding: 2rem 5rem;
  }

  .model-flat-header h2 {
    font-size: 2rem;
  }

  .model-flat-header .subline {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .model-flat-gallery {
    grid-template-columns: 1fr; /* 1 image per row */
  }

  .model-flat-section {
    padding: 2rem 1rem;
  }
}

/* Amenities Section */
.amenities-section {
  background-color: #231f20;
  padding: 4rem 10rem;
  text-align: center;
  color:#fff;
}

.amenities-header h2 {
  font-size: 2.5rem;
  color:#fff;
}

.amenities-header p {
  font-size: 1rem;
  color: #997d7d;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 60%; 
  margin-left: auto; 
  margin-right: auto; 
  text-align: center; 
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 2rem;
}
.amenities-grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 items per row */
  gap: 2rem;
}

/* Amenity Card */
.amenity-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 7px solid #63b232;
}

.amenity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.amenity-icon {
  font-size: 2.5rem;
  color: #63b232;
  margin-bottom: 1rem;
}

.amenity-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #333;
}

.amenity-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .amenities-grid, .amenities-grid-four {
    grid-template-columns: repeat(2, 1fr); /* 2 items per row */
  }
 
  .amenities-section {
    padding: 2rem 5rem;
  }

  .amenities-header h2 {
    font-size: 2rem;
  }

  .amenities-header .tagline {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .amenities-grid, .amenities-grid-four {
    grid-template-columns: 1fr; /* 1 item per row */
  }

  .amenities-section {
    padding: 2rem 1rem;
  }
}


/* Footer Section */
.footer-section {
  background-color: #63b232;
  color: #fff;
  padding: 2rem 10rem;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1 1 30%; /* Each column takes 30% of the width */
  min-width: 250px; /* Minimum width for smaller screens */
}

.footer-logo {
  max-width: 220px;
    margin-top: 20px;
    margin-bottom: 9px;
}


.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #f8f8f8;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    flex: 1 1 100%; /* Each column takes full width */
    margin-bottom: 1.5rem;
  }
  .footer-section {padding:0px;}
}

.price{
  font-size: 3.5rem!important; /* Adjust as per your design */
  font-weight: bold;
  color: #63b232; /* Green color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4); /* Adds a subtle shadow for better emphasis */
  line-height: 1.2;
  /* font-size: 68px!important;
  font-weight: bold;
  color:#63b232; */
  margin-top: -35px;
  margin-bottom: 16px !important;}
  
  /* Section Styling */
.details-section {
  background-color: #231f20; /* Green background */
  color: #fff; /* White text */
  padding: 60px 20px; /* Padding for spacing */
  text-align: center; /* Center-align text */
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto; /* Center content */
  padding: 0 15px; /* Responsive padding */
}

/* Headline Styling */
.headline {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Subheadline Styling */
.subheadline {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Grid Layout */
.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* Spacing between cards */
}

/* Detail Card Styling */
.detail-card {
  background-color: #63b232; 
  border-radius: 10px; 
  padding: 20px; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25); 
  font-size: 1.2rem; /* Font size for text */
  font-weight: bold; /* Bold text */
}

/* Exclusive Offer Section */
.exclusive-offer {
  background: #fff;
  padding: 55px 20px;
  text-align: center;
  position: relative;
}

/* Decorative Line */
.offer-line {
  width: 100px;
  height: 4px;
  background: #ffffff;
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* Headline Styling */
.offer-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  position: relative;
}

.offer-highlight {
  display: block;
  color: #63b232; 
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 10px;
}

/* Subheadline Styling */
.offer-subheading {
  font-size: 1.2rem;
  margin: 20px auto 40px;
  line-height: 1.5;
}

.highlight-club {
  color: #63b232;
  font-weight: bold;
}

.response-message {
  font-size: 14px;
  margin-top: 10px;
  text-align: center;
}





