/* =========================================================
   SRI HARI INFRA - MASTER CSS
   (ALL 4 PAGES MERGED)
   index.php + about-us.php + projectsdetail.php + contact-us.php
   ========================================================= */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333333;
    overflow-x: hidden;
}

/* ---------- HEADER / NAVBAR (Common) ---------- */
.main-header {
    background-color: #ffffff !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.main-header .navbar-brand img {
    
    width: auto;
}

.main-header .navbar-nav .nav-link {
    font-weight: 500;
    font-size: 15px;
    color: #1a1a2e !important;
    transition: color 0.3s ease;
    padding: 0.5rem 0 !important;
}

.main-header .navbar-nav .nav-link:hover,
.main-header .navbar-nav .nav-link:focus {
    color: #ff9800 !important;
}

.main-header .navbar-toggler {
    border: none;
    padding: 0;
    font-size: 28px;
    color: #1a1a2e;
}

.main-header .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ---------- DROPDOWN (Projects) - No Icons ---------- */
.dropdown-menu-custom {
    background: #ffffff;
    border: none;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(8, 12, 66, 0.15);
    padding: 8px 0;
    min-width: 200px;
    margin-top: 8px;
}

.dropdown-menu-custom .dropdown-item {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e !important;
    transition: all 0.2s;
}

.dropdown-menu-custom .dropdown-item:hover {
    background: #f8f9fa;
    color: #ff9800 !important;
    padding-left: 28px;
}

/* Removed icons from dropdown items */
.dropdown-menu-custom .dropdown-item i {
    display: none !important;
}

.nav-link-dropdown {
    cursor: pointer;
}

.nav-link-dropdown:after {
    content: '\f078';
    font-family: 'Font Awesome 5 Pro';
    font-weight: 300;
    font-size: 12px;
    margin-left: 8px;
    color: #888;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .dropdown-hover {
        position: relative;
    }
    .dropdown-hover .dropdown-menu-custom {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: 0;
        padding-top: 8px;
    }
    .dropdown-hover:hover .dropdown-menu-custom {
        display: block;
    }
}

.dropdown-toggle-custom {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    color: #1a1a2e !important;
}
.dropdown-toggle-custom:after {
    display: none;
}
.dropdown-toggle-custom:focus {
    box-shadow: none !important;
}

/* ---------- BUTTONS (Common) ---------- */
.btn-primary {
    background-color: #ff9800 !important;
    border-color: #ff9800 !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #e68900 !important;
    border-color: #e68900 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.35) !important;
}

.btn-outline-light {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    background-color: transparent !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: #ffffff !important;
    color: #080c42 !important;
    transform: translateY(-2px);
}

.btn-success {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-success:hover {
    background-color: #1da851 !important;
    border-color: #1da851 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
}

.btn-lg {
    padding: 14px 35px;
    font-size: 16px;
}


/* =========================================================
   INDEX.PHP SPECIFIC STYLES
   ========================================================= */

/* HERO BANNER */
#heroBannerCarousel .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.header-padding {
    padding-top: 80px !important;
}

/* ABOUT US SECTION (index.php) */
#about-us {
    background-color: #e9edf2;
}

#about-us .rounded-top-33 {
    border-top-left-radius: 33px !important;
    border-top-right-radius: 33px !important;
}

#about-us .rounded-bottom-33 {
    border-bottom-left-radius: 33px !important;
    border-bottom-right-radius: 33px !important;
}

#about-us .bg-gray-02 {
    background-color: #e9edf2 !important;
}

#about-us .pt-8 {
    padding-top: 4rem !important;
}

#about-us .pb-lg-6 {
    padding-bottom: 4rem !important;
}

#about-us .pb-4 {
    padding-bottom: 2rem !important;
}

#about-us h2.fs-26 {
    font-size: 26px !important;
}

#about-us h2.fs-sm-44 {
    font-size: 32px !important;
}

#about-us .fs-18 {
    font-size: 15px !important;
}

#about-us .fs-30 {
    font-size: 30px !important;
}

#about-us .fs-16 {
    font-size: 16px !important;
}

#about-us .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

#about-us .box-shadow-lg-5 {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
}

#about-us hr.border-white {
    border-color: rgba(255, 255, 255, 0.15) !important;
}

#about-us .opacity-2 {
    opacity: 0.2 !important;
}

#about-us .mb-10 {
    margin-bottom: 4rem !important;
}

/* OUR PROJECTS SECTION (index.php) */
#our-projects {
    background-color: #ffffff !important;
    padding-top: 4rem !important;
    padding-bottom: 3rem !important;
}

#our-projects .card {
    border-radius: 0px !important;
    overflow: hidden !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#our-projects .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

#our-projects .card-img-top {
    object-fit: cover;
    height: 250px;
    width: 100%;
}

#our-projects .card-body {
    padding: 1rem !important;
	
}

#our-projects .fs-36 {
    font-size: 36px !important;
}

#our-projects .fs-24 {
    font-size: 19px !important;
}

#our-projects a {
    text-decoration: none !important;
}

#our-projects a .card:hover {
    cursor: pointer;
}

/* STATS SECTION (index.php) */
section[style*="background-color: #080c42"] {
    background-color: #080c42 !important;
}

section[style*="background-color: #080c42"] .fs-56 {
    font-size: 56px !important;
}

section[style*="background-color: #080c42"] .fs-20 {
    font-size: 20px !important;
}

section[style*="background-color: #080c42"] .fs-28 {
    font-size: 28px !important;
}

section[style*="background-color: #080c42"] .text-primary {
    color: #ff9800 !important;
}

section[style*="background-color: #080c42"] .py-10 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* TESTIMONIALS SECTION (index.php) */
#testimonials {
    background-color: #f8f9fa !important;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

#testimonials .card {
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
}

#testimonials .card-body {
    padding: 2.5rem !important;
}

#testimonials .rounded-circle {
    border-radius: 50% !important;
    object-fit: cover;
}

#testimonials .box-shadow-lg-5 {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15) !important;
}

#testimonials .text-warning {
    color: #ffc107 !important;
}

#testimonials .fs-14 {
    font-size: 14px !important;
}

#testimonials .fs-16 {
    font-size: 16px !important;
}

#testimonials .fs-18 {
    font-size: 18px !important;
}

#testimonials .fs-20 {
    font-size: 20px !important;
}

#testimonials .fs-36 {
    font-size: 36px !important;
}

/* Slick Slider Custom Dots */
.slick-dots {
    bottom: -30px !important;
}

.slick-dots li button:before {
    font-size: 12px !important;
    color: #080c42 !important;
    opacity: 0.3 !important;
}

.slick-dots li.slick-active button:before {
    color: #ff9800 !important;
    opacity: 1 !important;
}

/* GALLERY SECTION (index.php) */
#gallery {
    background-color: #ffffff !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

#gallery .img-fluid.rounded {
    border-radius: 8px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#gallery .img-fluid.rounded:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

#gallery .box-shadow-sm {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
}

#gallery .fs-36 {
    font-size: 36px !important;
}

#gallery .mt-6 {
    margin-top: 3rem !important;
}

/* CTA / FORM SECTION (index.php) */
#cta-form {
    background-color: #e9edf2 !important;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

#cta-form .card {
    border-radius: 15px !important;
    overflow: hidden !important;
}

#cta-form .card-body {
    padding: 3rem !important;
}

#cta-form .form-control {
    border-radius: 8px !important;
    background-color: #f1f3f5 !important;
    border: none !important;
    padding: 12px 18px !important;
    font-size: 15px !important;
    transition: box-shadow 0.3s ease;
}

#cta-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.25) !important;
    background-color: #ffffff !important;
}

#cta-form .form-control-lg {
    padding: 14px 20px !important;
    font-size: 16px !important;
}

#cta-form label {
    font-weight: 500 !important;
    color: #1a1a2e !important;
    margin-bottom: 6px !important;
}

#cta-form .fs-36 {
    font-size: 36px !important;
}

#cta-form .fs-20 {
    font-size: 20px !important;
}

#cta-form .fs-16 {
    font-size: 16px !important;
}

#cta-form .box-shadow-lg-5 {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
}

/* LEADERSHIP / ABOUT SECTION (index.php) */
#leadership {
    background-color: #ffffff !important;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

#leadership .card {
    border-radius: 15px !important;
    overflow: hidden !important;
}

#leadership .card-body {
    padding: 2.5rem !important;
}

#leadership .fs-36 {
    font-size: 36px !important;
}

#leadership .fs-20 {
    font-size: 20px !important;
}

#leadership .fs-16 {
    font-size: 16px !important;
}

#leadership .box-shadow-lg-6 {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08) !important;
}


/* =========================================================
   ABOUT-US.PHP SPECIFIC STYLES
   ========================================================= */

/* Page Header Banner */
.page-header-banner {
    background: linear-gradient(135deg, #0a0f4a 0%, #080c42 100%) !important;
    position: relative;
    overflow: hidden;
}

.page-header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 152, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-divider {
    height: 4px;
    width: 80px;
    background: #ff9800;
    margin: 15px 0 20px;
}

/* Breadcrumb */
.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-custom .breadcrumb-item a {
    color: #ff9800;
    text-decoration: none;
    transition: 0.2s;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: #ffffff;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: #ffffff;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: ">";
}

/* Special margin class for about page */
.martopbot {
    margin-top: 56px !important;
    padding-bottom: 50px !important;
    color: #ffffff !important;
}

/* Section Backgrounds */
.bg-light-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%) !important;
}

.bg-soft-primary {
    background-color: rgba(8, 12, 66, 0.03) !important;
}

.bg-dark-theme {
    background-color: #080c42 !important;
}

.bg-warm-accent {
    background: linear-gradient(135deg, #fff9f2 0%, #fff3e0 100%) !important;
}

/* Card Enhancements */
.card-enhanced {
    border-radius: 20px !important;
    transition: all 0.3s ease;
    border: none !important;
}

.card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.shadow-premium {
    box-shadow: 0 20px 40px -15px rgba(8, 12, 66, 0.2) !important;
}

.shadow-card {
    box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.1) !important;
}

.rounded-xl {
    border-radius: 20px !important;
}

.rounded-lg {
    border-radius: 16px !important;
}

/* Team Image Circle */
.team-img-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(145deg, #e9edf2, #ffffff);
    box-shadow: 0 15px 35px rgba(8, 12, 66, 0.15);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 65px;
    color: #b0b7c3;
    border: 4px solid #ffffff;
    transition: all 0.3s ease;
}

.team-img-circle:hover {
    box-shadow: 0 20px 45px rgba(8, 12, 66, 0.25);
    transform: scale(1.05);
}

/* Values Icon Circle */
.values-icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(8, 12, 66, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 38px;
    color: #ff9800;
    transition: 0.3s;
}

.values-card:hover .values-icon-circle {
    background: #ff9800;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 152, 0, 0.3);
}

/* Purpose & Culture - Text White */
#purpose-culture .text-white,
#purpose-culture h2,
#purpose-culture p,
#purpose-culture .banner-divider {
    color: #ffffff !important;
}

#purpose-culture .banner-divider {
    background: #ff9800 !important;
}

/* Team Member Cards - Border + Shadow */
.team-member-card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 12px 30px rgba(8, 12, 66, 0.12) !important;
    transition: all 0.3s ease;
    border-radius: 24px !important;
    background: #ffffff;
}

.team-member-card:hover {
    box-shadow: 0 20px 45px rgba(8, 12, 66, 0.2) !important;
    border-color: #ff9800 !important;
}

/* Advisory Cards - Border + Shadow */
.advisory-card {
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 28px rgba(8, 12, 66, 0.10) !important;
    border-radius: 24px !important;
    background: #ffffff;
    padding: 20px 16px;
    transition: all 0.3s ease;
}

.advisory-card:hover {
    box-shadow: 0 18px 40px rgba(8, 12, 66, 0.18) !important;
    border-color: #ff9800 !important;
}

/* Font Size Utilities (About Page) */
.fs-40 {
    font-size: 2.1rem !important;
}

.fs-30 {
    font-size: 1.6rem !important;
}

.fs-24 {
    font-size: 1.3rem !important;
}

.fs-22 {
    font-size: 1.2rem !important;
}

.fs-20 {
    font-size: 1.1rem !important;
}

.display-4 {
    font-size: 2.5rem !important;
}

/* Text Colors */
.text-dark {
    color: #1a1a2e !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-primary {
    color: #ff9800 !important;
}

.text-warning {
    color: #ffc107 !important;
}


/* =========================================================
   PROJECTSDETAIL.PHP SPECIFIC STYLES
   ========================================================= */

/* Project Cards - Border + Box Shadow */
.project-card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 24px !important;
    background: #ffffff !important;
    box-shadow: 0 12px 30px rgba(8, 12, 66, 0.10) !important;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 45px rgba(8, 12, 66, 0.20) !important;
    border-color: #ff9800 !important;
}

.project-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.project-card .card-body {
    padding: 1.5rem 1.25rem 1.5rem !important;
    flex: 1;
}

.project-card .card-title {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #0a0f4a !important;
    margin-bottom: 0.5rem !important;
}

.project-card .card-text {
    font-size: 0.95rem !important;
    color: #5a5a7a !important;
    line-height: 1.6 !important;
}

.project-card .badge-status {
    background: #ff9800 !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 0.75rem !important;
    padding: 0.3rem 0.9rem !important;
    border-radius: 50px !important;
    display: inline-block;
    margin-top: 0.5rem !important;
}


/* =========================================================
   CONTACT-US.PHP / PROPERTY-DETAIL.PHP SPECIFIC STYLES
   ========================================================= */

/* Page Header - Property Detail */
.page-header {
    background: #080c42 !important;
    padding: 165px 0 50px !important;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 50%;
}

/* Section Labels */
.section-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.section-label-dark {
    display: inline-block;
    background: rgba(8, 12, 66, 0.08);
    color: #080c42 !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Highlight Cards - Dark Background */
.highlight-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 15px 18px;
    transition: all 0.3s;
    height: 100%;
}

.highlight-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.highlight-card .hl-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 8px;
}

.highlight-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.highlight-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Highlight Cards - Light Background */
.highlight-card-light {
    background: #ffffff;
    border: 1px solid #eef0f5;
    border-radius: 10px;
    padding: 15px 18px;
    transition: all 0.3s;
    height: 100%;
}

.highlight-card-light:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border-color: #080c42;
}

.highlight-card-light .hl-icon {
    width: 36px;
    height: 36px;
    background: rgba(8, 12, 66, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #080c42;
    margin-bottom: 8px;
}

.highlight-card-light h6 {
    font-size: 14px;
    font-weight: 600;
    color: #080c42;
    margin-bottom: 4px;
}

.highlight-card-light p {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

/* Amenity Items */
.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #eef0f5;
    transition: all 0.3s;
}

.amenity-item:hover {
    border-color: #080c42;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.amenity-item .am-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: rgba(8, 12, 66, 0.06);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #080c42;
}

.amenity-item span {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
}

/* Gallery Images */
.gallery-img {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    aspect-ratio: 4/3;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s;
}

.gallery-img:hover img {
    transform: scale(1.06);
}

/* Location Items */
.location-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-item .loc-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: #ff9800;
    border-radius: 50%;
}

.location-item span {
    color: rgba(255, 255, 255, 0.9);
}

.location-item .loc-dist {
    margin-left: auto;
    font-weight: 600;
    color: #ff9800;
}

/* Feature Cards */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 18px;
    background: #ffffff;
    border-radius: 10px;
    height: 100%;
    border: 1px solid #eef0f5;
}

.feature-card .ft-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(8, 12, 66, 0.06);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #080c42;
}

.feature-card h6 {
    font-size: 14px;
    font-weight: 600;
    color: #080c42;
    margin-bottom: 3px;
}

.feature-card p {
    font-size: 12px;
    color: #666666;
    margin: 0;
}

/* Project Cards (Property Detail - More Projects) */
.project-card-link {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background: #ffffff;
    text-decoration: none;
    display: block;
}

.project-card-link:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.project-card-link img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.project-card-link .pc-body {
    padding: 14px 16px;
}

.project-card-link .pc-body h6 {
    font-size: 14px;
    font-weight: 600;
    color: #080c42;
    margin-bottom: 2px;
}

/* Background Colors */
.bg-gray-02 {
    background-color: #f8f9fa !important;
}


/* =========================================================
   FOOTER (Common)
   ========================================================= */
footer {
    background-color: #ffffff !important;
    border-top: 1px solid #eaeaea !important;
    padding-top: 4rem !important;
    padding-bottom: 2.5rem !important;
}

footer .fs-15 {
    font-size: 15px !important;
}

footer .fs-14 {
    font-size: 14px !important;
}

footer .fs-18 {
    font-size: 18px !important;
}

footer .lh-18 {
    line-height: 1.8 !important;
}

footer .hover-primary:hover {
    color: #ff9800 !important;
    transition: color 0.3s ease;
}

footer ul.list-unstyled li a {
    text-decoration: none !important;
    transition: color 0.3s ease;
}

footer ul.list-unstyled li a:hover {
    color: #ff9800 !important;
}

footer .media {
    align-items: flex-start;
}

footer .media .fal {
    color: #ff9800 !important;
}

footer hr {
    border-color: #eaeaea !important;
}


/* =========================================================
   FLOATING ICONS (Common)
   ========================================================= */
.floating-icons {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    z-index: 1050 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.floating-icons a {
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-size: 28px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
}

.floating-icons a:hover {
    transform: scale(1.1) !important;
}

.floating-icons .bg-success {
    background-color: #25d366 !important;
    color: #ffffff !important;
}

.floating-icons .bg-primary {
    background-color: #ff9800 !important;
    color: #ffffff !important;
}


/* =========================================================
   MOBILE RESPONSIVE (max-width: 767px)
   ========================================================= */
@media (max-width: 767px) {
    /* Mobile No Radius */
    .mobile-no-radius {
        border-radius: 0 !important;
    }

    /* Hero Banner - Mobile */
    #heroBannerCarousel .carousel-item img {
        height: auto !important;
        width: 100% !important;
        object-fit: contain !important;
    }

    /* Hero Overlay - Mobile */
    .hero-overlay {
        position: relative !important;
        height: auto !important;
        background: #080c42 !important;
        padding: 40px 15px !important;
    }
    .hero-overlay h1,
    .hero-overlay p {
        text-shadow: none !important;
    }

    /* Typography - Mobile */
    h1,
    .display-4 {
        font-size: 26px !important;
        line-height: 1.3 !important;
    }
    h2[class*="fs-"] {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    h3[class*="fs-"] {
        font-size: 20px !important;
        line-height: 1.4 !important;
        margin-bottom: 12px !important;
    }
    h4[class*="fs-"] {
        font-size: 18px !important;
    }
    p[class*="fs-"],
    ul[class*="fs-"] {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Mobile Text Small */
    .mobile-text-small {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }

    /* Mobile Heading One Line */
    .mobile-heading-oneline {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    /* Spacing - Mobile */
    .py-12,
    .py-10,
    .pt-10,
    .pb-10 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    .mb-10,
    .mb-9,
    .mb-8 {
        margin-bottom: 2rem !important;
    }
    .mt-10 {
        margin-top: 2rem !important;
    }

    /* Stat Sizes - Mobile */
    h2.fs-56 {
        font-size: 36px !important;
    }

    /* Card Paddings - Mobile */
    .card-body.p-7,
    .card-body.p-6,
    .card-body.p-9 {
        padding: 1.5rem !important;
    }

    /* Buttons Full Width - Mobile */
    .btn-mobile-block {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    /* Header - Mobile */
    .header-padding {
        padding-top: 0px !important;
    }

    /* About Us (index.php) - Mobile */
    #about-us .rounded-top-33 {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
    }
    #about-us .rounded-bottom-33 {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    #about-us h2.fs-sm-44 {
        font-size: 26px !important;
    }
    #about-us .fs-18 {
        font-size: 15px !important;
    }
    #about-us .fs-30 {
        font-size: 22px !important;
    }
    #about-us .mb-10 {
        margin-bottom: 2rem !important;
    }

    /* Our Projects - Mobile */
    #our-projects .card-img-top {
        height: auto !important; 
    }
    #our-projects .fs-36 {
        font-size: 26px !important;
    }
    #our-projects .fs-24 {
        font-size: 20px !important;
    }

    /* Stats - Mobile */
    section[style*="background-color: #080c42"] .fs-56 {
        font-size: 36px !important;
    }
    section[style*="background-color: #080c42"] .fs-20 {
        font-size: 16px !important;
    }
    section[style*="background-color: #080c42"] .fs-28 {
        font-size: 22px !important;
    }
    section[style*="background-color: #080c42"] .py-10 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    /* Testimonials - Mobile */
    #testimonials .card-body {
        padding: 1.5rem !important;
    }
    #testimonials .fs-36 {
        font-size: 26px !important;
    }

    /* Gallery - Mobile */
    #gallery .fs-36 {
        font-size: 26px !important;
    }

    /* CTA Form - Mobile */
    #cta-form .card-body {
        padding: 1.5rem !important;
    }
    #cta-form .fs-36 {
        font-size: 26px !important;
    }

    /* Footer - Mobile */
    footer .pt-10 {
        padding-top: 3rem !important;
    }
    footer .pb-6 {
        padding-bottom: 2rem !important;
    }

    /* ===== ABOUT-US.PHP & PROJECTS.PHP MOBILE SPECIFIC ===== */
    .martopbot {
        margin-top: 0 !important;
        padding-top: 30px !important;
    }

    .team-img-circle {
        width: 140px !important;
        height: 140px !important;
        font-size: 50px !important;
    }

    /* Mobile Dropdown Fix - Opens Below Projects Link */
    .dropdown-menu-custom {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        margin-top: 8px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid #eee !important;
    }
    .dropdown-menu-custom .dropdown-item {
        padding: 12px 20px !important;
    }

    /* About Page Font Sizes - Mobile */
    .fs-40 {
        font-size: 1.8rem !important;
    }
    .fs-30 {
        font-size: 1.4rem !important;
    }
    .fs-24 {
        font-size: 1.2rem !important;
    }
    .fs-22 {
        font-size: 1.1rem !important;
    }
    .fs-20 {
        font-size: 1rem !important;
    }
    .display-4 {
        font-size: 2rem !important;
    }

    /* Page Header Banner - Mobile */
    .page-header-banner {
        padding-top: 4rem !important;
        padding-bottom: 3rem !important;
    }

    /* ===== PROJECTS.PHP MOBILE SPECIFIC ===== */
    .project-card img {
        height: 170px !important;
    }
    .project-card .card-title {
        font-size: 1.1rem !important;
    }
    .project-card .card-text {
        font-size: 0.85rem !important;
    }

    /* ===== CONTACT-US.PHP / PROPERTY-DETAIL MOBILE SPECIFIC ===== */
    .page-header {
        padding: 100px 0 35px !important;
    }
    
    .page-header h1.fs-30 {
        font-size: 22px !important;
    }
    .page-header p.fs-15 {
        font-size: 13px !important;
    }
    .page-header .badge.fs-12 {
        font-size: 10px !important;
    }
    
    .highlight-card,
    .highlight-card-light {
        padding: 12px 14px !important;
    }
    .highlight-card h6,
    .highlight-card-light h6 {
        font-size: 13px !important;
    }
    .highlight-card p,
    .highlight-card-light p {
        font-size: 11px !important;
    }
    
    .amenity-item {
        padding: 8px 12px !important;
    }
    .amenity-item span {
        font-size: 12px !important;
    }
    
    .feature-card {
        padding: 12px 14px !important;
    }
    .feature-card h6 {
        font-size: 13px !important;
    }
    .feature-card p {
        font-size: 11px !important;
    }
    
    .location-item {
        padding: 8px 12px !important;
    }
    .location-item span {
        font-size: 13px !important;
    }
    
    .project-card-link img {
        height: 140px !important;
    }
    .project-card-link .pc-body h6 {
        font-size: 13px !important;
    }
}


/* =========================================================
   EXTRA SMALL SCREENS (max-width: 480px)
   ========================================================= */
@media (max-width: 480px) {
    .main-header .navbar-brand img {
        max-width: 210px !important;
    }

    .floating-icons a {
        width: 48px !important;
        height: 48px !important;
        font-size: 22px !important;
    }

    .btn-lg {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    #cta-form .form-control-lg {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    /* About Page - Extra Small */
    .team-img-circle {
        width: 120px !important;
        height: 120px !important;
        font-size: 40px !important;
    }
    .values-icon-circle {
        width: 70px !important;
        height: 70px !important;
        font-size: 30px !important;
    }
    .fs-40 {
        font-size: 1.6rem !important;
    }

    /* Projects - Extra Small */
    .project-card img {
        height: auto !important;
    }

    /* Property Detail - Extra Small */
    .page-header h1.fs-30 {
        font-size: 20px !important;
    }
}


/* Project Card Styles */
.project-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.project-card .card-body {
    padding: 20px;
}

.project-card .card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f4a;
    margin-bottom: 10px;
}

.project-card .card-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    min-height: 45px;
}

/* Badge Status Styles */
.badge-status {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-completed {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-ongoing {
    background: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.badge-upcoming {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Banner Section */
.page-header-banner {
    background: linear-gradient(135deg, #0a0f4a 0%, #1a237e 100%);
}

.banner-divider {
    width: 80px;
    height: 3px;
    background: #ffc107;
    margin: 15px 0;
}

.bg-light-gradient {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Filter Buttons */
.btn-outline-primary, .btn-outline-success, .btn-outline-info, .btn-outline-warning {
    border-radius: 25px;
    padding: 8px 20px;
}

.btn-primary, .btn-success, .btn-info, .btn-warning {
    border-radius: 25px;
    padding: 8px 20px;
}


/* Project Card Home Hover Effect */
.project-card-home {
    transition: all 0.3s ease;
}

.project-card-home:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.project-card-home img {
    transition: all 0.3s ease;
}

.project-card-home:hover img {
    transform: scale(1.05);
}

/* Gallery Image Hover */
#gallery .img-fluid {
    transition: all 0.3s ease;
}

#gallery .img-fluid:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2) !important;
}


.custom-dots-center .slick-dots{
	    margin-top: 10px !important;
}