/* Pages Style */

.faq-section {
    max-width: 900px;
    margin: 20px 0;
    padding: 10px 20px;
    font-family: 'Segoe UI', 'Poppins', sans-serif;
}

/* ===== Title ===== */
.faq-title {
    text-align: left;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 35px;        
    color: #111;
    position: relative;
}

.faq-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 10px;
}

/* ===== Accordion Card ===== */
.faq-accordion details {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border-radius: 14px;
    margin-bottom: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.35s ease;
}

/* Hover lift + glow */
.faq-accordion details:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(255,152,0,0.18);
}

/* ===== Question ===== */
.faq-accordion summary {
    padding: 20px 60px 20px 26px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    list-style: none;
    color: #111;
    transition: color 0.3s ease;
}

.faq-accordion summary:hover {
    color: #ff9800;
}

/* Remove default arrow */
.faq-accordion summary::-webkit-details-marker {
    display: none;
}

/* ===== Plus / Minus Button ===== */
.faq-accordion summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff9800, #ff5722);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

/* Open state */
.faq-accordion details[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
    box-shadow: 0 6px 18px rgba(255,152,0,0.5);
}

/* ===== Answer ===== */
.faq-accordion p {
    padding: 0 26px 24px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    animation: fadeSlide 0.4s ease;
}

/* ===== Animation ===== */
@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* topbar start */
body {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    /* 🔥 Construction Font */
}

/*fixed btn start*/
   .fixed-buttons {
        position: fixed;
        left: 20px;
        bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 9999;
      }

      .fixed-btn {
        width: 55px;
        height: 55px;
        background: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        transition: 0.3s ease;
        cursor: pointer;
      }

      .fixed-btn img {
        width: 28px;
        height: 28px;
      }

      .fixed-btn:hover {
        transform: scale(1.1);
      }
/*fixed btn end*/

/* TOPBAR MAIN */
.topbar {
    background: #E2AD0D;
    color: #fff;
    height: 40px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.topbar-inner {
    margin: 0 auto;
    padding: 0 10px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT CONTACT */
.topbar-left {
    display: flex;
    gap: 18px;
    align-items: center;
}

.contact-link {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.contact-link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.contact-link i {
    font-size: 15px;
    transition: 0.3s ease-in-out;
}

.contact-link:hover i {
    transform: scale(1.2);
}

/* RIGHT SOCIAL ICONS */
.topbar-right {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social.facebook {
    background: #1877F2;
}

.social.facebook:hover {
    background: #0f63c4;
    box-shadow: 0 0 10px rgba(24, 119, 242, 0.9);
    transform: translateY(-3px);
}

.social.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social.instagram:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 12px rgba(214, 41, 118, 0.9);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 520px) {
    .email-link {
        display: none !important;
    }

    .contact-link,
    .contact-text {
        font-size: 13px;
    }

    .contact-link i {
        font-size: 13px;
    }

    .social {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }
}

/* topbar end */

/* navbar start */
/* 🌿 Navbar */


.navbar {
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 80px;
    display: flex;
    align-items: center;
    font-family: "Montserrat", sans-serif;
}

.navbar-logo {
    height: 80px;
    width: auto;
}

@media (max-width: 576px) {
    .navbar-logo {
        height: 60px;
    }
}

.navbar-brand {
    font-weight: 700;
    font-size: 26px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #0e2a47;
}

/* NAV TEXT */
.navbar-nav .nav-link {
    color: #0e2a47 !important;
    font-weight: 600;
    margin-right: 20px;
    transition: 0.3s ease;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #1d3f6e !important;
    transform: translateY(-2px);
}

/* Attractive Get Estimate Button */
.estimate-btn {
    background: linear-gradient(135deg, #e2ad0d, #c9980b);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.estimate-btn:hover {
    background: linear-gradient(135deg, #c9980b, #b88709);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Dropdown Enhancement */
.dropdown-menu {
    background-color: #ffffff;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.dropdown-item {
    color: #0e2a47;
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #e2ad0d, #c9980b);
    color: #fff !important;
    transform: translateX(5px);
}

.navbar-nav .dropdown-toggle::after {
    color: #0e2a47;
    transition: transform 0.3s ease;
}

/* .nav-item.dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg);
} */

/* Custom Dropdown for Click Open with White Background */
.custom-dropdown {
    background: #ffffff;
    /* White background */
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    min-width: 220px;
    transition: all 0.3s ease;
}

/* Dropdown Items */
.custom-dropdown .dropdown-item {
    padding: 10px 5px;
    margin: 5px 7px;
    border-radius: 8px;
    color: #0e2a47;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Hover effect */
.custom-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #e2ad0d, #c9980b);
    color: #fff !important;
    transform: translateX(0.5px) scale(0.98);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Dropdown toggle arrow */
.nav-item.dropdown .nav-link::after {
    transition: transform 0.3s ease;
}

/* Rotate arrow when dropdown is shown */
.nav-item.dropdown.show .nav-link::after {
    transform: rotate(180deg);
}

/* Mobile adjustments */
@media (max-width: 991px) {
    .custom-dropdown {
        background: #ffffff;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        min-width: 100%;
    }

    .custom-dropdown .dropdown-item {
        margin: 0;
        padding: 15px 20px;
    }
}

/* Sub Dropdown */
.dropdown-submenu {
    position: relative;
}

.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    border-radius: 10px;
    background: #ffffff;
    min-width: 180px;
    padding: 5px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: none;
    z-index: 1000;
}

/* Show on click (Bootstrap adds 'show') */
.dropdown-submenu.show>.sub-dropdown {
    display: block;
}

/* Sub dropdown items */
.sub-dropdown .dropdown-item {
    padding: 10px 10px;
    margin: 3px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* Hover effect */
.sub-dropdown .dropdown-item:hover {
    background: linear-gradient(90deg, #e2ad0d, #c9980b);
    color: #fff !important;
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        height: auto;
        padding: 10px 0;
    }

    .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
    }

    .estimate-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
    }
}

/* Mobile: Center the Estimate Button */
@media (max-width: 768px) {
    .navbar .nav-item {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .estimate-btn {
        display: inline-block;
        margin: 0 auto;
    }
}


/* navbar end */

/* tagline start */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: none;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    animation: fadeInDown 1.2s ease;
    color: #0A1A3C;
    /* Dark blue text */
}

.hero-tagline {
    font-size: 26px;
    font-weight: 600;
    margin-top: 10px;
    font-family: "Montserrat", sans-serif;
    animation: fadeInUp 1.2s ease;
    color: #E2AD0D;
    /* Golden color */
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Font Sizes */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
        /* Tablet & medium screens */
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 30px;
        /* Small mobile */
    }
}

@media (max-width: 420px) {
    .hero-title {
        font-size: 16px;

    }
}

/* Mobile Responsive Font Sizes */
@media (max-width: 768px) {
    .hero-tagline {
        font-size: 20px;

    }
}

@media (max-width: 576px) {
    .hero-tagline {
        font-size: 18px;
        /* Normal mobile */
    }
}

@media (max-width: 420px) {
    .hero-tagline {
        font-size: 16px;
        /* Small mobile */
    }
}

/* tagline end */

/* about index start */
/* Background */
.sec-about-wrapper {
    padding: 30px 0;
    background: #f7f7f7;
}

/* Mobile Responsive Padding */
@media (max-width: 768px) {
    .sec-about-wrapper {
        padding: 20px 0;
    }
}

@media (max-width: 576px) {
    .sec-about-wrapper {
        padding: 15px 0;
    }
}

@media (max-width: 420px) {
    .sec-about-wrapper {
        padding: 10px 0;
    }
}

/* Image */
.sec-about-photo {
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: 0.4s;
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.sec-about-photo:hover {
    transform: scale(1.04);
}

/* Default (Desktop) */
/* Already given */

.sec-about-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    font-family: "Montserrat", sans-serif;
    padding-left: 18px;
    position: relative;
}

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
    .sec-about-heading {
        font-size: 32px;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .sec-about-heading {
        font-size: 28px;
        padding-left: 10px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .sec-about-heading {
        font-size: 27px;
        padding-left: 5px;
    }
}

/* Text */
.sec-about-description {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

/* Button */
.sec-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #e2ad0d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
    margin-top: 25px;
}

.sec-about-btn:hover {
    background-color: #c99707;
    box-shadow: 0 8px 20px rgba(226, 173, 13, 0.35);
    transform: translateY(-4px);
}

/* Button Center */
.sec-btn-box {
    text-align: center;
}

/* about index end */

/* step start */
.work-process-section {
    text-align: center;
    padding: 40px 10px;
    font-family: "Montserrat", sans-serif;
}

.work-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    padding-left: 18px;
    position: relative;
}

.work-subheading {
    font-size: 16px;
    margin-bottom: 35px;
    color: #000000;
}

/* Main Row */
.process-flow-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
}

/* Step Box */
.process-step-box {
    width: 160px;
    flex: 0 0 auto;
    text-align: center;
}

.process-arrow-box {
    width: 70px;
    flex: 0 0 auto;
}

/* Step Circle */
.process-icon-wrapper {
    position: relative;
}

.process-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 15px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    object-fit: contain;
    margin: auto;
}

/* Number Circle */
.process-step-num {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    background: #e2ad0d;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(255, 0, 0, 0.4);
}

.process-step-title {
    font-size: 15px;
    font-weight: 700;
    margin-top: 30px;
}

/* Arrow */
.process-arrow-img {
    width: 80px;
    height: 55px;
    object-fit: contain;
    display: block;
    margin: auto;
    opacity: 0.7;
}

/* MOBILE VERSION */
@media (max-width: 768px) {
    .process-flow-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .process-step-box {
        width: 45%;
        /* 2 per row */
    }

    .process-arrow-box {
        display: none;
        /* Hide arrows */
    }
}

/* step end */

/* index services start */
/* SECTION STYLING */
.premium-section {
    font-family: "Montserrat", sans-serif;
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.premium-section .premium-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    padding-left: 18px;
    position: relative;
}

.premium-section .premium-subtitle {
    font-size: 18px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.premium-section .premium-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.premium-section .premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.premium-section .premium-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
}

.premium-section .premium-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.premium-section .premium-card-text {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

.premium-section .premium-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #e2ad0d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
    margin-top: 15px;
}

.premium-section .premium-btn:hover {
    background-color: #c99707;
    box-shadow: 0 8px 20px rgba(226, 173, 13, 0.35);
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .premium-section .premium-title {
        font-size: 32px;
    }
}

/* index services end */

/* why choose us start */
/* Why Choose Us Section */
.why-choose-section {
    padding: 40px 0;
    background: #ede8e8;
    text-align: center;
}

.why-choose-section .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    padding-left: 18px;
    position: relative;
}

.why-choose-section .section-subtitle {
    font-size: 18px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    opacity: 0;
    /* initially hidden */
    transform: translateY(40px);
    /* start slightly below */
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease-out;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-card i {
    font-size: 50px;
    color: #e2ad0d;
    margin-bottom: 20px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1c1c1c;
}

.feature-card p {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
}

/* why choose us end */

/* project index start */
/* Projects Section */
/* .portfolio-section {
    padding: 40px 0;
    background: #f9f9f9;
    text-align: center;
}

.portfolio-section .portfolio-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    padding-left: 18px;
    position: relative;
}

.portfolio-section .portfolio-subtitle {
    font-size: 18px;
    color: #000000;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.portfolio-filters .filter-btn {
    background: #e2ad0d;
    color: #fff;
    border: none;
    padding: 10px 25px;
    margin: 0 5px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.portfolio-filters .filter-btn:hover,
.portfolio-filters .filter-btn.active {
    background: #c99707;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.portfolio-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 26, 60, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    text-align: center;
    padding: 20px;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.portfolio-overlay p {
    font-size: 24px;
} */

/* project index end */

/* banner index start */
/* Hero Banner Section */
.consult-banner {
    position: relative;
    width: 100%;
    background: linear-gradient(135deg, #0a1a3c, #1b2b50);
    color: #fff;
    overflow: hidden;
    padding: 60px 20px;
    /* Reduced vertical padding from 100px to 60px */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Floating shapes in background */
.consult-banner::before,
.consult-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
    animation: floatShapes 12s infinite alternate;
}

.consult-banner::before {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -50px;
}

.consult-banner::after {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
    animation-duration: 15s;
}

@keyframes floatShapes {
    0% {
        transform: translateY(0) translateX(0);
    }

    100% {
        transform: translateY(25px) translateX(25px);
    }
}

/* Hero content layout */
.consult-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.consult-text {
    flex: 1 1 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInText 1s forwards 0.3s;
}

.consult-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fbe1bf;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInTitle 1s forwards 0.5s;
}

.consult-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSubtitle 1s forwards 0.7s;
}

.consult-btn {
    background: #e2ad0d;
    color: #0a1a3c;
    padding: 15px 50px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInBtn 1s forwards 0.9s;
}

.consult-btn:hover {
    background: #fbe1bf;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    color: #0a1a3c;
}

/* Right illustration */
.consult-image {
    flex: 1 1 200px;
    text-align: center;
}

.consult-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
    animation: floatImage 6s ease-in-out infinite alternate, scaleImage 6s ease-in-out infinite alternate;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-30px);
    }
}

@keyframes scaleImage {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.03);
    }
}

/* Text animations */
@keyframes fadeInText {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInTitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSubtitle {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBtn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media(max-width:1200px) {
    .consult-title {
        font-size: 42px;
    }

    .consult-subtitle {
        font-size: 20px;
    }

    .consult-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
}

@media(max-width:991px) {
    .consult-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .consult-title {
        font-size: 36px;
    }

    .consult-subtitle {
        font-size: 18px;
    }

    .consult-btn {
        padding: 12px 35px;
        font-size: 15px;
    }

    .consult-image img {
        max-width: 95%;
    }
}

@media(max-width:768px) {
    .consult-banner {
        padding: 50px 15px;
    }

    .consult-title {
        font-size: 32px;
    }

    .consult-subtitle {
        font-size: 16px;
    }

    .consult-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@media(max-width:480px) {
    .consult-banner {
        padding: 40px 10px;
    }

    .consult-title {
        font-size: 28px;
    }

    .consult-subtitle {
        font-size: 14px;
    }

    .consult-btn {
        padding: 8px 25px;
        font-size: 13px;
    }
}

/* banner index end */


/* footer start */
/* Footer Styles */
footer {
    background-color: #0d1f3c;
    color: #fff;
    padding: 20px 0;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

footer a:hover {
    color: #f3b23c;
    transform: translateY(-3px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
}

footer .social-icons a {
    margin-right: 15px;
    font-size: 18px;
    transition: 0.3s;
}

footer .social-icons a:hover {
    color: #f3b23c;
    transform: translateY(-3px);
}

@media (max-width: 767px) {
    footer {
        text-align: center;
    }

    footer .social-icons {
        margin-top: 15px;
    }
}

/* footer end */


/* contact start */
/* ===== Animations ===== */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Breadcrumb Banner ===== */
.contact-banner {
    position: relative;
    background: url("images/cr2.jpg") center/cover no-repeat;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: fadeIn 1s ease forwards;
}

.banner-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    animation: fadeIn 1.2s ease forwards;
}

.banner-overlay h1 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    margin: 10px 0;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

.breadcrumb a,
.breadcrumb span {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 90px 0;
    background: #f5f5f5;
}

.contact-heading {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 1s ease forwards;
}

.contact-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    position: relative;
    padding-left: 18px;
}

.contact-heading p {
    font-size: 18px;
    color: #000;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

/* Map */
.contact-map {
    flex: 1 1 48%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 26, 60, 0.15);
    height: 500px;
    background: #fff;
    animation: slideInLeft 1s ease forwards;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Form */
.contact-form {
    flex: 1 1 48%;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(10, 26, 60, 0.15);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 50px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInRight 1s ease forwards;
}

.contact-form h5 {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    color: #0a1a3c;
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0a1a3c;
    font-size: 16px;
}

.input-group textarea+i {
    top: 20px;
    transform: none;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #fff;
    border-radius: 10px;
    font-size: 17px;
    transition: 0.3s;
    outline: none;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #0a1a3c;
    box-shadow: 0 10px 25px rgba(10, 26, 60, 0.3);
}

.input-group textarea {
    resize: none;
    height: 120px;
}

/* Send Button */
.send-btn {
    background: linear-gradient(90deg, #1b2a49, #2c3e5c);
    color: #fff;
    border: none;
    padding: 12px 0;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    transition: 0.3s;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.send-btn:hover {
    background: linear-gradient(90deg, #2c3e5c, #1b2a49);
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(10, 26, 60, 0.3);
}

/* Info Cards */
.info-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 60px;
    text-align: center;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 300px;
    transition: 0.4s ease, transform 0.5s;
    animation: fadeIn 1s ease forwards;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 25px rgba(10, 26, 60, 0.6);
}

.info-card i {
    font-size: 32px;
    color: #0a1a3c;
    margin-bottom: 12px;
    transition: 0.3s;
}

.info-card h6 {
    font-family: "Playfair Display", serif;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
}

.info-card p {
    color: #000;
    margin: 0;
    font-size: 20px;
}


/* Responsive */
@media (max-width:992px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .contact-map,
    .contact-form {
        flex: 1 1 100%;
    }

    .contact-form {
        padding: 35px 25px;
    }
}

/* contact end */

/* why choose us start */

/* Section Styling */
.why-choose-us {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.why-choose-us .section-title {
    font-size: 40px;
    font-weight: 700;
    color: #0d1f3c;
    margin-bottom: 15px;
    text-align: center;
}

.why-choose-us .section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

/* Card Styling */
.why-choose-us .card {
    background-color: #ffffff;
    border: none;
    color: #0d1f3c;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(50px);
}

.why-choose-us .card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.why-choose-us .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-us .card-icon {
    font-size: 40px;
    color: #e2ad0d;
    margin-bottom: 15px;
}

.why-choose-us .card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.why-choose-us .card-text {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

@media (max-width: 991px) {
    .why-choose-us .section-title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .why-choose-us .card {
        text-align: center;
    }
}

/* why choose us end */


/* mission vission start */
/* Mission Section */
.our-mission-section {
    padding: 40px 0;
    background: linear-gradient(to right, #f4f9ff, #ffffff);
    overflow: hidden;
}

.mission-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-60px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.mission-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.mission-content {
    padding-left: 30px;
    transform: translateX(60px);
    opacity: 0;
    animation: fadeInRight 1.2s ease forwards;
}

.mission-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    font-family: "Montserrat", sans-serif;
    padding-left: 18px;
    position: relative;
}

.mission-content p {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

/* Vision Section */
.our-vision-section {
    padding: 10px 0;
    background: #ffffff;
    overflow: hidden;
}

.vision-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(60px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vision-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.vision-content {
    padding-right: 30px;
    transform: translateX(-60px);
    opacity: 0;
    animation: fadeInLeft 1.2s ease forwards;
}

.vision-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    font-family: "Montserrat", sans-serif;
    padding-left: 18px;
    position: relative;
}

.vision-content p {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

/* Animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-60px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes underlineGrow {
    0% {
        width: 0;
    }

    100% {
        width: 60px;
    }
}

/* Responsive */
@media (max-width: 768px) {

    .mission-content,
    .vision-content {
        padding: 0;
        text-align: center;
        margin-top: 20px;
    }

    .mission-content h2,
    .vision-content h2 {
        font-size: 28px;
    }

    .mission-img,
    .vision-img {
        margin: 0 auto;
    }
}

/* mission vission end */

/* about banner start */
.custom-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    background: linear-gradient(90deg,
            rgba(10, 26, 42, 0.9) 0%,
            rgba(226, 173, 13, 0.55) 100%),
        url("images/5.webp") no-repeat center/cover;

    padding: 20px 30px;
    color: white;
    box-sizing: border-box;
    min-height: 110px;
}

.custom-banner h2 {
    font-weight: 600;
    font-size: 1.8rem;
    margin: 0;
}

.custom-banner h2 strong {
    font-weight: 900;
    color: #e2ad0d;
    /* GOLDEN TEXT */
}

/* PREMIUM BUTTON */
.action-btn {
    background: linear-gradient(135deg, #0a1a2a, #112e45);
    color: #e2ad0d;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid rgba(226, 173, 13, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;

    box-shadow: 0 0 12px rgba(226, 173, 13, 0.35),
        inset 0 0 12px rgba(226, 173, 13, 0.2);
    transition: 0.3s ease-in-out;
    backdrop-filter: blur(3px);
}

.action-btn:hover {
    background: #e2ad0d;
    color: #0a1a2a;
    transform: translateY(-3px) scale(1.05);
    border-color: #e2ad0d;
    box-shadow: 0 0 18px rgba(226, 173, 13, 0.7);
}

.action-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2;
    transition: 0.3s ease;
}

.action-btn:hover svg {
    transform: translateX(3px) rotate(15deg);
}

/* Responsive */
@media (max-width: 600px) {
    .custom-banner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .custom-banner h2 {
        font-size: 1.5rem;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
    }
}

/* about banner end */

/* project start */

.portfolio-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.portfolio-title {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
}

.portfolio-subtitle {
    font-size: 18px;
    color: #000;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* FILTER BUTTONS */
.filter-btn {
    background: #e2ad0d;
    color: #fff;
    border: none;
    padding: 10px 25px;
    margin: 0 6px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #c99707;
}

/* PROJECT CARD */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.hide {
    display: none !important;
}

/* IMAGE MODAL */
.image-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.image-modal img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 45px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: #e2ad0d;
}

/* MOBILE BUTTON SIDE-BY-SIDE */
@media (max-width: 576px) {
    .portfolio-filters {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .filter-btn {
        width: auto;
        padding: 8px 12px;
        font-size: 14px;
        margin: 0;
    }
}

/* project end */


/* blog start */


/* Blog Section */
.blog-section {
    padding: 20px 20px;
    background: #f8f8f8;
}

.blog-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.blog-section .section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0a1a3c;
    margin-bottom: 10px;
}

.blog-section .section-title p {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card .content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1c1c1c;
    margin-bottom: 12px;
}

.blog-card p {
    color: #000000;
    font-size: 17px;
    line-height: 1.8;
    margin-top: 20px;
    font-family: "Poppins", sans-serif;
}

.blog-card button {
    padding: 10px 25px;
    margin-top: 15px;
    background: #e2ad0d;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card button:hover {
    background: #c99707;
}

/* Hover Animation */
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.blog-card:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-section .section-title h2 {
        font-size: 36px;
    }

    .blog-section .section-title p {
        font-size: 16px;
    }
}

/* blog end */

/*video banner start */
/* Video Banner */
.banner-section {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2ad0d;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 15, 50, 0.2);
    z-index: 1;
}

.banner-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    padding: 0 15px;
}

.banner-title {
    font-weight: 700;
    font-size: 3rem;
    color: #ffffff;
}

.banner-title .char {
    display: inline-block;
    line-height: 1em;
    opacity: 0;
}

.banner-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0;
}

.banner-btn {
    background: #e2ad0d;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.banner-btn:hover {
    background: #0a1a3c;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-section {
        height: 55vh;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        height: 45vh;
    }

    .banner-title {
        font-size: 1rem;
    }

    .banner-text {
        font-size: 0.9rem;
    }
}

/* video banner end */

/* residential start */
.res-section-wrapper {
    padding: 30px 0;
    background: #f7f7f7;
}

/* Image */
.res-image {
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
    transition: 0.4s;
    height: 420px;
    object-fit: cover;
    width: 100%;
}

.res-image:hover {
    transform: scale(1.04);
}

/* Heading */
.res-heading {
    font-size: 40px;
    font-weight: 700;
    color: #0a1a3c;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px;
}

/* Text */
.res-description {
    color: #000;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: "Poppins", sans-serif;
}

/* Button */
.res-btn {
    display: inline-block;
    padding: 12px 32px;
    background-color: #e2ad0d;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    letter-spacing: 0.5px;
    transition: 0.3s;
    font-family: "Montserrat", sans-serif;
}

.res-btn:hover {
    background-color: #c99707;
    box-shadow: 0 8px 20px rgba(226, 173, 13, 0.35);
    transform: translateY(-4px);
}

/* Center Button Wrapper */
.res-btn-center {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .res-section-wrapper {
        padding: 20px 0;
    }

    .res-heading {
        font-size: 28px;
    }

    .res-description {
        font-size: 16px;
    }

    .res-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .res-section-wrapper {
        padding: 15px 0;
    }

    .res-heading {
        font-size: 24px;
    }

    .res-description {
        font-size: 14px;
    }

    .res-image {
        height: 200px;
    }
}

/* residential end */

