:root {
  --colorPrimary: #b22222;
  --colorSecondary: #7d3535;
  --colorbglight: #ecf6fd;
  --colorwhite: #ffffff;
  --colordark: #262626;
}
/* 🔹 Banner Section */
.banner {
    position: relative;
    width: 100%;
    height: 500px;
    background: url('/img/banner.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 0;
}

/* 🔹 Dark Shade Overlay */
.banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
}

/* 🔹 Text Content */
.banner .content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.banner h1 {
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
}

.banner h1 span {
    color: #B22222;
}

/* 🔹 Search Box */
.search-box {
    position: absolute;
    bottom: 50px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 3;
    max-width: 90%;
}

.search-box input {
    width: 100%;
    max-width: 350px;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    outline: none;
    background: rgba(255, 255, 255, 0.6);
}

.search-box button {
    background: #B22222;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    margin-left: 10px;
    transition: 0.3s ease-in-out;
}

.search-box button:hover {
    background: #8B0000;
}

/* 🔹 Responsive Design */
@media (max-width: 1024px) {
    .banner {
        height: 400px;
    }
    .banner h1 {
        font-size: 36px;
    }
    .search-box {
        bottom: 30px;
    }
    .search-box input {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .banner {
        height: 350px;
    }
    .banner h1 {
        font-size: 28px;
    }
    .search-box {
        flex-direction: column;
        padding: 8px 12px;
    }
    .search-box input {
        max-width: 100%;
        margin-bottom: 10px;
    }
    .search-box button {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 300px;
    }
    .banner h1 {
        font-size: 24px;
    }
    .search-box {
        bottom: 20px;
    }
}

/* General Styling */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
text-align: center;
}

/* Section Title */
.section-title {
font-size: 28px;
font-weight: bold;
margin: 20px 0;
}
.section-title span {
color: red;
}

/* Project Cards Container */
.projects-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px;
}
/* Button Styles */
.view-details-btn {
background-color: #B22222;
color: white;
border: none;
padding: 8px 12px;
font-size: 14px;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}

.view-details-btn:hover {
background-color: #c91010;
}

/* Buttons Container */
.buttons {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 10px;
}


/* Individual Project Card */
.project-card {
background: white;
width: 280px;
border-radius: 10px;
padding: 15px;
text-align: left;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
position: relative;
transition: transform 0.3s ease;
}
.project-card:hover {
transform: scale(1.05);
}

/* Image */
.project-card img {
width: 100%;
height: 150px;
border-radius: 10px;
object-fit: cover;
}

/* RERA Badge */
.rera-badge {
position: absolute;
top: 10px;
left: 10px;
background: red;
color: white;
padding: 5px 10px;
font-size: 12px;
font-weight: bold;
border-radius: 5px;
}

/* Title & Developer */
h3 {
font-size: 18px;
margin: 10px 0 5px;
}
.developer {
color: red;
font-size: 14px;
font-weight: bold;
}

/* Details List */
.details {
list-style: none;
padding: 0;
margin: 10px 0;
}
.details li {
font-size: 14px;
padding: 3px 0;
}

/* Price */
.price {
font-size: 16px;
font-weight: bold;
}

/* Arrow Button */
.arrow-btn {
background: red;
color: white;
border: none;
padding: 8px 12px;
font-size: 18px;
border-radius: 50%;
cursor: pointer;
float: right;
}

/* View All Button */
.view-all {
margin: 20px;
}
.view-all-btn {
background: red;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 20px;
}
.view-all-btn:hover {
background: darkred;
}

/* Responsive Design */
@media (max-width: 768px) {
.projects-container {
  flex-direction: column;
  align-items: center;
}
}
/* Blog Section */
.blog-section {
width: 90%;
max-width: 1200px;
margin: auto;
padding: 30px 0;
}

/* Section Header */
.blog-header {
text-align: center;
margin-bottom: 20px;
}

.blog-header h2 {
font-size: 26px;
font-weight: bold;
display: inline-block;
border-bottom: 2px solid #ddd;
padding-bottom: 5px;
}

.blog-header h2 span {
color: red;
}


/* Blog Cards Container */
.blog-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
padding: 20px 0;
}

/* Blog Card */
.blog-card {
background: white;
width: 320px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease;
position: relative;
text-align: left;
}
.blog-card:hover {
transform: scale(1.05);
}

/* Blog Image */
.blog-card img {
width: 100%;
height: 180px;
object-fit: cover;
}

/* Link Badge */
.link-badge {
position: absolute;
top: 10px;
right: 10px;
background: red;
padding: 8px;
border-radius: 5px;
}
.link-badge img {
width: 15px;
height: 15px;
}

/* Blog Content */
.blog-content {
padding: 15px;
}
.date {
font-size: 14px;
color: #999;
margin: 5px 0;
}
.admin {
color: red;
font-weight: bold;
}
.blog-content h3 {
font-size: 16px;
font-weight: bold;
margin: 5px 0 10px;
}

/* Read More */
.read-more {
text-decoration: none;
color: black;
font-size: 14px;
font-weight: bold;
}
.read-more:hover {
text-decoration: underline;
}

/* Footer Navigation */
.blog-footer {
display: flex;
justify-content: center;
align-items: center;
gap: 15px;
margin-top: 20px;
}
.arrow-btn {
background: none;
border: none;
font-size: 20px;
cursor: pointer;
}
.view-all-btn {
background: red;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
border-radius: 20px;
cursor: pointer;
}
.view-all-btn:hover {
background: darkred;
}
/* Blog Title Clickable */
.blog-title {
text-decoration: none;
color: black;
display: block;
transition: color 0.3s ease-in-out;
}

.blog-title h3 {
margin: 10px 0;
font-size: 18px;
}

.blog-title:hover {
color: red;
}

/* Featured Developers Section */
.featured-developers {
text-align: center;
padding: 50px 0;
background-color: #f8f8f8;
}

.section-title {
font-size: 28px;
font-weight: 600;
color: #333;
margin-bottom: 30px;
text-transform: uppercase;
}

.section-title .highlight {
color: red;
font-weight: 700;
}

.developers-container {
display: flex;
justify-content: center;
align-items: center;
gap: 50px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

.developers-container img {
max-height: 60px;
object-fit: contain;
transition: transform 0.3s ease;
}

.developers-container img:hover {
transform: scale(1.1);
}
/* Why to Believe Us Section */
.why-believe-us {
text-align: center;
padding: 50px 0;
background-color: #f8f8f8;
}

.section-title {
font-size: 28px;
font-weight: 600;
color: black;
margin-bottom: 30px;
text-transform: uppercase;
}

.section-title .highlight {
color: red;
font-weight: 700;
}

/* Box Container */
.belief-container {
display: flex;
justify-content: center;
align-items: center;
gap: 30px;
flex-wrap: wrap;
max-width: 1200px;
margin: 0 auto;
}

/* Individual Boxes */
.belief-box {
padding: 30px;
border-radius: 10px;
text-align: center;
width: 300px;
transition: transform 0.3s ease;
color: white;
}

.belief-box:hover {
transform: translateY(-5px);
}

/* Box Colors */
.blue {
background-color: #2E7DBC;
}
.light-blue {
background-color: #63C2DE;
}
.orange {
background-color: #D27D2D;
}

/* Icon Circle */
.icon-circle {
width: 80px;
height: 80px;
background-color: white;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto 20px;
}

.icon-circle img {
width: 50px;
height: 50px;
}
/* Footer Container */
.propadda-footer {
background-color: #f8f8f8;
padding: 40px 0;
color: #000; /* Making all text black for visibility */
font-family: Arial, sans-serif;
}

/* Footer Columns */
.propadda-footer .footer-column {
width: 20%;
float: left;
padding: 0 15px;
}

/* Footer Headings */
.propadda-footer .footer-column h3 {
font-size: 16px;
font-weight: bold;
margin-bottom: 15px;
color: #d32f2f; /* Headings in red */
text-transform: uppercase;
}

/* Footer Links */
.propadda-footer .footer-column ul {
list-style: none;
padding: 0;
margin: 0;
}

.propadda-footer .footer-column ul li {
margin-bottom: 8px;
}

.propadda-footer .footer-column ul li a {
color: #000 !important; /* Making text black */
text-decoration: none;
transition: color 0.3s ease;
}

.propadda-footer .footer-column ul li a:hover {
color: #d32f2f; /* Hover effect */
}

/* Contact Info */
.propadda-footer .footer-column p {
color: #000 !important; /* Making text visible */
margin-bottom: 5px;
font-size: 14px;
}

/* Footer Social Icons */
.propadda-footer .social-icons {
margin-top: 15px;
}

.propadda-footer .social-icons a {
display: inline-block;
margin-right: 10px;
color: #000;
font-size: 18px;
transition: color 0.3s ease;
}

.propadda-footer .social-icons a:hover {
color: #d32f2f;
}

/* Footer Bottom Section */
.propadda-footer .footer-bottom {
border-top: 1px solid #ddd;
padding: 15px 10%;
font-size: 14px;
text-align: center;
color: #000 !important; /* Making text visible */
}

/* Company Name & Rights */
.propadda-footer .footer-bottom .company-name {
font-weight: bold;
}

.propadda-footer .footer-bottom .rights {
font-size: 14px;
margin-top: 5px;
display: block;
}

/* Privacy Policy Link */
.propadda-footer .privacy-policy {
color: #000 !important; /* Making "Privacy Policy" visible */
text-decoration: none;
font-weight: bold;
}

.propadda-footer .privacy-policy:hover {
color: #d32f2f;
}

/* Responsive Design */
@media (max-width: 768px) {
.propadda-footer .footer-column {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
}


/* Responsive Design */
@media (max-width: 768px) {
.blog-container {
  flex-direction: column;
  align-items: center;
}
}

