/* ============================================================
   CSS VARIABLES (based on R SQUARE BUILDER logo)
   Color Palette: #1A49A1 (Primary Blue) & #656263 (Secondary Gray)
   ============================================================ */
:root {
    --primary-color: #1A49A1;      /* Primary blue – trust, professionalism */
    --primary-dark: #133A82;       /* Darker blue for hover states */
    --primary-light: #E8EDF8;      /* Light blue for backgrounds */
    --secondary-color: #656263;    /* Secondary gray – modern, elegant */
    --secondary-light: #D5D3D4;    /* Light gray for borders/accents */
    --accent-color: #1A49A1;       /* Accent matches primary */
    --dark-color: #1A1A1A;         /* Almost black – depth */
    --light-color: #F8F7F7;        /* Warm white – clean background */
    --text-color: #333333;         /* Dark text – readability */
    --gradient-primary: linear-gradient(135deg, #1A49A1, #133A82);
    --gradient-secondary: linear-gradient(135deg, #656263, #4A4849);
    --shadow-sm: 0 2px 10px rgba(26, 73, 161, 0.08);
    --shadow-md: 0 5px 30px rgba(26, 73, 161, 0.12);
    --shadow-lg: 0 10px 50px rgba(26, 73, 161, 0.18);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 12px;
}

/* ============================================================
   GLOBAL RESET & BASE
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 73, 161, 0.35);
    background: var(--gradient-primary);
    color: #fff;
}

.btn-primary:focus {
    box-shadow: 0 0 0 3px rgba(26, 73, 161, 0.3);
}

.btn-secondary {
    background: var(--gradient-secondary);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(101, 98, 99, 0.35);
    color: #fff;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: translateY(-3px);
}

.btn-cta {
    padding: 10px 28px;
    font-size: 0.85rem;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 73, 161, 0.4);
    color: #fff;
    background: var(--gradient-primary);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.85rem;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 5px 0;
    border-bottom: 3px solid var(--primary-color);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
    padding: 0;
}

.navbar {
    padding: 8px 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 42px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    padding: 8px 16px !important;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 60%;
}

/* Dropdown */
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius);
    padding: 8px 0;
    min-width: 220px;
    background: #fff;
    margin-top: 8px;
    border-top: 3px solid var(--primary-color);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary-color);
    padding-left: 26px;
}

.dropdown-item:active {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================================
   MOBILE NAVIGATION
   ============================================================ */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 73, 161, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 20px;
        border-radius: var(--border-radius);
        margin-top: 12px;
        box-shadow: var(--shadow-md);
        max-height: 80vh;
        overflow-y: auto;
    }

    .navbar-nav .nav-link {
        padding: 10px 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        box-shadow: none;
        border: none;
        background: var(--light-color);
        border-radius: 8px;
        padding: 0;
        margin: 4px 0;
    }

    .dropdown-item {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .btn-cta {
        display: inline-block;
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .nav-item.ms-lg-3 {
        margin-left: 0 !important;
    }
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.hero-banner {
    min-height: 85vh;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/hero-1.jpg') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 73, 161, 0.92), rgba(19, 58, 130, 0.85));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 24px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 8px;
}

.hero-title span {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
}

.hero-projects {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-tag i {
    color: var(--secondary-color);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-btns .btn {
    padding: 14px 40px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Stats Card */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px 25px;
    max-width: 300px;
    margin-left: auto;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-label.gold {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    padding: 4px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title span {
    color: var(--primary-color);
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-preview .about-img {
    transition: var(--transition);
}

.about-preview .about-img:hover {
    transform: scale(1.02);
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 500;
}

.features-list i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.service-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-color);
}

.service-card i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: inline-block;
    background: rgba(26, 73, 161, 0.06);
    padding: 15px;
    border-radius: 16px;
    transition: var(--transition);
    color: var(--primary-color);
}

.service-card:hover i {
    background: rgba(26, 73, 161, 0.12);
    transform: scale(1.05);
}

.service-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.8;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose {
    background: #fff;
}

.feature-item {
    padding: 20px 15px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    margin-bottom: 10px;
    display: block;
    color: var(--primary-color);
}

.feature-item h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-color);
}

/* ============================================================
   PROJECT CARDS
   ============================================================ */
.project-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.05);
}

.project-info {
    padding: 20px 22px 25px;
}

.project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.project-info h5 {
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark-color);
}

.project-info .location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 12px;
}

.project-info .location i {
    margin-right: 4px;
}

/* ============================================================
   STATISTICS SECTION
   ============================================================ */
.stats-section {
    background: var(--gradient-primary);
    color: #fff;
    padding: 60px 0;
}

.stat-item {
    padding: 10px;
}

.stat-item .counter {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    display: inline-block;
    color: #fff;
}

.stat-item span {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    color: #fff;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.85;
    margin-bottom: 0;
    letter-spacing: 0.5px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    background: var(--light-color);
    padding: 80px 0;
    border-top: 2px solid rgba(26, 73, 161, 0.1);
    border-bottom: 2px solid rgba(26, 73, 161, 0.1);
}

.cta-section h2 {
    color: var(--dark-color);
}

.cta-section .btn {
    margin-top: 10px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px;
    border-top: 3px solid var(--primary-color);
}

.footer-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer h6 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 6px;
}

.footer-contact li {
    list-style: none;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    width: 24px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: var(--transition);
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 30px 0 20px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.btn-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-back-top:hover {
    transform: translateY(-4px) scale(1.05);
    background: var(--gradient-secondary);
    color: #fff;
}

/* ============================================================
   SCROLL ANIMATIONS (AOS-like)
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .hero-banner {
        min-height: 80vh;
    }
}

/* Desktop (992px - 1399px) */
@media (max-width: 1399.98px) {
    .hero-banner {
        min-height: 75vh;
    }
}

/* Tablet (768px - 991px) */
@media (max-width: 991.98px) {
    .section {
        padding: 60px 0;
    }

    .hero-banner {
        min-height: 70vh;
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hero-stats-card {
        max-width: 100%;
        margin: 30px auto 0;
    }

    .stat-row {
        justify-content: center;
    }

    .service-card {
        padding: 25px 20px;
    }

    .stat-item .counter {
        font-size: 2.2rem;
    }
}

/* Mobile (576px - 767px) */
@media (max-width: 767.98px) {
    .section {
        padding: 50px 0;
    }

    .hero-banner {
        min-height: 60vh;
        padding: 90px 0 40px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 5vw, 2.4rem);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .project-tag {
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    .hero-btns .btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-card i {
        font-size: 2.5rem;
        padding: 12px;
    }

    .project-card img {
        height: 180px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stat-item .counter {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.85rem;
    }

    .footer {
        padding: 40px 0 16px;
    }

    .footer-logo {
        height: 38px;
    }

    .btn-back-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

/* Small Mobile (375px - 575px) */
@media (max-width: 575.98px) {
    .hero-banner {
        min-height: 55vh;
        padding: 80px 0 30px;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .project-card img {
        height: 160px;
    }

    .project-info {
        padding: 16px 18px 20px;
    }

    .stat-item .counter {
        font-size: 1.6rem;
    }

    .stat-item p {
        font-size: 0.8rem;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .hero-stats-card {
        padding: 20px 15px;
    }

    .stat-label {
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}

/* Extra Small (320px - 374px) */
@media (max-width: 374.98px) {
    .hero-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .stat-item .counter {
        font-size: 1.4rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-primary-custom {
    background: var(--primary-color);
}

.bg-secondary-custom {
    background: var(--secondary-color);
}

.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.rounded-4 {
    border-radius: var(--border-radius);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-md);
}

/* ============================================================
   GALLERY PAGE SPECIFIC
   ============================================================ */
.gallery-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 73, 161, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item .overlay i {
    font-size: 3rem;
    color: #fff;
}

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-info-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-info-card h6 {
    font-weight: 600;
    color: var(--dark-color);
}

.contact-info-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.contact-form .form-control {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 73, 161, 0.1);
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid {
    border-color: #198754;
}

.contact-form .invalid-feedback {
    font-size: 0.8rem;
    color: #dc3545;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

/* ============================================================
   PROJECTS PAGE FILTER
   ============================================================ */
.project-filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition);
    cursor: pointer;
    margin: 4px;
}

.project-filter-btn:hover,
.project-filter-btn.active {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================================
   PROGRESS BARS (Ongoing Projects)
   ============================================================ */
.progress {
    height: 8px;
    border-radius: 50px;
    background: rgba(26, 73, 161, 0.12);
}

.progress-bar {
    background: var(--gradient-primary);
    border-radius: 50px;
    transition: width 1.5s ease;
}

/* ============================================================
   MODAL LIGHTBOX
   ============================================================ */
.modal-content {
    border: none;
    border-radius: var(--border-radius);
    background: transparent;
}

.modal-body {
    padding: 0;
    position: relative;
}

.modal-body img {
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
}

.modal-close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.modal-nav-btn.prev {
    left: -60px;
}

.modal-nav-btn.next {
    right: -60px;
}

@media (max-width: 767.98px) {
    .modal-nav-btn.prev {
        left: 10px;
    }

    .modal-nav-btn.next {
        right: 10px;
    }

    .modal-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
        background: rgba(0, 0, 0, 0.5);
    }
}
/* ============================================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================================ */

/* Page Hero */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: var(--gradient-primary);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb-item a:hover {
    color: #fff;
}

.page-hero .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Info Cards */
.contact-info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-color);
}

.contact-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 73, 161, 0.08);
    margin-bottom: 15px;
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon-wrapper {
    background: var(--primary-color);
}

.contact-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon-wrapper i {
    color: #fff;
}

.contact-info-card h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-info-card p {
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--text-color);
}

.contact-form .form-control,
.contact-form .form-select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #fff;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 73, 161, 0.1);
}

.contact-form .form-control.is-invalid,
.contact-form .form-select.is-invalid {
    border-color: #dc3545;
}

.contact-form .form-control.is-valid,
.contact-form .form-select.is-valid {
    border-color: #198754;
}

.contact-form .invalid-feedback {
    font-size: 0.8rem;
    color: #dc3545;
    display: none;
}

.contact-form .form-control.is-invalid ~ .invalid-feedback,
.contact-form .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Contact Sidebar */
.contact-info-sidebar {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-info-sidebar h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-benefits li:last-child {
    border-bottom: none;
}

.contact-benefits li i {
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-benefits li strong {
    display: block;
    color: var(--dark-color);
}

.contact-benefits li p {
    margin: 0;
}

.contact-cta-box {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.contact-cta-box h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-cta-box h6 i {
    color: var(--primary-color);
    margin-right: 8px;
}

/* Map Section */
.map-section {
    padding-top: 0;
    padding-bottom: 80px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ============================================================
   CONTACT PAGE RESPONSIVE
   ============================================================ */

@media (max-width: 991.98px) {
    .page-hero {
        padding: 60px 0 40px;
        min-height: 200px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-sidebar {
        padding: 25px;
    }

    .contact-info-card {
        padding: 20px 15px;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0 30px;
        min-height: 180px;
    }

    .page-hero-title {
        font-size: 1.6rem;
    }

    .contact-section .section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-info-sidebar {
        padding: 20px;
        margin-top: 20px;
    }

    .contact-benefits li {
        padding: 12px 0;
    }

    .map-container iframe {
        height: 250px;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: 40px 0 25px;
        min-height: 150px;
    }

    .page-hero-title {
        font-size: 1.4rem;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .contact-info-sidebar {
        padding: 15px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon-wrapper i {
        font-size: 1.4rem;
    }

    .contact-cta-box {
        padding: 15px;
    }

    .map-container iframe {
        height: 200px;
    }
}

/* Form Success Message */
#formSuccess {
    padding: 15px 20px;
    border-radius: 8px;
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

#formSuccess i {
    font-size: 1.2rem;
}
/* ============================================================
   PAGE HERO WITH BACKGROUND IMAGE
   ============================================================ */
.page-hero {
    position: relative;
    padding: 80px 0 60px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    align-items: center;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.664);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb-item a:hover {
    color: #fff;
}

.page-hero .breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   CONTACT MAP WRAPPER
   ============================================================ */
.contact-map-wrapper {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.contact-map-wrapper h4 {
    font-weight: 700;
    color: var(--dark-color);
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-container iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
}

.map-address-box {
    background: var(--light-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

/* ============================================================
   RESPONSIVE - CONTACT PAGE
   ============================================================ */
@media (max-width: 991.98px) {
    .page-hero {
        padding: 60px 0 40px;
        min-height: 220px;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-map-wrapper {
        padding: 20px;
        margin-top: 0;
    }

    .map-container iframe {
        height: 300px;
    }

    .contact-info-card {
        padding: 20px 15px;
    }
}

@media (max-width: 767.98px) {
    .page-hero {
        padding: 50px 0 30px;
        min-height: 180px;
    }

    .page-hero-title {
        font-size: 1.6rem;
    }

    .contact-section .section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    .contact-map-wrapper {
        padding: 15px;
        margin-top: 20px;
    }

    .map-container iframe {
        height: 250px;
    }

    .map-address-box {
        padding: 12px 15px;
    }

    .map-address-box i {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 575.98px) {
    .page-hero {
        padding: 40px 0 25px;
        min-height: 150px;
    }

    .page-hero-title {
        font-size: 1.4rem;
    }

    .contact-form-wrapper {
        padding: 15px;
    }

    .contact-map-wrapper {
        padding: 12px;
    }

    .map-container iframe {
        height: 200px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .contact-icon-wrapper i {
        font-size: 1.4rem;
    }
}
/* ============================================================
   GALLERY PAGE SPECIFIC STYLES (No Tabs/Filters)
   ============================================================ */

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

/* Gallery Cards - Normal Layout */
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--dark-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay-content {
    transform: translateY(0) scale(1);
}

.gallery-overlay-content i {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay-content i {
    transform: rotate(90deg);
}

.gallery-overlay-content h6 {
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.1rem;
}

.gallery-overlay-content .gallery-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

/* Gallery Item Animation */
.gallery-item {
    transition: all 0.4s ease;
}

/* ============================================================
   LIGHTBOX MODAL
   ============================================================ */
#galleryModal .modal-content {
    background: transparent;
    border: none;
}

#galleryModal .modal-body {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

#galleryModal #modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: rotate(90deg);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.modal-nav-btn.prev {
    left: -60px;
}

.modal-nav-btn.next {
    right: -60px;
}

.modal-image-caption {
    position: absolute;
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 28px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

.modal-image-caption .modal-title {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.modal-image-caption .modal-category {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 14px;
    border-radius: 50px;
}

/* ============================================================
   GALLERY RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .gallery-section {
        padding: 60px 0;
    }

    .modal-nav-btn.prev {
        left: 10px;
    }

    .modal-nav-btn.next {
        right: 10px;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #galleryModal .modal-body {
        min-height: 60vh;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .modal-image-caption {
        bottom: -45px;
        padding: 8px 20px;
        gap: 12px;
    }

    .modal-image-caption .modal-title {
        font-size: 0.85rem;
    }

    .modal-image-caption .modal-category {
        font-size: 0.7rem;
        padding: 2px 12px;
    }
}

@media (max-width: 767.98px) {
    .gallery-section {
        padding: 40px 0;
    }

    .gallery-card {
        aspect-ratio: 4/3;
    }

    .gallery-overlay-content i {
        font-size: 2.2rem;
    }

    .gallery-overlay-content h6 {
        font-size: 0.95rem;
    }

    #galleryModal .modal-body {
        min-height: 50vh;
    }

    #galleryModal #modalImage {
        max-height: 70vh;
    }

    .modal-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .modal-image-caption {
        bottom: -40px;
        padding: 6px 16px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
    }

    .modal-image-caption .modal-title {
        font-size: 0.8rem;
    }

    .modal-image-caption .modal-category {
        font-size: 0.65rem;
        padding: 2px 10px;
    }
}

@media (max-width: 575.98px) {
    .gallery-card {
        aspect-ratio: 1/1;
    }

    .gallery-overlay-content i {
        font-size: 1.8rem;
    }

    .gallery-overlay-content h6 {
        font-size: 0.85rem;
    }

    .gallery-overlay-content .gallery-tag {
        font-size: 0.6rem;
        padding: 1px 10px;
    }

    #galleryModal .modal-body {
        min-height: 40vh;
    }

    #galleryModal #modalImage {
        max-height: 60vh;
    }

    .modal-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .modal-image-caption {
        bottom: -35px;
        padding: 5px 12px;
        gap: 6px;
    }

    .modal-image-caption .modal-title {
        font-size: 0.7rem;
    }

    .modal-image-caption .modal-category {
        font-size: 0.6rem;
        padding: 1px 8px;
    }
}
/* ============================================================
   UPCOMING PROJECTS PAGE
   ============================================================ */

/* Page Hero Sub Text */
.hero-sub-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 10px;
}

/* Upcoming Projects Section */
.upcoming-projects-section {
    padding: 80px 0;
}

/* Project Cards */
.project-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.08);
}

/* Coming Soon Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-coming {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Project Overlay - VIEW PLAN */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    cursor: pointer;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay-content {
    text-align: center;
    color: #fff;
    transform: translateY(20px) scale(0.9);
    transition: var(--transition);
}

.project-card:hover .project-overlay-content {
    transform: translateY(0) scale(1);
}

.project-overlay-content i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 8px;
    color: #fff;
}

.project-overlay-content span {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Project Info */
.project-info {
    padding: 18px 20px 20px;
}

.project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.project-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.project-location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 4px;
}

.project-location i {
    margin-right: 4px;
}

.project-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-price i {
    margin-right: 4px;
}

.project-footer .btn {
    width: 100%;
    font-weight: 500;
    padding: 8px;
}

/* ============================================================
   MADURAM ENCLAVE SECTION
   ============================================================ */
.maduram-section {
    padding: 60px 0;
    background: var(--light-color);
}

.maduram-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.maduram-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.maduram-image-wrapper:hover img {
    transform: scale(1.03);
}

.maduram-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.maduram-features {
    margin-top: 20px;
}

.maduram-features li {
    padding: 8px 0;
    font-weight: 500;
}

.maduram-features li i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* ============================================================
   PROJECT MODAL
   ============================================================ */
#projectModal .modal-content {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

#projectModal .modal-header {
    border-bottom: 2px solid var(--primary-color);
    padding: 18px 24px;
}

#projectModal .modal-header .modal-title {
    font-weight: 700;
    color: var(--dark-color);
}

#projectModal .modal-body {
    padding: 24px;
}

#projectModal .modal-body img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

#projectModal .project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
}

#projectModal .project-price {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* ============================================================
   IMAGE LIGHTBOX MODAL
   ============================================================ */
#imageModal .modal-content {
    background: transparent;
    border: none;
}

#imageModal .modal-body {
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

#imageModal #modalImage {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: rotate(90deg);
}

.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    z-index: 10;
}

.modal-nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.modal-nav-btn.prev {
    left: -60px;
}

.modal-nav-btn.next {
    right: -60px;
}

.modal-image-caption {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.95rem;
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 24px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .upcoming-projects-section {
        padding: 60px 0;
    }

    .maduram-section {
        padding: 40px 0;
    }

    .maduram-image-wrapper img {
        height: 300px;
    }

    .modal-nav-btn.prev {
        left: 10px;
    }

    .modal-nav-btn.next {
        right: 10px;
    }

    .modal-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    #imageModal .modal-body {
        min-height: 60vh;
    }

    .modal-close-btn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        background: rgba(0, 0, 0, 0.5);
    }

    #projectModal .modal-body img {
        height: 220px;
    }
}

@media (max-width: 767.98px) {
    .upcoming-projects-section {
        padding: 40px 0;
    }

    .project-image-wrapper {
        aspect-ratio: 4/3;
    }

    .project-overlay-content i {
        font-size: 2rem;
    }

    .project-overlay-content span {
        font-size: 0.8rem;
    }

    .maduram-section {
        padding: 30px 0;
    }

    .maduram-image-wrapper img {
        height: 220px;
        margin-bottom: 20px;
    }

    .modal-image-caption {
        bottom: -40px;
        font-size: 0.8rem;
        padding: 6px 18px;
        white-space: normal;
    }

    #imageModal .modal-body {
        min-height: 50vh;
    }

    #imageModal #modalImage {
        max-height: 70vh;
    }

    #projectModal .modal-body {
        padding: 16px;
    }

    #projectModal .modal-body img {
        height: 180px;
    }

    #projectModal .modal-header {
        padding: 14px 18px;
    }
}

@media (max-width: 575.98px) {
    .project-image-wrapper {
        aspect-ratio: 1/1;
    }

    .badge-coming {
        font-size: 0.6rem;
        padding: 3px 12px;
    }

    .project-info {
        padding: 14px 16px 16px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-price {
        font-size: 0.85rem;
    }

    .maduram-image-wrapper img {
        height: 180px;
    }

    .modal-image-caption {
        bottom: -35px;
        font-size: 0.7rem;
        padding: 4px 14px;
    }

    #imageModal .modal-body {
        min-height: 40vh;
    }

    #imageModal #modalImage {
        max-height: 60vh;
    }

    .modal-nav-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    #projectModal .modal-body img {
        height: 150px;
    }
}
/* ============================================================
   MADURAM ENCLAVE - GALLERY SECTION
   ============================================================ */
.maduram-section {
    padding: 80px 0;
    background: var(--light-color);
}

/* Maduram Gallery Items */
.maduram-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--dark-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.maduram-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.maduram-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.maduram-gallery-item:hover img {
    transform: scale(1.08);
}

.maduram-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.75);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    gap: 8px;
}

.maduram-gallery-item:hover .maduram-gallery-overlay {
    opacity: 1;
}

.maduram-gallery-overlay i {
    font-size: 2.5rem;
    color: #fff;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
}

.maduram-gallery-item:hover .maduram-gallery-overlay i {
    transform: translateY(0) scale(1);
}

.maduram-gallery-overlay span {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.05s;
}

.maduram-gallery-item:hover .maduram-gallery-overlay span {
    transform: translateY(0);
}

/* Maduram Gallery Responsive */
@media (max-width: 991.98px) {
    .maduram-section {
        padding: 60px 0;
    }

    .maduram-gallery-item {
        aspect-ratio: 4/3;
    }

    .maduram-gallery-overlay i {
        font-size: 2rem;
    }

    .maduram-gallery-overlay span {
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .maduram-section {
        padding: 40px 0;
    }

    .maduram-gallery-item {
        aspect-ratio: 4/3;
    }

    .maduram-gallery-overlay i {
        font-size: 1.8rem;
    }

    .maduram-gallery-overlay span {
        font-size: 0.75rem;
    }

    .maduram-section .btn-lg {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .maduram-section {
        padding: 30px 0;
    }

    .maduram-gallery-item {
        aspect-ratio: 1/1;
    }

    .maduram-gallery-overlay i {
        font-size: 1.5rem;
    }

    .maduram-gallery-overlay span {
        font-size: 0.7rem;
    }

    .maduram-section .btn-lg {
        padding: 10px 24px;
        font-size: 0.8rem;
    }
}
/* ============================================================
   UPCOMING PROJECTS - UPDATED
   ============================================================ */

.upcoming-projects-section {
    padding: 80px 0;
}

/* Project Cards */
.project-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.05);
}

/* Coming Soon Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-coming {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Project Info */
.project-info {
    padding: 18px 20px 20px;
}

.project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.project-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.project-location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 4px;
}

.project-location i {
    margin-right: 4px;
}

.project-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-price i {
    margin-right: 4px;
}

.project-footer .btn {
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.project-footer .btn i {
    font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .upcoming-projects-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .upcoming-projects-section {
        padding: 40px 0;
    }

    .project-image-wrapper {
        aspect-ratio: 4/3;
    }

    .project-info {
        padding: 14px 16px 16px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-price {
        font-size: 0.85rem;
    }

    .project-footer .btn {
        font-size: 0.7rem;
        padding: 8px;
    }
}

@media (max-width: 575.98px) {
    .project-image-wrapper {
        aspect-ratio: 1/1;
    }

    .badge-coming {
        font-size: 0.6rem;
        padding: 3px 12px;
    }

    .project-category {
        font-size: 0.6rem;
        padding: 2px 10px;
    }

    .project-title {
        font-size: 0.95rem;
    }
}
/* ============================================================
   COMPLETED PROJECTS PAGE
   ============================================================ */

.completed-projects-section {
    padding: 80px 0;
}

.completed-gallery-section {
    padding: 60px 0;
    background: var(--light-color);
}

/* Project Cards - Completed */
.project-card.completed-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card.completed-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card.completed-card:hover .project-image-wrapper img {
    transform: scale(1.05);
}

/* Completed Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-completed {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Project Info */
.project-info {
    padding: 18px 20px 20px;
}

.project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.project-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.project-location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2px;
}

.project-location i {
    margin-right: 4px;
}

.project-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-price i {
    margin-right: 4px;
}

.project-footer .btn {
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.5px;
}

.project-footer .btn i {
    font-size: 0.9rem;
}

/* ============================================================
   COMPLETED PROJECTS GALLERY THUMBNAILS
   ============================================================ */
.gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    background: var(--dark-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    padding: 20px;
}

.gallery-thumb:hover .gallery-thumb-overlay {
    opacity: 1;
}

.gallery-thumb-overlay span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-thumb-overlay .btn-light {
    padding: 6px 18px;
    font-weight: 500;
    font-size: 0.8rem;
}

.gallery-thumb-overlay .btn-light:hover {
    background: var(--primary-color);
    color: #fff;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .completed-projects-section {
        padding: 60px 0;
    }

    .completed-gallery-section {
        padding: 40px 0;
    }
}

@media (max-width: 767.98px) {
    .completed-projects-section {
        padding: 40px 0;
    }

    .completed-gallery-section {
        padding: 30px 0;
    }

    .project-image-wrapper {
        aspect-ratio: 4/3;
    }

    .project-info {
        padding: 14px 16px 16px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-price {
        font-size: 1rem;
    }

    .project-footer .btn {
        font-size: 0.8rem;
        padding: 8px;
    }

    .gallery-thumb {
        aspect-ratio: 4/3;
    }

    .gallery-thumb-overlay span {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .project-image-wrapper {
        aspect-raitio: 1/1;
    }

    .badge-completed {
        font-size: 0.6rem;
        padding: 3px 12px;
    }

    .project-category {
        font-size: 0.6rem;
        padding: 2px 10px;
    }

    .project-title {
        font-size: 0.95rem;
    }

    .project-price {
        font-size: 0.9rem;
    }

    .gallery-thumb {
        aspect-ratio: 1/1;
    }

    .gallery-thumb-overlay span {
        font-size: 0.75rem;
    }

    .gallery-thumb-overlay .btn-light {
        font-size: 0.7rem;
        padding: 4px 12px;
    }
}
/* ============================================================
   ONGOING PROJECTS PAGE
   ============================================================ */

.ongoing-projects-section {
    padding: 80px 0;
}

/* Project Cards - Ongoing */
.project-card.ongoing-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.project-card.ongoing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.project-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card.ongoing-card:hover .project-image-wrapper img {
    transform: scale(1.05);
}

/* Ongoing Badge */
.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-ongoing {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Project Info */
.project-info {
    padding: 18px 20px 20px;
}

.project-category {
    display: inline-block;
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 2px 14px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.project-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2px;
}

.project-location {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2px;
}

.project-location i {
    margin-right: 4px;
}

.project-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.project-price i {
    margin-right: 4px;
}

.project-footer .btn {
    font-weight: 600;
    padding: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.project-footer .btn i {
    font-size: 0.9rem;
}

/* Single Common VIEW PLAN Button */
.view-plan-btn {
    padding: 14px 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: var(--transition);
}

.view-plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 73, 161, 0.35);
}

.view-plan-btn i {
    font-size: 1.2rem;
}

/* ============================================================
   ROYAL PARADISE SECTION
   ============================================================ */
.royal-paradise-section {
    padding: 60px 0;
    background: var(--light-color);
}

.royal-paradise-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.royal-paradise-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.royal-paradise-image-wrapper:hover img {
    transform: scale(1.03);
}

.royal-paradise-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.royal-paradise-features {
    margin-top: 20px;
}

.royal-paradise-features li {
    padding: 8px 0;
    font-weight: 500;
}

.royal-paradise-features li i {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .ongoing-projects-section {
        padding: 60px 0;
    }

    .royal-paradise-section {
        padding: 40px 0;
    }

    .royal-paradise-image-wrapper img {
        height: 300px;
    }

    .view-plan-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 767.98px) {
    .ongoing-projects-section {
        padding: 40px 0;
    }

    .royal-paradise-section {
        padding: 30px 0;
    }

    .project-image-wrapper {
        aspect-ratio: 4/3;
    }

    .project-info {
        padding: 14px 16px 16px;
    }

    .project-title {
        font-size: 1rem;
    }

    .project-price {
        font-size: 0.85rem;
    }

    .project-footer .btn {
        font-size: 0.7rem;
        padding: 8px;
    }

    .royal-paradise-image-wrapper img {
        height: 220px;
        margin-bottom: 20px;
    }

    .view-plan-btn {
        padding: 10px 30px;
        font-size: 0.8rem;
    }

    .royal-paradise-features li {
        padding: 6px 0;
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .project-image-wrapper {
        aspect-ratio: 1/1;
    }

    .badge-ongoing {
        font-size: 0.6rem;
        padding: 3px 12px;
    }

    .project-category {
        font-size: 0.6rem;
        padding: 2px 10px;
    }

    .project-title {
        font-size: 0.95rem;
    }

    .project-price {
        font-size: 0.8rem;
    }

    .project-footer .btn {
        font-size: 0.65rem;
        padding: 6px;
    }

    .royal-paradise-image-wrapper img {
        height: 180px;
    }

    .royal-paradise-badge {
        padding: 4px 16px;
        font-size: 0.65rem;
    }

    .view-plan-btn {
        padding: 10px 24px;
        font-size: 0.75rem;
        width: 100%;
    }
}
/* ============================================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================================ */

/* About Us Section */
.about-us-section {
    padding: 80px 0;
}

.about-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
}

.about-stats .stat-label {
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
    font-weight: 500;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.about-image-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(26, 73, 161, 0.3);
}

/* Mission & Vision */
.mission-vision-section {
    padding: 60px 0;
    background: var(--light-color);
}

.mission-card,
.vision-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.mission-icon,
.vision-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 73, 161, 0.08);
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.mission-card:hover .mission-icon,
.vision-card:hover .vision-icon {
    background: var(--primary-color);
    color: #fff;
}

.mission-card h3,
.vision-card h3 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.mission-card p,
.vision-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 80px 0;
}

.why-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--primary-color);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 73, 161, 0.06);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary-color);
    color: #fff;
}

.why-card h5 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
    line-height: 1.7;
}

/* R Square CTA Section */
.rsquare-cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: #fff;
}

.rsquare-cta-section .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.rsquare-cta-section .section-title {
    color: #fff;
}

.rsquare-cta-section .section-title span {
    color: #ffc107;
}

.rsquare-cta-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.rsquare-cta-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.rsquare-cta-image:hover img {
    transform: scale(1.03);
}

.rsquare-cta-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-gold {
    background: var(--primary-light);
    color: #000;
    border: none;
    padding: 14px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.4);
    color: #f1ecec;
}

/* Let's Talk Section */
.lets-talk-section {
    padding: 80px 0;
    background: var(--light-color);
}

.lets-talk-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .about-us-section {
        padding: 60px 0;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .mission-vision-section {
        padding: 40px 0;
    }

    .why-choose-us-section {
        padding: 60px 0;
    }

    .rsquare-cta-section {
        padding: 60px 0;
    }

    .lets-talk-section {
        padding: 60px 0;
    }

    .about-stats .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .about-us-section {
        padding: 40px 0;
    }

    .about-image-wrapper img {
        height: 250px;
        margin-top: 20px;
    }

    .about-image-badge {
        bottom: 10px;
        left: 10px;
        padding: 4px 16px;
        font-size: 0.7rem;
    }

    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }

    .why-choose-us-section {
        padding: 40px 0;
    }

    .why-card {
        padding: 20px 18px;
    }

    .rsquare-cta-section {
        padding: 40px 0;
    }

    .rsquare-cta-image img {
        height: 200px;
        margin-top: 20px;
    }

    .lets-talk-section {
        padding: 40px 0;
    }

    .about-stats .stat-number {
        font-size: 1.5rem;
    }

    .about-stats .stat-label {
        font-size: 0.75rem;
    }

    .btn-gold {
        padding: 10px 28px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .about-image-wrapper img {
        height: 200px;
    }

    .mission-icon,
    .vision-icon {
        width: 56px;
        height: 56px;
        font-size: 1.6rem;
    }

    .mission-card h3,
    .vision-card h3 {
        font-size: 1.2rem;
    }

    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .why-card h5 {
        font-size: 1rem;
    }

    .rsquare-cta-image img {
        height: 160px;
    }

    .rsquare-cta-badge {
        bottom: 10px;
        right: 10px;
        padding: 4px 14px;
        font-size: 0.65rem;
    }
}
/* ============================================================
   HOME PAGE SPECIFIC STYLES
   ============================================================ */

/* Statistics Banner */
.stats-banner {
    padding: 40px 0;
    background: var(--light-color);
    border-bottom: 2px solid rgba(26, 73, 161, 0.08);
}

.stat-banner-item .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1.2;
}

.stat-banner-item p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 0;
}

/* About Text */
.about-text {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Gallery Preview */
.gallery-preview {
    padding: 80px 0;
    background: #fff;
}

.gallery-preview .gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-preview .gallery-thumb:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.gallery-preview .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-preview .gallery-thumb:hover img {
    transform: scale(1.08);
}

.gallery-preview .gallery-thumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 73, 161, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    gap: 8px;
}

.gallery-preview .gallery-thumb:hover .gallery-thumb-overlay {
    opacity: 1;
}

.gallery-preview .gallery-thumb-overlay i {
    font-size: 2.5rem;
    color: #fff;
    transform: translateY(20px) scale(0.8);
    transition: var(--transition);
}

.gallery-preview .gallery-thumb:hover .gallery-thumb-overlay i {
    transform: translateY(0) scale(1);
}

.gallery-preview .gallery-thumb-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-preview .gallery-thumb:hover .gallery-thumb-overlay span {
    transform: translateY(0);
}

/* Selling Section */
.selling-section {
    padding: 80px 0;
    background: var(--light-color);
}

.selling-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.selling-wrapper .section-tag {
    background: rgba(26, 73, 161, 0.08);
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    margin-bottom: 12px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 1rem;
    margin-right: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h6 {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .stats-banner {
        padding: 30px 0;
    }

    .stat-banner-item .stat-number {
        font-size: 2rem;
    }

    .gallery-preview {
        padding: 60px 0;
    }

    .selling-section {
        padding: 60px 0;
    }

    .testimonials-section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    .stats-banner {
        padding: 20px 0;
    }

    .stat-banner-item .stat-number {
        font-size: 1.6rem;
    }

    .stat-banner-item p {
        font-size: 0.8rem;
    }

    .gallery-preview {
        padding: 40px 0;
    }

    .selling-section {
        padding: 40px 0;
    }

    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 20px 18px;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .stat-banner-item .stat-number {
        font-size: 1.4rem;
    }

    .gallery-preview .gallery-thumb {
        aspect-ratio: 1/1;
    }

    .gallery-preview .gallery-thumb-overlay i {
        font-size: 2rem;
    }

    .gallery-preview .gallery-thumb-overlay span {
        font-size: 0.75rem;
    }

    .testimonial-rating i {
        font-size: 0.85rem;
    }
}
/* ============================================================
   HERO SLIDER - WITHOUT TEXT
   ============================================================ */
.hero-slider-simple .carousel-item {
    height: 700px;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slider-simple .carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.096);
    z-index: 1;
}

.hero-slider-simple .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 6px;
}

.hero-slider-simple .carousel-indicators button.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hero-slider-simple .carousel-control-prev,
.hero-slider-simple .carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-slider-simple .carousel-control-prev:hover,
.hero-slider-simple .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.hero-slider-simple .carousel-control-prev {
    left: 20px;
}

.hero-slider-simple .carousel-control-next {
    right: 20px;
}

/* ============================================================
   PROJECT TABS
   ============================================================ */
.project-tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.project-tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.project-tab-btn:hover,
.project-tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 73, 161, 0.3);
}

.project-grid {
    display: none;
    animation: fadeIn 0.5s ease;
}

.project-grid.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Project Badge on Cards */
.project-badge-tab {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.badge-ongoing-tab {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-completed-tab {
    display: inline-block;
    background: #28a745;
    color: #fff;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-upcoming-tab {
    display: inline-block;
    background: #17a2b8;
    color: #fff;
    padding: 3px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card {
    position: relative;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .hero-slider-simple .carousel-item {
        height: 550px;
        min-height: 450px;
    }

    .project-tab-btn {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-simple .carousel-item {
        height: 450px;
        min-height: 350px;
    }

    .hero-slider-simple .carousel-control-prev,
    .hero-slider-simple .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .project-tab-wrapper {
        gap: 8px;
    }

    .project-tab-btn {
        padding: 6px 16px;
        font-size: 0.75rem;
        border-width: 1.5px;
    }
}

@media (max-width: 575.98px) {
    .hero-slider-simple .carousel-item {
        height: 350px;
        min-height: 280px;
    }

    .hero-slider-simple .carousel-control-prev {
        left: 10px;
    }

    .hero-slider-simple .carousel-control-next {
        right: 10px;
    }

    .hero-slider-simple .carousel-control-prev,
    .hero-slider-simple .carousel-control-next {
        width: 32px;
        height: 32px;
    }

    .project-tab-btn {
        padding: 5px 12px;
        font-size: 0.65rem;
    }
}
/* ============================================================
   SELLING SECTION - 3 IMAGES
   ============================================================ */
.selling-section {
    padding: 80px 0;
    background: var(--light-color);
}

.selling-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: pointer;
}

.selling-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.selling-card img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: var(--transition);
}

.selling-card:hover img {
    transform: scale(1.08);
}

.selling-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 30px 20px 20px;
    color: #fff;
    transition: var(--transition);
}

.selling-card:hover .selling-overlay {
    padding-bottom: 25px;
}

.selling-overlay .selling-badge {
    display: inline-block;
    background: #ffc107;
    color: #000;
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.selling-overlay h5 {
    font-weight: 600;
    margin-bottom: 2px;
    color: #fff;
}

.selling-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.selling-overlay .btn-gold {
    background: #ffc107;
    color: #000;
    border: none;
    padding: 6px 20px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.selling-overlay .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    color: #000;
}

/* ============================================================
   RESPONSIVE - SELLING SECTION
   ============================================================ */
@media (max-width: 991.98px) {
    .selling-section {
        padding: 60px 0;
    }

    .selling-card {
        aspect-ratio: 4/3;
    }

    .selling-overlay h5 {
        font-size: 1rem;
    }

    .selling-overlay p {
        font-size: 0.85rem;
    }
}

@media (max-width: 767.98px) {
    .selling-section {
        padding: 40px 0;
    }

    .selling-card {
        aspect-ratio: 4/3;
    }

    .selling-overlay {
        padding: 20px 15px 15px;
    }

    .selling-overlay h5 {
        font-size: 0.95rem;
    }

    .selling-overlay p {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }

    .selling-overlay .btn-gold {
        padding: 4px 14px;
        font-size: 0.7rem;
    }
}

@media (max-width: 575.98px) {
    .selling-section {
        padding: 30px 0;
    }

    .selling-card {
        aspect-ratio: 1/1;
    }

    .selling-overlay {
        padding: 15px 12px 12px;
    }

    .selling-overlay .selling-badge {
        font-size: 0.55rem;
        padding: 1px 10px;
    }

    .selling-overlay h5 {
        font-size: 0.85rem;
        margin-bottom: 1px;
    }

    .selling-overlay p {
        font-size: 0.7rem;
        margin-bottom: 4px;
    }

    .selling-overlay .btn-gold {
        padding: 3px 12px;
        font-size: 0.65rem;
    }
}
/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-section {
    padding: 80px 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: var(--light-color);
}

.thankyou-wrapper {
    background: #fff;
    padding: 60px 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

/* Thank You Icon */
.thankyou-icon {
    margin-bottom: 30px;
}

.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(26, 73, 161, 0.08);
    border: 3px solid var(--primary-color);
    animation: pulse-circle 2s ease-in-out infinite;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(26, 73, 161, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(26, 73, 161, 0);
    }
}

.icon-circle i {
    font-size: 3.5rem;
    color: var(--primary-color);
}

/* Thank You Titles */
.thankyou-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.thankyou-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Thank You Message */
.thankyou-message {
    max-width: 500px;
    margin: 0 auto 30px;
}

.thankyou-message p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 8px;
}

.thankyou-message strong {
    color: var(--primary-color);
}

/* Redirect Countdown */
.redirect-countdown {
    max-width: 400px;
    margin: 0 auto;
}

.countdown-text {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.countdown-text a {
    color: var(--primary-color);
    font-weight: 600;
}

.countdown-number {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 30px;
}

.redirect-progress {
    height: 4px;
    border-radius: 4px;
    background: rgba(26, 73, 161, 0.12);
}

.redirect-progress .progress-bar {
    background: var(--gradient-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease;
}

/* Thank You Buttons */
.thankyou-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

/* ============================================================
   RESPONSIVE - THANK YOU PAGE
   ============================================================ */
@media (max-width: 991.98px) {
    .thankyou-section {
        padding: 60px 0;
        min-height: 60vh;
    }

    .thankyou-wrapper {
        padding: 40px 30px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle i {
        font-size: 2.8rem;
    }
}

@media (max-width: 767.98px) {
    .thankyou-section {
        padding: 40px 0;
        min-height: 50vh;
    }

    .thankyou-wrapper {
        padding: 30px 20px;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle i {
        font-size: 2.2rem;
    }

    .thankyou-message p {
        font-size: 0.9rem;
    }

    .countdown-text {
        font-size: 0.85rem;
    }

    .thankyou-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .thankyou-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .thankyou-buttons .ms-2 {
        margin-left: 0 !important;
    }
}

@media (max-width: 575.98px) {
    .thankyou-wrapper {
        padding: 20px 15px;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle i {
        font-size: 1.8rem;
    }

    .thankyou-subtitle {
        font-size: 0.9rem;
    }

    .thankyou-message p {
        font-size: 0.85rem;
    }

    .countdown-text {
        font-size: 0.8rem;
    }

    .countdown-number {
        font-size: 1.1rem;
        min-width: 24px;
    }

    .thankyou-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}