
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}

body {
font-family: 'Arial', sans-serif;
}

.amenities {
padding: 50px;
background-color: #f9f9f9;
text-align: center;
}

.container {
/* display: grid; */
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}

.amenity-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
transition: transform 0.3s ease;
}

.amenity-card img {
max-width: 100px;
margin-bottom: 15px;
}

.amenity-card h3 {
font-size: 1.2rem;
color: #333;
}

.amenity-card:hover {
transform: translateY(-5px);
}

.enquire-btn {
display: inline-block;
margin-top: 30px;
background-color: #d4a017;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}

.enquire-btn:hover {
background-color: #b38814;
}

/* Responsive */
@media (max-width: 768px) {
.container {
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}

.amenity-card img {
max-width: 80px;
}
}

.header-section {
    background-color: #f9f9f9;
    padding: 20px;
}
.navbar-brand {
    color: #ff7f50 !important;
}
.navbar-nav .nav-link {
    color: #13100f !important;
    font-size: 18px;
    /* text-decoration: none; */
    position: relative;
}
.navbar-nav .nav-link:hover {
    text-decoration: underline;
}


.navbar-toggler-icon {
    background-color: #ff7f50;
}
.call-button {
    background-color: #ff7f50;
    padding: 10px;
    color: white;
    border-radius: 20px;
    text-decoration: none;
}
.call-button:hover {
    background-color: #e67348;
}
.main-banner {
    background: url('../images/Nambiar Sarjapur 25.webp') no-repeat center center;
    background-size: cover;
    height: 400px;
    position: relative;
}
.main-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}
.banner-content {
    position: relative;
    padding: 60px;
    color: #fff;
}
.form-section {
    background-color: #002c5f;
    color: white;
    padding: 20px;
    border-radius: 10px;
}
.form-section input {
    margin-bottom: 15px;
    border-radius: 5px;
}
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 50%;
}

.custom-section {
    background-color: #f7f8fa;
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-area {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease-in-out;
}

.content-area:hover {
    transform: translateY(-8px);
}

.content-header h1 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 20px;
}

.content-body p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.content-body a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.content-body a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.content-body h2 {
    font-size: 26px;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 700;
}

.content-footer {
    margin-top: 40px;
}

.content-footer a {
    color: #e74c3c;
    font-weight: 600;
}

.content-footer a:hover {
    color: #c0392b;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .content-area {
        padding: 30px;
    }

    .content-header h1 {
        font-size: 26px;
    }

    .content-body p {
        font-size: 16px;
    }

    .content-body h2 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .content-area {
        padding: 20px;
    }

    .content-header h1 {
        font-size: 24px;
    }

    .content-body p {
        font-size: 14px;
    }

    .content-body h2 {
        font-size: 20px;
    }
}

.amenities-section {
    padding: 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card-custom {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease;
}

.amenity-card-custom img {
    max-width: 100px;
    margin-bottom: 15px;
}

.amenity-card-custom h3 {
    font-size: 1.2rem;
    color: #333;
}

.amenity-card-custom:hover {
    transform: translateY(-5px);
}

.enquire-btn-custom {
    display: inline-block;
    margin-top: 30px;
    background-color: #d4a017;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.enquire-btn-custom:hover {
    background-color: #b38814;
}

/* Responsive */
@media (max-width: 768px) {
    .amenities-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .amenity-card-custom img {
        max-width: 80px;
    }
}



/* Project Highlight */
/* Unique CSS classes for responsiveness */
.project-highlights h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.highlight-item {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.highlight-item:hover {
    background-color: #f9f9f9;
}

.icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.highlight-item p {
    margin: 0;
    font-size: 1.2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .highlight-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }

    .icon {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) {
    .highlight-item p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .highlight-item {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }
    
    .icon {
        width: 35px;
        height: 35px;
    }
}

/* Configuration */

/* Custom CSS for unique class names */
.config-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
}

.configuration-table {
    background-color: #fff;
    border-radius: 8px;
}

.config-header th {
    background-color: #a97c1b;
    color: white;
    font-size: 18px;
    padding: 10px;
}

.config-row {
    background-color: #f4f4f4;
}

.config-row td {
    padding: 15px;
    vertical-align: middle;
    font-size: 16px;
}

.price-btn {
    background-color: #a97c1b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
}

.price-btn:hover {
    background-color: #915c16;
}

.table-responsive {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}


/* Master Plan */

/* General Styles */
.my-master-plan-section {
    background-color: #f5f5f5;
}

.my-master-plan-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.my-master-plan-image {
    max-width: 80%;
    border: 2px solid #d0d0d0;
}

.my-master-plan-button {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Floor Plan Styles */
.my-floor-plan-card {
    border: 1px solid #d0d0d0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.my-floor-plan-img {
    max-height: 300px;
    object-fit: cover;
}

.my-floor-plan-title {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .my-master-plan-image {
        max-width: 100%;
    }

    .my-floor-plan-img {
        max-height: 200px;
    }
}

/* Custom content section */
.custom-content {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .white-section-bg {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Headings */
  .custom-content h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 30px;
  }
  
  /* Call to action buttons */
  .cta-button {
    text-align: center;
  }
  
  .btn-custom-dark {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
  }
  
  .btn-custom-dark:hover {
    background-color: #555;
    color: #f9f9f9;
  }
  
  .btn-custom-dark i {
    margin-right: 10px;
  }
  
  /* Project description styling */
  .project-description p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
  }
  
  .project-description ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  
  .project-description ul li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
  }
  
  /* Key dates styling */
  .project-description strong {
    font-size: 18px;
    color: #333;
  }
  
  .project-description ul li {
    font-size: 16px;
    color: #333;
  }
  
  .project-description a {
    color: #007bff;
    text-decoration: none;
  }
  
  .project-description a:hover {
    text-decoration: underline;
  }
  
  /* Responsive styles */
  @media (max-width: 768px) {
    .custom-content h1 {
      font-size: 28px;
    }
  
    .btn-custom-dark {
      font-size: 14px;
      padding: 8px 16px;
    }
  
    .project-description p,
    .project-description ul li {
      font-size: 14px;
    }
  
    .cta-button {
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 576px) {
    .btn-custom-dark {
      font-size: 12px;
      padding: 6px 12px;
    }
  
    .project-description p,
    .project-description ul li {
      font-size: 12px;
    }
  }
  
  /* Spacing and Layout Adjustments */
  .mb-3 {
    margin-bottom: 15px;
  }
  
  .custom-container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .white-section-bg .col-md-3, .white-section-bg .col-md-2, .white-section-bg .col-md-1 {
    padding-top: 15px;
  }
  

  /* General Styling */

.solid-bg {
    background-color: #fff;
    padding: 50px 0;
}

.template-title {
    margin-bottom: 30px;
}

.main-h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.text-center {
    text-align: center;
}

p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

strong {
    font-weight: bold;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #333;
}

/* Responsive Section Styling */
#bangalore, #rera {
    padding: 50px 0;
}

#bangalore .template-title, #rera .template-title {
    margin-bottom: 20px;
}

/* Responsive Image Styling */
img.lazyload {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 8px;
}

/* Container Styling */
/* .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
} */

/* Media Queries for Responsiveness */
@media only screen and (max-width: 1200px) {
    .main-h2 {
        font-size: 2.2rem;
    }
}

@media only screen and (max-width: 992px) {
    .main-h2 {
        font-size: 2rem;
    }

    ul li {
        font-size: 0.9rem;
    }
}

@media only screen and (max-width: 768px) {
    .main-h2 {
        font-size: 1.8rem;
    }

    p, ul li {
        font-size: 0.85rem;
    }
}

@media only screen and (max-width: 576px) {
    .main-h2 {
        font-size: 1.5rem;
    }

    p, ul li {
        font-size: 0.8rem;
    }

    .col-md-6 {
        margin-bottom: 20px;
    }

    .container {
        padding: 0 10px;
    }
}


/* Blog */
/* Global Styles */
h1 {
    margin-top: 20px;
    font-size: 2rem;
    color: #333;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 1200px;
}

.blog-card {
    background-color: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.blog-card a {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    color: blue;
    text-decoration: none;
}

.blog-card a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .blog-container {
        grid-template-columns: 1fr; /* Single column on mobile */
    }

    h1 {
        font-size: 1.8rem;
    }

    .blog-card {
        padding: 15px;
    }
    
    .blog-card img {
        height: 180px; /* Reduce image height on smaller screens */
    }

    .blog-card a {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* Smaller font for mobile */
    }

    .blog-container {
        padding: 10px; /* Reduce padding for mobile screens */
    }
}

/* Footer */
.footer {
    background-color: #b9bcbe;
    color: #fff;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #f8f9fa;
    text-decoration: none;
}

.footer-links li a:hover {
    color: #dc3545;
}

.footer-disclaimer {
    font-size: 0.875rem;
    color: #070a0d;
    margin-top: 20px;
}

.enquiry-btn {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.enquiry-btn:hover {
    background-color: #bd2130;
    border-color: #bd2130;
}
