/* --- ALL CSS CODE --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

/* ==========================================================================
   SITE PRELOADER PREMIUM STYLES
   ========================================================================== */
#site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; /* लोडर का बैकग्राउंड वाइट रहेगा */
    z-index: 999999; /* यह स्क्रीन पर हर एक एलिमेंट के ऊपर रहेगा */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* ब्रांड टेक्स्ट सेटिंग्स */
.preloader-brand-text {
    color: #0b2c56; /* Navy Blue */
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    margin-bottom: 2px;
}

.tracking-wider {
    letter-spacing: 1.5px;
    font-size: 0.7rem;
}

/* मॉडर्न और आकर्षक स्पिनर एनीमेशन (Teal Color) */
.custom-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 191, 165, 0.1);
    border-radius: 50%;
    border-top-color: #00bfa5; /* Teal Color */
    margin: 0 auto;
    animation: spinPageLoader 0.8s linear infinite;
}

/* स्पिनर घूमने का एनीमेशन लॉजिक */
@keyframes spinPageLoader {
    to {
        transform: rotate(360deg);
    }
}

/* लोडर खत्म होने के बाद मुख्य बॉडी को स्क्रॉल करने देने के लिए */
body.loader-active {
    overflow: hidden;
}
/* END */


body {
font-family: "Poppins", sans-serif;
overflow-x: hidden;
background-color: #ffffff;
}

.container {
max-width: 1250px !important;
}

/* --- Navbar Base Styling --- */
.navbar {
padding: 15px 0;
background-color: #ffffff !important;
width: 100%;
z-index: 1000;
transition: all 0.3s ease;
}

.navbar-brand {
display: flex;
align-items: center;
font-weight: 700;
}

.navbar-brand span {
font-size: 18px;
color: #0c2f4f;
letter-spacing: 0.5px;
}

.login-btn {
padding: 10px 24px;
font-weight: 500 !important;
background-color: #00b98f !important;
color: white !important;
border: none;
border-radius: 8px;
transition: 0.3s ease;
}

.login-btn:hover {
background-color: #009673 !important;
box-shadow: 0 4px 12px rgba(0, 185, 143, 0.3);
}

.navbar-nav .nav-link {
position: relative;
color: #0d2e4f !important;
font-weight: 500;
padding: 8px 16px !important;
transition: .3s;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
color: #00b98f !important;
}

.navbar-nav .nav-link::after {
content: "";
position: absolute;
left: 50%;
bottom: 0;
width: 0;
height: 3px;
background: #00b98f;
border-radius: 20px;
transition: .3s ease;
transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
width: 60%;
}

/* --- STICKY NAVBAR CLASS (Sroll करने पर एक्टिव होगी) --- */
.navbar.sticky {
position: fixed;
top: 0;
left: 0;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
animation: slideDown 0.4s ease forwards;
padding: 10px 0;
}

@keyframes slideDown {
from { transform: translateY(-100%); }
to { transform: translateY(0); }
}

/* --- Hero Section Style --- */
.hero {
position: relative;
min-height: 80vh;
display: flex;
align-items: center;
background-image: url("../assests/images/hero-section-image.webp");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
padding: 80px 0;
}

.overlay {
position: absolute;
inset: 0;
background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
position: relative;
z-index: 2;
color: #fff;
}

.hero-badge {
background: rgba(0, 185, 143, 0.2);
border: 1px solid #00b98f;
color: #00b98f;
padding: 6px 16px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
display: inline-block;
}

.hero h1 {
font-size: 54px;
font-weight: 700;
line-height: 1hero;
}

.hero-description {
font-size: 18px;
max-width: 650px;
margin: 20px 0 10px;
opacity: 0.9;
}

.typing-container {
min-height: 35px; 
margin-bottom: 25px;
}

#typing-text {
font-size: 20px;
font-weight: 500;
color: #fff;
}

.hero-btn-group {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.explore-btn {
background-color: #00b98f !important;
color: #fff !important;
border: none;
}

.explore-btn:hover { background-color: #009673 !important; }

/* --- Properties Search Section --- */
.property-search {
position: relative;
margin-top: -60px;
z-index: 10;
padding: 0 15px;
}

.property-search .container {
background: #fff;
border-radius: 16px;
overflow: hidden;
}

.search-tabs {
display: flex;
overflow-x: auto;
white-space: nowrap;
border-bottom: 1px solid #f1f1f1;
}

.search-tabs::-webkit-scrollbar { display: none; }

.tab {
position: relative;
padding: 18px 24px;
border: none;
background: none;
font-weight: 600;
color: #4a5568;
transition: .3s;
}

.tab:hover, .tab.active { color: #00b98f; }

.tab.active::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: #00b98f;
}

.dot {
display: inline-block;
width: 6px;
height: 6px;
background: #ff4d4d;
border-radius: 50%;
margin-left: 4px;
vertical-align: middle;
}

.free-badge {
background: #ff4d4d;
color: white;
font-size: 10px;
padding: 2px 6px;
border-radius: 4px;
margin-left: 5px;
}

.search-content { padding: 25px; }

.search-content input,
.search-content select {
height: 50px;
border-radius: 8px;
border: 1px solid #e2e8f0;
box-shadow: none !important;
}

.search-content .btn-search {
height: 50px;
background-color: #00b98f;
color: white;
font-weight: 600;
border-radius: 8px;
border: none;
transition: 0.3s;
}

.search-content .btn-search:hover { background-color: #009673; }

/* --- Swiper Slider & Cards --- */
.category-slider-wrapper {
position: relative;
padding: 0 45px;
}

.category-card {
background: #fff;
border-radius: 12px;
overflow: hidden;
cursor: pointer;
transition: .3s ease;
border: 1px solid #edf2f7;
}

.category-card:hover {
transform: translateY(-6px);
box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.category-card .img-box {
width: 100%;
height: 140px;
overflow: hidden;
}

.category-card img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.category-card:hover img { transform: scale(1.05); }

.category-card h6 {
padding: 15px 10px;
font-size: 15px;
font-weight: 600;
text-align: center;
color: #2d3748;
margin-bottom: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

.swiper-button-next, .swiper-button-prev {
width: 40px;
height: 40px;
background: #fff;
border-radius: 50%;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: .3s;
}

.swiper-button-next::after, .swiper-button-prev::after {
font-size: 16px;
font-weight: bold;
color: #2d3748;
}

.swiper-button-prev { left: 0px; }
.swiper-button-next { right: 0px; }

.swiper-button-next:hover, .swiper-button-prev:hover { background: #00b98f; }
.swiper-button-next:hover::after, .swiper-button-prev:hover::after { color: #fff; }

.swiper-button-disabled { opacity: 0; visibility: hidden; }

/* Our Services Card Styling */
.card-bg {
    background-color: #e1f8e8;
    border: none;
}
.card-content {
    background-color: #fff;
    border-radius: 8px;
    border: 1px dotted #26c49f;
}

.card-content .image-circle {
    border: 1px dotted #26c49f;
    padding: 15px;
    border-radius: 50%;
}
.card-content:hover{
    background-color: #00b98f;
    color: white;
    transition: all 0.4s ease;
}

.card-content:hover .image-circle {
    background-color: white;
}

.services-name {
    font-weight: 600;
}

/* Agents Section Style */
.agent-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
}

/* Agents Section */
.main-container {
padding: 40px 15px;
max-width: 1200px;
margin: 0 auto;
}
.brand-text span {
color: #301625;
font-weight: bold;
}
.btn-compare {
background-color: #00b98f;
color: #fff;
border-radius: 30px;
padding: 12px 30px;
font-weight: 600;
border: none;
transition: all 0.3s ease;
}
.btn-compare:hover {
background-color: #049f7b;
color: #fff;
}

/* Agent Layout Styles */
.agent-card {
text-align: center;
}
.agent-img-wrapper {
position: relative;
width: 120px;
height: 120px;
margin: 0 auto 12px;
}
.agent-img {
width: 100%;
height: 100%;
border-radius: 50%;
object-fit: cover;
}
.ring-red {
border: 3px solid #00b98f;
padding: 3px;
}
.badge-home {
position: absolute;
bottom: 2px;
right: 8px;
background-color: #00b98f;
color: white;
border-radius: 4px;
padding: 2px 5px;
font-size: 9px;
}
.agent-name {
font-size: 1.1rem;
font-weight: 700;
}
.agent-meta {
font-size: 0.82rem;
color: #6c757d;
line-height: 1.4;
}

.agent-tag span {
color: #dc3545;
}

/* Stats (Only visible on Desktop) */
.agent-stats {
margin-top: 15px;
font-size: 0.9rem;
}
.stat-val {
font-weight: bold;
display: block;
font-size: 1.1rem;
}
.stat-lbl {
color: #6c757d;
font-size: 0.8rem;
}

/* Blur Effect for Desktop Third Card */
.blur-agent {
filter: blur(4px);
opacity: 0.6;
}
.more-agents-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 2;
text-align: center;
width: 100%;
}

/* Properties Features */
.property-features {
    margin-top: 30px;
}




.features-items {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.features-items i {
    color: #00b98f;
    font-size: 22px;
    font-weight: bold;
}

.features-items span {

    line-height: 1.6;
}

.properties-section {
    background-color: #e1f8e8;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}


.properties-section img {
    border-radius: 8px;
    border: 1px dotted #00b98f;
}

.properties-image {
    overflow: hidden;
}

.properties-section img {
    transition: transform 0.4s ease;
}

.properties-image:hover img {
    transform: scale(1.1);
}

.property-features button {
    background-color: #00b98f;
    color: #fff;
    
}

/* ======================================================= */
    /* LATEST PROPERTIES STYLING */
/* ======================================================= */
/* ==========================================================================
   LATEST PROPERTIES SLIDER STYLES
   ========================================================================== */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }
.bg-teal { background-color: #00bfa5 !important; }
.bg-warning-custom { background-color: #ff9800 !important; } /* कमर्शियल का ऑरेंज टैग */
.extra-small { font-size: 0.78rem; color: #777777; }

/* टॉप व्यू ऑल लिंक */
.view-all-link {
    font-size: 0.9rem;
}
.view-all-link:hover {
    color: #0b2c56 !important;
    transform: translateX(3px);
}

/* प्रॉपर्टी कार्ड मुख्य स्टाइल */
.property-item-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px !important;
}
.property-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(11, 44, 86, 0.08) !important;
}

/* इमेज बॉक्स और टैग कस्टमाइजेशन */
.property-img-box {
    overflow: hidden;
    height: 160px; /* फिक्स हाइट ताकि सभी इमेजेस एक बराबर दिखें */
}
.property-thumb {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.property-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
}

/* डिटेल्स एरिया */
.small-title {
    font-size: 0.95rem;
}
.price-text {
    font-size: 1.1rem;
}

/* फूटर मेटा डिटेल्स */
.property-meta-footer {
    letter-spacing: 0.2px;
}


/* ==========================================================================
   BROWSE CATEGORIES & LOCATIONS TRIPLE BOX WORK
   ========================================================================== */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }
.bg-teal-light { background-color: rgba(0, 191, 165, 0.08) !important; }
.extra-small { font-size: 0.72rem; }

/* मुख्य कार्ड बॉक्स शैडो और बॉर्डर */
.browse-main-card {
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* 1. Popular Locations Styles */
.location-icon-wrap {
    width: 36px;
    height: 36px;
    background-color: rgba(0, 191, 165, 0.07) !important;
}

.location-item-box:hover {
    background-color: rgba(0, 191, 165, 0.05);
    transform: translateX(2px);
}

/* 2. Budget Row Styles */
.budget-row-link {
    border-color: #f0f0f0 !important;
    background-color: #ffffff;
    padding: 8px;
}

.budget-row-link:hover {
    border-color: #00bfa5 !important;
    background-color: rgba(0, 191, 165, 0.02);
    transform: translateY(-1px);
}

.budget-row-link i.fa-angle-right {
    transition: transform 0.2s ease;
}

.budget-row-link:hover i.fa-angle-right {
    transform: translateX(3px);
    color: #00bfa5 !important;
}

/* 3. Property Type Icons Grid */
.type-icon-box {
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
}

.type-grid-card:hover .type-icon-box {
    background-color: #00bfa5 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 191, 165, 0.15);
}

.type-grid-card span {
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES (FOR TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 991px) {
    /* टैबलेट पर तीसरा बॉक्स पूरे विड्थ में दिखेगा ताकि ग्रिड बैलेंस रहे */
    .property-browse-section .col-md-12 {
        margin-top: 8px;
    }
}

@media (max-width: 575px) {
    .browse-main-card {
        padding: 20px !important;
    }
    /* मोबाइल स्क्रीन पर टाइप आइकॉन के टेक्स्ट को और छोटा अलाइन करना */
    .type-grid-card span {
        font-size: 0.68rem;
    }
    .type-icon-box {
        width: 40px;
        height: 40px;
    }
}


/* ==================================== */
    /* OUR PROJECT SECTION STYLING */
/* ==================================== */
.project-section {
    background-color: #f9fbf9;
    padding: 50px 0;
}
.project-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}
.bg-premium { background-color: #e8f5e9; color: #2e7d32; }
.bg-launch { background-color: #fff8e1; color: #f57f17; }

.compact-project-card {
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.project-img-box {
    position: relative;
    aspect-ratio: 16 / 11;
    width: 100%;
    background-color: #eee;
}
.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0e2f50;
    margin-bottom: 10px;
}
.project-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    flex-grow: 1;
}
.project-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: color 0.2s ease;
}
.project-footer:hover {
    color: #00b98f;
}
.btn-view-all {
    background-color: #00b98f;
    color: white;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 6px;
    border: none;
    transition: background 0.3s;
}
.btn-view-all:hover {
    background-color: #00b98f;
    color: white;
}
.projectSwiperContainer .swiper-pagination-bullet-active {
    background: #00b98f !important;
}

.our-porject-container {
    background-color: #e1f8e8;
    margin-top: 30px;
    border-radius: 8px;
}

/* Counter Section Styling */
/* Stats Section CSS */
.stats-container {
    background-color: #ffffff;
    border-color: #eef2f5 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.stat-icon-box {
    background-color: #f0fbf9; /* लाइट ग्रीनिश बैकग्राउंड जैसा इमेज में है */
    padding: 12px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(0, 191, 165, 0.2); /* हल्के कट्स बॉर्डर */
}

.stat-number {
    color: #0b2c56; /* नेवी ब्लू ब्रांड कलर */
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d !important;
    font-weight: 500;
    white-space: nowrap; /* टेक्स्ट नीचे न टूटे */
}

/* रेस्पॉन्सिव बॉर्डर्स (लाइन्स) के लिए नियम */
@media (min-width: 992px) {
    .border-start-lg {
        border-left: 1px solid #eef2f5 !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .border-start-md {
        border-left: 1px solid #eef2f5 !important;
    }
}

/* मोबाइल व्यू के लिए पैडिंग और अलाइनमेंट फिक्स */
@media (max-width: 767px) {
    .stat-label {
        white-space: normal;
    }
    .stat-number {
        font-size: 1.3rem;
        margin-top: 5px;
    }
}

/* Why Choose US Swiper JS CSS Styling*/
/* Swiper Custom Styles */
.why-choose-section {
    background-color: #f8f9fa !important;
}

.title-underline {
    width: 50px;
    height: 3px;
    background-color: #00bfa5;
    margin-top: 8px;
    border-radius: 2px;
}

/* सुनिश्चित करें कि सभी स्लाइड्स की ऊंचाई एक समान हो */
.whyChooseSwiper .swiper-slide {
    height: auto;
}

.feature-card {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eef2f5 !important;
    background: #ffffff;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 191, 165, 0.1) !important;
    border-color: rgba(0, 191, 165, 0.3) !important;
}

.feature-icon-wrapper {
    background-color: #e6f8f6;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.feature-icon-wrapper i {
    color: #00bfa5 !important;
}

.feature-heading {
    color: #0b2c56;
    font-size: 0.95rem;
    margin-top: 10px;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #6c757d !important;
}

/* Swiper के नीचे वाले डॉट्स (Pagination) का कलर बदलने के लिए */
.whyChooseSwiper .swiper-pagination-bullet-active {
    background-color: #00bfa5 !important;
    width: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}


/* Properties Post Section Styling */
/* ==========================================================================
   COMPACT LISTING PROCESS & IMAGE BACKGROUND BANNER STYLES
   ========================================================================== */

/* बेसिक कलर्स */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }
.z-index-2 { position: relative; z-index: 2; }
.tracking-wider { letter-spacing: 1px; }

.heading-line-center {
    height: 3px;
    width: 40px;
    background-color: #00bfa5;
    border-radius: 2px;
}

/* 1. 3-Step Process Card Design (स्लीक और छोटे आइकॉन) */
.process-compact-card {
    border: 1px solid #eaeaea;
    background-color: #ffffff;
}

.process-icon-wrap {
    width: 48px;
    height: 48px;
    transition: all 0.3s ease;
}

/* होवर करने पर सुंदर और सॉफ्ट इफ़ेक्ट */
.process-compact-card:hover {
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(11, 44, 86, 0.06);
    transform: translateY(-3px);
}

.process-compact-card:hover .process-icon-wrap {
    background-color: #00bfa5 !important;
    color: #ffffff !important;
}

/* 2. Compact Banner with Premium Real-Estate Background Image */
.sell-property-compact-banner {
    /* Unsplash से एक खूबसूरत और रिलेवेंट रियल एस्टेट इमेज का उपयोग किया गया है */
    background-image: url('https://images.unsplash.com/photo-1564013799919-ab600027ffc6?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* इमेज के ऊपर ब्रांड कलर का पारदर्शी (Transparent Overlay) शेड */
.banner-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 44, 86, 0.93) 0%, rgba(0, 191, 165, 0.88) 100%);
    z-index: 1;
}

.max-w-md {
    max-width: 520px;
}

/* पोस्ट बटन स्टाइल */
.btn-post-now {
    border: none;
    font-size: 0.88rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-post-now:hover {
    background-color: #0b2c56 !important;
    color: #ffffff !important;
    transform: scale(1.03);
}

/* ==========================================================================
   ALL DEVICE RESPONSIVE BREAKPOINTS (स्मार्टफोन रिस्पॉन्सिवनेस)
   ========================================================================== */
@media (max-width: 767px) {
    .sell-property-compact-banner {
        text-align: center;
        padding: 30px 20px !important;
    }
    .process-compact-card {
        text-align: center;
    }
    .process-icon-wrap {
        margin-left: auto;
        margin-right: auto;
    }
    .btn-post-now {
        width: 100%; /* मोबाइल पर बटन फुल विड्थ हो जाएगा जिससे क्लिक करना आसान हो */
        max-width: 280px;
    }
}

/* ==========================================================================
   LATEST BLOG SLIDER STYLES (IMAGE MATCH)
   ========================================================================== */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }
.extra-small { font-size: 0.75rem; }

/* टॉप व्यू ऑल लिंक */
.view-all-link {
    font-size: 0.9rem;
}
.view-all-link:hover {
    color: #0b2c56 !important;
    transform: translateX(3px);
}

/* ब्लॉग मुख्य कार्ड */
.blog-item-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px !important;
    background-color: #ffffff;
}
.blog-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(11, 44, 86, 0.08) !important;
}

/* ब्लॉग इमेज रैपर */
.blog-img-box {
    overflow: hidden;
    height: 160px; /* सभी इमेज को एक कतार में रखने के लिए फिक्स हाइट */
}
.blog-thumb {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 0.4s ease;
}
.blog-item-card:hover .blog-thumb {
    transform: scale(1.05); /* होवर करने पर हल्का सा ज़ूम इफ़ेक्ट */
}

/* ब्लॉग टेक्स्ट और तारीख */
.blog-date {
    font-size: 0.78rem;
    font-weight: 500;
}
.blog-title-text {
    font-size: 0.95rem;
    line-height: 1.5;
    display: -webkit-box;
    /* -webkit-line-clamp: 2; */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* रीड मोर बटन इफ़ेक्ट */
.read-more-btn {
    font-size: 0.85rem;
    display: inline-block;
}
.read-more-btn:hover {
    color: #0b2c56 !important;
}
.read-more-btn i {
    transition: transform 0.2s ease;
}
.read-more-btn:hover i {
    transform: translateX(3px);
}



/* Clients Testimonial CSS */
/* ==========================================================================
   SWIPER TESTIMONIALS STYLES (IMAGE MATCH)
   ========================================================================== */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }
.tracking-wider { letter-spacing: 1px; }
.extra-small { font-size: 0.75rem; }

.heading-line-center {
    height: 3px;
    width: 40px;
    background-color: #00bfa5;
    border-radius: 2px;
}

/* टेस्टीमोनियल कार्ड डिज़ाइन */
.testimonial-card {
    min-height: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

/* इमेज की तरह डबल इनवर्टेड कॉमा आइकॉन का स्टाइल */
.quote-icon i {
    opacity: 0.8;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555555 !important;
}

/* यूजर प्रोफाइल इमेज (गोल आकार) */
.client-avatar {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

/* कार्ड होवर इफ़ेक्ट */
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 44, 86, 0.08) !important;
}

/* Swiper Pagination Dots (इमेज के अनुसार कस्टमाइजेशन) */
.testimonial-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #cccccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: #00bfa5 !important; /* एक्टिव डॉट आपकी थीम के ग्रीन-टील कलर में होगा */
    width: 20px; /* एक्टिव डॉट थोड़ा लंबा (Elongated) दिखेगा जो बहुत ट्रेंडी लगता है */
    border-radius: 4px;
}

/* ==========================================================================
   CONTACT US & LEAD FORM WITH GOOGLE MAP STYLES
   ========================================================================== */
.text-navy { color: #0b2c56 !important; }
.text-teal { color: #00bfa5 !important; }

/* टाइटल स्टाइल */
.contact-main-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

/* इनपुट फ़ील्ड्स कस्टमाइजेशन (इमेज की तरह क्लीन बॉर्डर) */
.custom-input {
    border: 1px solid #cccccc !important;
    border-radius: 6px !important;
    padding: 14px 16px !important;
    font-size: 0.95rem;
    color: #333333;
    box-shadow: none !important;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* फोकस करने पर थीम कलर का हल्का ग्लो */
.custom-input:focus {
    border-color: #00bfa5 !important;
    box-shadow: 0 0 0 3px rgba(0, 191, 165, 0.1) !important;
}

/* टेक्स्टएरिया की रिसाइजिंग रोकने के लिए */
.custom-textarea {
    resize: none;
}

/* सेंड मैसेज बटन (इमेज मैच) */
.btn-send-message {
    background-color: #00bfa5 !important;
    border: none !important;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
}

.btn-send-message:hover {
    background-color: #009688 !important; /* होवर होने पर थोड़ा गहरा टील */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 191, 165, 0.2) !important;
}

.btn-send-message:active {
    transform: translateY(0);
}

/* मैप बॉक्स कंटेनर */
.map-container-box {
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.map-container-box iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   ALL DEVICE RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 767px) {
    .contact-main-title {
        font-size: 2rem;
    }
    .min-h-map {
        min-height: 300px; /* मोबाइल पर मैप की एक न्यूनतम सही हाइट बनी रहे */
        margin-top: 15px;
    }
    .custom-input {
        padding: 12px 14px !important;
    }
}



/* Footer Section Styling */
/* ==========================================================================
   MEDIUM COMPACT FLOATING FOOTER STYLES WITH ICON
   ========================================================================== */

.main-footer-wrapper {
    background-color: transparent;
    font-family: 'Poppins', sans-serif;
}

/* मेन डार्क बैकग्राउंड्स */
.bg-navy-dark {
    background-color: #0b2c56;
}

.bg-navy-darker {
    background-color: #072040;
}

/* Medium Floating Subscribe Box */
.subscription-container {
    margin-bottom: -40px; 
    position: relative;
    z-index: 5;
}

.floating-subscribe-box {
    background-color: #00bfa5; /* ब्रांड का Teal कलर */
    box-shadow: 0 10px 25px rgba(0, 191, 165, 0.25) !important;
}

/* आइकॉन बॉक्स स्टाइलिंग */
.subscribe-icon-box {
    width: 45px;
    height: 45px;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.15);
}

.extra-small {
    font-size: 0.78rem;
}

/* इनपुट फ़ॉर्म का कॉम्पैक्ट डिज़ाइन */
.footer-sub-form {
    width: 100%;
    max-width: 350px; 
}

.btn-premium-sub {
    background-color: #0b2c56;
    border: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.btn-premium-sub:hover {
    background-color: #072040;
    transform: scale(1.02);
}

/* विजेट्स टाइटल के नीचे स्टाइलिश लाइन */
.footer-widget-title {
    font-size: 0.95rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 30px;
    background-color: #00bfa5;
}

.footer-about-text {
    line-height: 1.6;
}

/* सोशल मीडिया सर्कुलर बटन्स */
.social-icon-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-btn:hover {
    background-color: #00bfa5;
    color: #ffffff;
    transform: translateY(-3px);
    border-color: #00bfa5;
}

/* मेनू लिंक्स की स्टाइल और एरो इफ़ेक्ट */
.footer-menu-list li {
    margin-bottom: 12px;
}

.footer-menu-list li a {
    color: #adb5bd !important;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.small-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.footer-menu-list li a:hover {
    color: #00bfa5 !important;
}

.footer-menu-list li a:hover .small-arrow {
    transform: translateX(4px);
    color: #00bfa5;
}

/* संपर्क जानकारी आइकॉन और लिंक्स */
.contact-teal-icon {
    color: #00bfa5 !important;
}

.footer-contact-list li a {
    transition: color 0.3s ease;
}

.footer-contact-list li a:hover {
    color: #00bfa5 !important;
}

/* कॉपीराइट बार */
.footer-copyright-bar {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.copyright-teal-link {
    color: #00bfa5 !important;
    transition: color 0.3s ease;
}

.copyright-teal-link:hover {
    color: #009688 !important;
}

/* ==========================================================================
   ALL DEVICE RESPONSIVE BREAKPOINTS (स्मार्टफोन रिस्पॉन्सिवनेस)
   ========================================================================== */
@media (max-width: 767px) {
    .floating-subscribe-box {
        border-radius: 20px !important; 
        padding: 20px !important;
    }
    .footer-sub-form {
        max-width: 100%;
    }
    .subscription-container {
        margin-bottom: -60px;
    }
    .footer-body-content {
        padding-top: 80px !important;
    }
}

@media (max-width: 575px) {
    .footer-body-content {
        text-align: left;
    }
}

