/* Sign up Page */
.register{
    padding-bottom:150px;
    background:url('/img/sign-bg.jpg') no-repeat center;
    background-size:cover;
}
.contentpage-logo{
    max-width: 290px;
}
    .regis-content{
        margin-right:560px;
    }
/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
top: 58px;
    left: 0;
    width: 100%;
    height: 410px;
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%); */
    /* background-image: url(../../img/signup/signUp.jpg); */
    background-image: url(../../img/bannner-bg.jpg);
    background-size:cover;
    background-position: bottom center;
    /* animation: gradientShift 15s ease infinite; */
    z-index: 0;
}

/* .hero-background::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,200 L0,100 Q300,50 600,100 T1200,100 L1200,200 Z" fill="rgba(0,0,0,0.3)"/></svg>');
    background-size: cover;
    background-position: bottom;
} */

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.hero-headline {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
}

.hero-points {
    font-size: 1.3rem;
    color: #34495e;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-point {

       width: 30px;
    height: 28px;
    background-image: url(../../img/decree.png);
    flex-shrink: 0;
    margin-top: 0px;
    background-size: cover;
    flex-shrink: 0;
}

/* Registration Card */
.registration-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
    width:500px;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2f9ad6;
    text-align: center;
}

.registration-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    /* margin-bottom: 1rem; */
    transition: all 0.3s ease;
}

.registration-form .form-control:focus {
    border-color: #ff6b35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

.registration-form .form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 1rem;
}

.password-input {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
}

.form-check {
    margin-bottom: 1.5rem;
}

.form-check-input:checked {
    background-color: #ff6b35;
    border-color: #ff6b35;
}

.btn-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-weight: 600;
    font-size: 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
}

.link-primary {
    color: #4facfe;
    text-decoration: none;
    font-weight: 500;
}

.link-primary:hover {
    color: #667eea;
    text-decoration: underline;
}

/* Feature Sections */
.know-how-section,
.why-advertise-section {
    padding: 5rem 0;
    border-radius:10px;

}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.feature-card {
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /* background: #fff; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    position: relative;
}

/* Icon Styles */
.icon-house {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 8px;
    position: relative;
}

.icon-house::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 20px solid #27ae60;
}

.icon-house::after {
    content: '₹';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
}

.icon-funnel {
    width: 50px;
    height: 70px;
    background: #3498db;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    position: relative;
    margin: 0 auto;
}

.icon-funnel::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #2980b9;
}

.icon-megaphone {
    width: 60px;
    height: 50px;
    background: #e74c3c;
    border-radius: 30px 30px 30px 5px;
    position: relative;
}

.icon-megaphone::before {
    content: '💬';
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 20px;
}

.icon-megaphone::after {
    content: '❤️';
    position: absolute;
    top: 10px;
    right: -10px;
    font-size: 16px;
}

.icon-browser-blue {
    width: 70px;
    height: 50px;
    background: #3498db;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.icon-browser-blue::before {
    content: 'WWW';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-size: 14px;
}

.icon-browser-red {
    width: 70px;
    height: 50px;
    background: #e74c3c;
    border-radius: 5px 5px 0 0;
    position: relative;
}

.icon-browser-red::before {
    content: 'Ads';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 10px;
}

.icon-browser-red::after {
    content: 'Ads';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-weight: bold;
    font-size: 10px;
}

.icon-mobile {
    width: 40px;
    height: 70px;
    background: #27ae60;
    border-radius: 8px;
    position: relative;
}

.icon-mobile::before {
    content: '🔍';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 20px;
}

.icon-mobile::after {
    content: '📍';
    position: absolute;
    bottom: -8px;
    left: -8px;
    font-size: 16px;
}

.feature-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .registration-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .icon-circle {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .hero-points {
        font-size: 1rem;
    }
    
    .registration-card {
        padding: 1.25rem;
    }
}

/* Home Residential page */
/* Section Titles */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 31.5em;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Project Residential Section */
.feature-project-residential {
    padding: 5rem 0;
    background: #FFFCF4;
}

.project-card-large-price{
    font-size:22px !important;   
    color: #da640b !important;
}

.project-image-wrapper {
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
}

.project-image-wrapper img {
    height: 100%;
    object-fit: cover;
}

.project-details-card {
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
}

.project-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.project-info .info-item {
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
}

.project-info svg {
    color: #4facfe;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.project-card-large{
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,f3e7cf+100 */
    background: linear-gradient(to bottom,  #ffffff 0%,#f3e7cf 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-radius:10px;
}

/* Featured Commercial Projects */
.featured-projects-commercial {
    padding: 5rem 0;
}

.project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card-image {
    height: 250px;
    overflow: hidden;
}

.project-card-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-content {
    padding: 1.5rem;
}

.project-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.project-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Property Card Home */

.property-carousel .swiper{
   overflow: visible !important;
}

.property-carousel{
    padding: 0 10px;
    overflow: hidden;
}



    .whatsappIcon{
        width:21px; height:21px;
    }
.letter {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 6px;
}
.owner-name{ font-size: 13px; color: #757575;}
.owner-name span{ color: #333333;}
.property-card-modern {
    border-radius: 12px;
    /* overflow: hidden; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card-container .swiper-slide{
    overflow: visible;
}

.property-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

/* Image Carousel */
.property-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f5f5f5;
    margin: 0 !important;
    padding: 0 !important;
        border-radius:12px 12px 0 0;
    overflow: hidden;

}

.property-image-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    display: block;
       border-radius:12px 12px 0 0;
    overflow: hidden;
}

.property-card-container .swiper{
    padding-top:10px
}

.carousel-slide {
    position: absolute;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.1s linear;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    outline: none !important;
    z-index: 0;
    will-change: opacity;
    box-sizing: border-box;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Carousel Arrows - Positioned on left and right center */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    color: #333;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity:0;
}

.property-card-modern:hover .carousel-arrow {
 opacity: 1;
}

.carousel-arrow-left {
    left: 15px;
}

.carousel-arrow-right {
    right: 15px;
}

.carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow svg {
    width: 20px;
    height: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #ff6b35;
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Trusted Agent Badge */
.trusted-agent-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 80px;
    height: 80px;
}

.trusted-badge-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.property-type-title{
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 70px;
}
.property-id-date{ display: flex; justify-content: space-between; color: #484848;}
.property-id-date > span{ font-size: 11px;}

/* Favorite Icon */
.favorite-container{
    position: relative;
}
.favorite-icon,  .favorite-icon-link {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 10;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorite-icon:hover, .favorite-icon-link:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-icon svg, .favorite-icon-link svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.favorite-icon.active svg {
    fill: #ff6b35;
    color: #ff6b35;
}

/* Property Details */
.swiper-slide .property-card-modern{
 background-color:#ffffff;
}

.owner-name span {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.property-card-body {
    cursor: pointer;
}

.property-type h5 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    width: 90%;
}

.property-price {
    color: #4a60a1;
}

.price-label, .card-label {
    font-size: 12px;
    color: #787878;
    margin-bottom: 1px;
    font-size:13px;
}

.price-value {
    font-size: 15px;
    font-weight: 600;
    color: #4a60a1;
    line-height: 1.5rem;
}

.property-info {
    color: #4a60a1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
}

.info-icon-label {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 100px;
}

.info-label {
    font-size: 0.9rem;
}

 .info-value {
    font-size: 15px;
}

/* Footer Section */
.property-footer {
    padding: 10px 15px;
}
.owner-detail-container{
    display: flex;
    gap:10px;
}
.property-id {
    color: #666;
    cursor: pointer;
    font-weight: 500;
}

.owner-contact-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.owner-profile {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.owner-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-right:5px;
}

.contact-buttons {
    display: flex;
    gap: 8px;
}

.btn-contact {
    background: #FFEDE3;
    color: #923A09;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-light-contact{
    background-color:#fbf3ee;
}

.btn-contact:hover {
    background: rgb(233, 99, 55);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 107, 53, 0.3);
    color:#fbf3ee;
}


.property-card-body{
    min-height: 200px;
}


.btn-whatsapp {
    background-color: #D4FFD2;
    color: #0A7505;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #025221;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
    color: #dffcdd;
}



.btn-whatsapp:hover svg{
color:#ffffff !important;
}

@media (max-width: 768px) {
    .property-image-container {
        height: 200px;
    }
    
    .price-value {
        font-size: 1.3rem;
    }
    
    .owner-contact-section {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .carousel-arrow {
        width: 32px;
        height: 32px;
    }
    
    .carousel-arrow-left {
        left: 10px;
    }
    
    .carousel-arrow-right {
        right: 10px;
    }
    
    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .carousel-dots {
        padding: 4px 10px;
        bottom: 10px;
    }
}

/* Contact Page */
    .contactList{
        display:flex;
        flex-wrap: wrap;
    }
    .contactList li {
        margin-bottom:10px;
        width:50%;
    }
    .contactList li i {
    width: 40px;
    height: 40px;
    background-color: #51a0cb;
    text-align: center;
    line-height: 40px;
    display: inline-block;
    border-radius: 100px;
    color: #fff;
    font-size: 17px;
}
.contactInfo a {
    padding: 10px;
    text-decoration: none;
    color: #333;
    font-size: 17px;
    font-weight: 700;
    color: #2f9ad6;
}
.contactUsPage{
    background: url(../../img/bannner-bg.jpg) no-repeat center;
    background-size: cover;
}
/* Big Sauda Services Section */
.bigsauda-services {
    padding: 5rem 0;
    background: #fff;
}

.service-card {
background-color: #d4effa;
 padding: 2rem 1rem 1rem 2rem ;
 border-radius: 15px;
 text-align: left;
 height: 290px;
 transition: transform 0.3s ease;
 background-position: center bottom;
 background-repeat: no-repeat;
 background-size: cover;
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 align-items: flex-end;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    min-height: 60px;
}

.btn-service {
    background: #4facfe;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service:hover {
    background: #3498db;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4);
    color: #fff;
}

.bigsauda-logo {
    max-width: 150px;
    height: auto;
}

.app-badge {
    max-width: 150px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}
/* Blog Home */
.blog-title{
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    min-height: 100px;
}
.blog-short-content{
    min-height: 100px;
}
.blog-card{
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom:30px;
    padding: 10px 10px 10px 10px;
}