/* =========================================
   Variables & Reset
   ========================================= */
:root {
    --c-dark: #2C4C3B;
    /* Deep Forest Green */
    --c-darker: #1A3125;
    /* Darker Forest Green */
    --c-gold: #D4A373;
    /* Warm Beige / Muted Terracotta */
    --c-gold-hover: #C58F58;
    --c-white: #ffffff;
    --c-beige: #F4F1EA;
    /* Soft Warm Beige background */
    --c-text-dark: #2A363B;
    --c-text-light: #5A6960;
    --c-text-grey: #9FAAA3;

    --font-head: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--c-text-light);
    line-height: 1.6;
    background-color: var(--c-white);
    overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    color: var(--c-dark);
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding-top: 30px;
    padding-bottom: 30px;
}

.text-center {
    text-align: center;
}

.bg-dark {
    background-color: var(--c-dark);
    color: var(--c-white);
}

.bg-clr {
    background-color: #e7e7e7;
}

.bg-beige {
    background-color: #e5e5e5;
}

.bg-gold {
    background-color: var(--c-gold);
    color: var(--c-white);
}

.text-white {
    color: var(--c-white) !important;
}


/* Colorful Subtitle Badges */
.subtitle-badge {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
    width: max-content;
    max-width: max-content;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.badge-gold {
    color: #856404;
    background-color: #fff3cd;
}

.badge-blue {
    color: #004085;
    background-color: #cce5ff;
}

.badge-green {
    color: #155724;
    background-color: #d4edda;
}

.badge-purple {
    color: #4b3294;
    background-color: #e2d9f3;
}

.badge-orange {
    color: #8a4103;
    background-color: #ffe5cc;
}

.badge-pink {
    color: #94215f;
    background-color: #fce1f0;
}


.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-gold {
    background-color: var(--c-gold);
    color: var(--c-white);
}

.btn-gold:hover { background-color: var(--c-dark) !important; color: var(--c-white) !important; }

.btn-dark {
    background-color: var(--c-dark);
    color: var(--c-white);
}

.btn-dark:hover { background-color: var(--c-gold) !important; color: var(--c-white) !important; }

.btn-dark-small {
    background-color: var(--c-dark);
    color: var(--c-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
}

/* Placeholders */
.placeholder-img {
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

.placeholder-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(45deg, #d5d5d5 0, #d5d5d5 10px, #e0e0e0 10px, #e0e0e0 20px);
    opacity: 0.5;
}

/* ================== 1. Header ================== */
.top-bar {
    background-image: url('../img/Home/header-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 4px;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.5);
    padding: 8px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--c-beige);
    color: var(--c-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.1rem;
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-text .label {
    color: #666;
    font-size: 0.8rem;
    font-weight: 500;
}

.contact-text .value {
    color: var(--c-dark);
    font-size: 1.05rem;
    font-weight: 500;
    font-family: var(--font-head);
    white-space: nowrap;
}

.contact-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.2);
}

.nav-bar {
    background-color: var(--c-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner { display: flex; justify-content: space-between; align-items: center; padding-top: 15px; padding-bottom: 15px; }

.main-nav ul {
    display: flex;
    gap: 35px;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
    color: var(--c-gold);
    border-bottom-color: var(--c-gold);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #e5e5e5;
    color: #888;
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a:hover {
    background-color: var(--c-gold);
    color: var(--c-white);
}

/* ================== 2. Hero Section ================== */
.hero {
    position: relative;
    height: auto;
    width: 100%;
    aspect-ratio: 1351 / 600;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
}

.slider-container {
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    right: 5%;
    z-index: 5;
    display: flex;
    gap: 15px;
}

.slider-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--c-white);
    color: var(--c-dark);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.slider-controls button:hover {
    background-color: var(--c-gold);
    color: var(--c-white);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
}

/* Removed curved white overlay so full image is visible */
.hero-content-wrapper::before {
    display: none;
}

.hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-box {
    max-width: 700px;
    padding-left: 0;
    border-left: none;
    margin-left: 20px;
}

.hero-text-box .subtitle {
    color: var(--c-white);
    background-color: var(--c-gold);
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: clamp(10px, 1.5vw, 20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-shadow: none;
}

.hero-text-box h1 {
    font-size: clamp(1.2rem, 3.5vw, 3.5rem);
    margin-bottom: clamp(10px, 2vw, 30px);
    color: var(--c-white);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ================== 3. About Section ================== */
.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
}

.about-text-scroll {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.check-list {
    margin: 25px 0;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--c-text-dark);
}

.experience-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--c-beige);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--c-gold);
}

.icon-box {
    font-size: 2rem;
}

.experience-box p {
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--c-dark);
    margin: 0;
}

.about-image-wrapper {
    position: relative;
    height: 400px;
}

.about-image-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 80%;
    border-radius: 0 100px 0 100px;
}

.about-image-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 80%;
    border-radius: 100px 0 100px 0;
}

.badge-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--c-gold);
    color: var(--c-white);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 6px solid var(--c-white);
}

.badge-circle span {
    font-size: 2rem;
    font-weight: bold;
    font-family: var(--font-head);
    line-height: 1;
}

.badge-circle p {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 500;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    position: relative;
    height: 220px;
    margin-bottom: 50px;
}

.card-img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.card-box {
    position: absolute;
    bottom: -30px;
    left: 20px;
    right: 20px;
    background: var(--c-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-box h3 {
    font-size: 1.1rem;
    margin: 0;
}

.card-box.bg-gold {
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.card-box.bg-gold h3 {
    color: var(--c-white);
    margin-bottom: 10px;
}

.card-box .icon-top {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* ================== 4. Core Features ================== */
.core-features {
    background-color: var(--c-dark);
    padding: 30px 0;
    color: var(--c-white);
}

.core-features h2 {
    color: var(--c-white);
}

.features-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--c-white);
    padding: 8px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-head);
}

.tab-btn.active {
    background: var(--c-gold);
    border-color: var(--c-gold);
}

.tab-content-box {
    display: flex;
    gap: 20px;
    align-items: center;
}

.round-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.features-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.f-icon {
    font-size: 2.5rem;
    color: var(--c-gold);
}

.f-text h3 {
    color: var(--c-white);
    margin-bottom: 10px;
}

/* ================== 5. Projects ================== */
.projects-banner {
    background-color: var(--c-gold);
    text-align: center;
    padding: 40px 0;
    position: relative;
}

.projects-banner h2 {
    color: var(--c-white);
    margin: 0;
}

.triangle-down {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--c-gold);
    z-index: 5;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 20px;
    /* Space for triangle */
    gap: 15px;
    padding: 0 15px;
}

.p-img {
    aspect-ratio: 1;
}

/* ================== 6. Services ================== */
.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.srv-card {
    background: var(--c-white);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    position: relative;
}

.srv-img {
    height: 220px;
    border-radius: 8px 8px 0 0;
}

.srv-content {
    padding: 30px;
    position: relative;
    padding-bottom: 50px;
}

.srv-content h3 {
    margin-bottom: 15px;
}

.circle-btn {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--c-beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--c-gold);
}

.srv-card:hover .circle-btn {
    background: var(--c-gold);
    color: var(--c-white);
}

/* ================== 7. CTA Contact ================== */
.cta-contact {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-icon-large {
    font-size: 3rem;
    color: var(--c-gold);
}

.call-text {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.phone-number {
    font-size: 2.2rem;
    margin: 0;
}

.cta-right {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 500px;
}

/* ================== 8. Testimonials ================== */
.testimonials {
    display: flex;
}

.testi-left {
    width: 50%;
    background-color: var(--c-dark);
    padding: 30px 10%;
    display: flex;
    align-items: center;
    position: relative;
}

.vertical-text {
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center center;
    color: var(--c-white);
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.9rem;
    z-index: 5;
    white-space: nowrap;
}

.testi-content h2 {
    color: var(--c-white);
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #d1d1d1;
    margin: 30px 0;
    border-left: 3px solid var(--c-gold);
    padding-left: 0;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-box h4 {
    color: var(--c-white);
    margin: 0;
}

.author-box span {
    color: var(--c-gold);
    font-size: 0.85rem;
}

.testi-right {
    width: 50%;
}

/* ================== 9. Blog ================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.b-card {
    background: var(--c-white);
}

.b-img-wrapper {
    position: relative;
}

.b-img {
    height: 220px;
}

.date-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--c-gold);
    color: var(--c-white);
    padding: 8px 15px;
    font-family: var(--font-head);
    font-weight: bold;
}

.b-content {
    padding: 30px 20px 20px;
}

.b-meta {
    font-size: 0.85rem;
    margin: 10px 0 15px;
}

.read-more {
    font-weight: 500;
    color: var(--c-dark);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.read-more:hover {
    color: var(--c-gold);
}

/* ================== 10. Stats ================== */
.stats {
    background-color: var(--c-darker);
    padding: 30px 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 Q100,0 200,50 T400,50 T600,50 T800,50' fill='none' stroke='rgba(255,255,255,0.05)' stroke-width='2'/%3E%3C/svg%3E");
    background-size: cover;
}

.stats-inner {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-col h3 {
    color: var(--c-white);
    font-size: 3.5rem;
    margin-bottom: 5px;
}

.stat-col p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

/* ================== 11. Partners ================== */
.partner-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: bold;
}

/* ================== 12. Pre-Footer ================== */
.pre-footer {
    display: flex;
    height: 300px;
}

.pre-left {
    width: 60%;
    display: flex;
    align-items: center;
    padding-left: 10%;
    padding-right: 5%;
}

.pre-content h2 {
    margin-bottom: 20px;
}

.pre-right {
    width: 40%;
    position: relative;
}

.overlap-img-1 {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 250px;
    height: 200px;
    border: 5px solid var(--c-dark);
    z-index: 2;
}


.f-contact p {
    margin-bottom: 10px;
}

.f-col h3 {
    color: var(--c-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.f-col ul li {
    margin-bottom: 10px;
}

.f-col ul a:hover {
    color: var(--c-gold);
}

.f-subscribe {
    display: flex;
    margin-bottom: 20px;
}

.f-subscribe input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 15px;
    border-radius: 4px 0 0 4px;
    flex: 1;
    outline: none;
}

.f-subscribe button {
    border-radius: 0 4px 4px 0;
    padding: 12px 20px;
}

.f-social {
    display: flex;
    gap: 15px;
}

.f-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.f-social a:hover {
    background: var(--c-gold);
    color: var(--c-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design (320px to 1900px)
   ========================================= */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content-wrapper::before {
        width: 65%;
    }
}

@media (max-width: 992px) {

    .about-top,
    .features-inner,
    .cta-flex,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-content-wrapper::before {
        width: 100%;
        opacity: 0.9;
    }

    .service-cards,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials,
    .pre-footer {
        flex-direction: column;
        height: auto;
    }

    .testi-left,
    .testi-right,
    .pre-left,
    .pre-right {
        width: 100%;
    }

    .testi-right {
        height: 400px;
    }

    .pre-left {
        padding: 60px 20px;
    }

    .pre-right {
        height: 300px;
    }

    .overlap-img-1 {
        display: none;
    }

    .overlap-img-2 {
        left: 20px;
    }

    .about-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar-inner {
        flex-direction: column;
        gap: 15px;
    }

    .nav-inner {
        flex-direction: column;
        gap: 20px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .stats-inner {
        flex-wrap: wrap;
        gap: 30px;
    }

    .stat-col {
        width: 45%;
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-flex {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-left {
        flex-direction: column;
    }

    .cta-right {
        flex-direction: column;
    }
}

@media (max-width: 576px) {

    .service-cards,
    .blog-grid,
    .about-cards {
        grid-template-columns: 1fr;
    }

    .stat-col {
        width: 100%;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

.logo {
    background-color: #ffffff;
    padding: 5px 10px;
    margin-left: -10px;
    border-radius: 5px;
}







.logo img {
    transform: none;
    max-height: 50px;
    transform-origin: left center;
    margin-right: 25px;
}


.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #ffffff;
    padding: 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
    max-height: 50px;
    margin-right: 15px;
}







.nav-bar {
    padding: 0 !important;
}

.nav-inner { padding-top: 15px !important; padding-bottom: 15px !important; }

.main-nav ul {
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-actions {
    margin: 0;
}

.contact-text .value a {
    color: inherit;
    text-decoration: none;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.slider-pagination {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.slider-pagination .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: 0.3s;
}

.slider-pagination .dot.active,
.slider-pagination .dot:hover {
    background-color: var(--c-gold);
    transform: scale(1.3);
}

.hero-text-box p {
    color: var(--c-white);
    margin-bottom: clamp(10px, 2vw, 30px);
    font-size: clamp(0.7rem, 1.5vw, 1.1rem);
    line-height: 1.4;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    max-width: 500px;
}

@media (min-width: 991px) and (max-width: 1900px) {
    .hero-text-box h1 {
        max-width: 700px;
    }
}

@media (min-width: 1901px) {
    .hero-text-box {
        max-width: 1000px;
    }

    .hero-text-box h1 {
        max-width: 1000px;
        white-space: nowrap;
    }
}

/* ================== New Products Grid Section ================== */
/* ================== Explore Split Section ================== */
.explore-split-desktop {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 15px;
}

.explore-split-desktop h3 {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--c-dark);
    margin: 0;
}

.explore-split-desktop .button {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 1px solid var(--c-dark);
    border-radius: 50px;
    color: var(--c-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.explore-split-desktop .button:hover {
    background-color: var(--c-dark);
    color: var(--c-white);
}

.explore-split-desktop p {
    margin: 0;
}

.explore-split-desktop picture,
.explore-split-desktop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 991px) {
    .explore-split-desktop {
        grid-template-columns: 1fr;
    }
}

/* Textures Grid - 3 cols, 6 rows */
.textures-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 70px);
    gap: 15px;
}

.textures-desktop>* {
    min-width: 0;
}

.textures-desktop .gallery-header {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center both perfectly */
    align-items: flex-start;
}

.textures-desktop .gallery-title {
    margin-bottom: 0;
}

/* Override default 50px margin from .sec-title */
.textures-desktop .gallery-title h2 {
    margin-bottom: 15px;
}

/* Set specific gap between title and button */
.textures-desktop .img-2 {
    grid-column: 1;
    grid-row: 4 / span 3;
}

.textures-desktop .img-3 {
    grid-column: 2;
    grid-row: 1 / span 4;
}

.textures-desktop .img-4 {
    grid-column: 2;
    grid-row: 5 / span 2;
}

.textures-desktop .img-5 {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.textures-desktop .img-6 {
    grid-column: 3;
    grid-row: 3 / span 4;
}

/* Wallpapers Grid - 2 cols, 6 rows */
.wallpapers-desktop {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 70px);
    gap: 15px;
}

.wallpapers-desktop>* {
    min-width: 0;
}

.wallpapers-desktop p:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.wallpapers-desktop p:nth-of-type(2) {
    grid-column: 1;
    grid-row: 3 / span 2;
}

.wallpapers-desktop p:nth-of-type(3) {
    grid-column: 1;
    grid-row: 5 / span 2;
}

.wallpapers-desktop p:nth-of-type(4) {
    grid-column: 2;
    grid-row: 1 / span 3;
}

.wallpapers-desktop p:nth-of-type(5) {
    grid-column: 2;
    grid-row: 4 / span 3;
}

/* Unique Colored Borders for Gallery Images */
.textures-desktop p.img-2 img {
    border: 2px solid #f5a62380;
}

.textures-desktop p.img-3 img {
    border: 2px solid #e74c3c80;
}

.textures-desktop p.img-4 img {
    border: 2px solid #3498db80;
}

.textures-desktop p.img-5 img {
    border: 2px solid #2ecc7180;
}

.textures-desktop p.img-6 img {
    border: 2px solid #9b59b680;
}

.wallpapers-desktop p:nth-of-type(1) img {
    border: 2px solid #e67e2280;
}

.wallpapers-desktop p:nth-of-type(2) img {
    border: 2px solid #1abc9c80;
}

.wallpapers-desktop p:nth-of-type(3) img {
    border: 2px solid #e8439380;
}

.wallpapers-desktop p:nth-of-type(4) img {
    border: 2px solid #00cec980;
}

.wallpapers-desktop p:nth-of-type(5) img {
    border: 2px solid #ff767580;
}

/* ================== Home Needs Section ================== */
.home-needs-split {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 40px;
    align-items: center;
}

.home-needs-text h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--c-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.home-needs-text p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.home-needs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.need-card {
    background-color: #f9f4ec;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--c-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.need-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.need-card img {
    width: 85px;
    height: 85px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.need-card-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.need-card h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.need-card .arrow {
    font-size: 1.2rem;
    font-weight: 300;
    align-self: flex-end;
    margin-bottom: 5px;
}

/* Unique Icon Colors for Home Needs Cards */
.home-needs-cards .need-card:nth-child(1) .icon {
    color: #f5a623;
}

/* Gold */
.home-needs-cards .need-card:nth-child(2) .icon {
    color: #e74c3c;
}

/* Red */
.home-needs-cards .need-card:nth-child(3) .icon {
    color: #2ecc71;
}

/* Green */
.home-needs-cards .need-card:nth-child(4) .icon {
    color: #3498db;
}

/* Blue */
.home-needs-cards .need-card:nth-child(5) .icon {
    color: #9b59b6;
}

/* Purple */
.home-needs-cards .need-card:nth-child(6) .icon {
    color: #e67e22;
}

/* Orange */
.home-needs-cards .need-card:nth-child(7) .icon {
    color: #1abc9c;
}

/* Teal */
.home-needs-cards .need-card:nth-child(8) .icon {
    color: #d35400;
}

/* Dark Orange */
.home-needs-cards .need-card:nth-child(9) .icon {
    color: #e84393;
}

/* Pink */
.home-needs-cards .need-card:nth-child(10) .icon {
    color: #2980b9;
}

/* Dark Blue */

@media (max-width: 991px) {
    .home-needs-split {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-needs-cards {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 992px) {
    .home-needs-text h2 {
        font-size: clamp(1.8rem, 2.5vw, 3rem);
    }

    .need-card h3 {
        font-size: clamp(1rem, 1.2vw, 1.4rem);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .home-needs-split {
        grid-template-columns: 1fr 1.5fr;
        gap: 30px;
    }
}

/* Refactored inline styles to external classes */
.about-text p {
    text-align: justify;
    margin-bottom: 15px;
}

.experience-box.experience-box-custom {
    margin-top: 25px;
}

.experience-box .book-estimation {
    margin: 0;
    font-size: 1.1rem;
    color: #555;
}

.experience-box .call-now {
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--c-dark);
}

.experience-box .call-now a {
    color: inherit;
    text-decoration: none;
}

.need-card {
    padding: 15px;
}

.need-card-content h3 {
    font-size: 1.1rem;
}

.main-image {
    position: relative;
    padding-top: 50px;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.icon-box.thm-bgclr.badge-center {
    position: absolute;
    top: 25px;
    /* Moved down slightly */
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--c-gold);
    color: #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.overlap-img-2 {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 100px;
}

/* ================== 13. Footer ================== */
.site-footer {
    padding: 30px 0 10px;
    /* Reduced bottom padding */
    color: #d1d1d1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 25px;
}

.f-contact p {
    margin-bottom: 10px;
}

.icon-box.thm-bgclr.badge-center h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 700;
    color: #fff;
}

/* About Section Styles */
.about-section {
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.blob-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.moving-blob {
    position: absolute;
    opacity: 0.08;
    animation: floatBlob 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    top: -100px;
    left: -100px;
    color: var(--c-dark);
    animation-duration: 25s;
}

.blob-2 {
    width: 300px;
    bottom: -50px;
    right: 5%;
    color: var(--c-gold);
    animation-duration: 20s;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    top: 20%;
    left: 40%;
    color: var(--c-darker);
    animation-duration: 18s;
    animation-delay: -10s;
    opacity: 0.06;
}

.blob-4 {
    width: 350px;
    top: -80px;
    right: -80px;
    color: var(--c-darker);
    animation-duration: 22s;
    animation-delay: -12s;
    opacity: 0.07;
}

.blob-5 {
    width: 280px;
    top: 50%;
    right: -20px;
    color: var(--c-dark);
    animation-duration: 26s;
    animation-delay: -2s;
    opacity: 0.09;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1) rotate(45deg);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9) rotate(-15deg);
    }

    100% {
        transform: translate(40px, 40px) scale(1.1) rotate(90deg);
    }
}

.about-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.about-text-scroll {
    flex: 1;
    overflow-y: auto;
    padding-right: 15px;
    margin-bottom: 20px;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.about-text-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari/Webkit */
}

.about-text h2 {
    margin: 10px 0 20px;
    font-size: 2.2rem;
}

.about-text p {
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    padding-left: 20px;
}

.about-card {
    background: var(--c-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.about-card.bg-gold {
    background-color: var(--c-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-head);
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 40px;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn:hover::before {
    transform: scaleX(1);
}

.btn-gold {
    background-color: var(--c-gold);
    color: var(--c-white);
}

.btn-gold::before { background-color: var(--c-dark); }

.btn-dark {
    background-color: var(--c-dark);
    color: var(--c-white);
}

.btn-dark::before { background-color: var(--c-gold); }

.btn-dark-small {
    background-color: var(--c-dark);
    color: var(--c-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-dark-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--c-darker);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 30px;
}

.btn-dark-small:hover {
    color: var(--c-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-dark-small:hover::before {
    transform: scaleX(1);
}

@media (max-width: 991px) {
    .about-top {
        grid-template-columns: 1fr;
    }

    .about-image {
        padding-left: 0;
        margin-top: 15px;
    }

    .main-image {
        padding-top: 25px;
    }

    .icon-box.thm-bgclr.badge-center {
        top: 0;
    }
}

/* ================== Global Section Title ================== */
.sec-title {
    margin-bottom: 50px;
}

.sec-title .sub-title h3 {
    color: var(--c-gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.sec-title h2 {
    font-size: 2.5rem;
    color: var(--c-dark);
    margin-bottom: 15px;
}

.sec-title p {
    color: var(--c-text-light);
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.sec-title.text-left p {
    margin: 0;
}

/* Services Style 1 */
.service-style1-area {
    padding: 30px 0 60px 0;
    /* Restored the 30px spacing that used to be on the cards */
    position: relative;
    background-color: var(--c-beige);
}

.service-style1-area .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.single-service-style1 {
    background-color: var(--c-white);
    border-radius: 14px;
    border: none;
    position: relative;
    padding: 20px;
    /* White vertical background framing around the whole card */
    margin-top: 30px;
    /* Make room above the card */
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: auto; /* Fit to content rather than stretching */
}

.single-service-style1 .text-holder {
    position: relative;
}

.single-service-style1:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.single-service-style1 .img-holder {
    overflow: hidden;
    position: relative;
    height: 240px;
    margin-top: -40px;
    /* Overlays the top 20px padding and breaks out by 20px */
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.single-service-style1 .img-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 92, 97, 0.2);
    /* Subtle dark teal overlay */
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.single-service-style1:hover .img-holder::before {
    opacity: 1;
    /* Overlay on hover */
}

.single-service-style1 .img-holder .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.single-service-style1 .img-holder img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s ease;
    display: block !important;
}

.single-service-style1:hover .img-holder img {
    transform: scale(1.08);
}

.single-service-style1 .text-holder {
    position: relative;
    padding: 0 10px 5px 10px; /* Reduced bottom padding to minimize empty space */
    background: transparent;
    color: inherit;
    display: block;
    text-align: left;
}

.single-service-style1 .text-holder h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--c-darker);
    padding-right: 50px;
    /* Prevent overlap with button */
}

.single-service-style1 .text-holder h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-service-style1 .text-holder h3 a:hover {
    color: var(--c-gold);
}

.single-service-style1 .text-holder p {
    color: var(--c-text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 10px;
}

.readmore-button {
    position: absolute;
    top: -5px;
    right: 15px;
    left: auto;
    transform: none;
    text-align: right;
}

.readmore-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--c-beige);
    color: var(--c-darker);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.readmore-button a i {
    transform: none;
    /* Point straight right */
    transition: transform 0.3s ease;
}

.readmore-button a:hover {
    background-color: var(--c-darker);
    color: var(--c-white);
    transform: translateX(3px);
    /* Move straight right instead of diagonal */
}

/* Unique Colors and Borders for Service Cards */
.service-style1-area .row>div:nth-child(1) .single-service-style1 {
    border: 1px solid #f5a623;
}

.service-style1-area .row>div:nth-child(1) .readmore-button a {
    background-color: #f5a623;
    color: white;
}

.service-style1-area .row>div:nth-child(2) .single-service-style1 {
    border: 1px solid #e74c3c;
}

.service-style1-area .row>div:nth-child(2) .readmore-button a {
    background-color: #e74c3c;
    color: white;
}

.service-style1-area .row>div:nth-child(3) .single-service-style1 {
    border: 1px solid #2ecc71;
}

.service-style1-area .row>div:nth-child(3) .readmore-button a {
    background-color: #2ecc71;
    color: white;
}

.service-style1-area .row>div:nth-child(4) .single-service-style1 {
    border: 1px solid #3498db;
}

.service-style1-area .row>div:nth-child(4) .readmore-button a {
    background-color: #3498db;
    color: white;
}

.service-style1-area .row>div:nth-child(5) .single-service-style1 {
    border: 1px solid #9b59b6;
}

.service-style1-area .row>div:nth-child(5) .readmore-button a {
    background-color: #9b59b6;
    color: white;
}

.service-style1-area .row>div:nth-child(6) .single-service-style1 {
    border: 1px solid #e67e22;
}

.service-style1-area .row>div:nth-child(6) .readmore-button a {
    background-color: #e67e22;
    color: white;
}

@media (max-width: 991px) {
    .service-style1-area .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .service-style1-area .row {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }

    /* Proportionally reduce card size to maintain shape */
    .single-service-style1 {
        padding: 15px;
        margin-top: 20px;
        border-radius: 12px;
    }

    .single-service-style1 .img-holder {
        height: 200px;
        margin-top: -30px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .single-service-style1 .text-holder {
        padding: 0 10px 15px 10px;
    }

    .single-service-style1 .text-holder h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        padding-right: 40px;
        /* Room for smaller button */
    }

    .single-service-style1 .text-holder p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .readmore-button {
        top: -5px;
        right: 10px;
    }

    .readmore-button a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
}

/* ================== Underline Button ================== */
.btn-underline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--c-dark);
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    margin-top: auto;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-underline::after { display: none; }

.btn-underline:hover {
    color: var(--c-gold);
}

.btn-underline:hover::after {
    background-color: var(--c-gold);
}

.btn-underline i {
    transition: transform 0.3s ease;
}

.btn-underline:hover i {
    transform: translateX(5px);
}

/* ================== Testimonials Swiper ================== */
.testimonial-section {
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background: var(--c-white);
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 50px;
    position: relative;
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

/* Unique Colors for Quote Icons and Card Borders */
.swiper-slide:nth-child(1) .testimonial-card {
    border: 1px solid #f5a623;
}

.swiper-slide:nth-child(1) .testimonial-card .quote-icon {
    color: #f5a623;
}

.swiper-slide:nth-child(2) .testimonial-card {
    border: 1px solid #e74c3c;
}

.swiper-slide:nth-child(2) .testimonial-card .quote-icon {
    color: #e74c3c;
}

.swiper-slide:nth-child(3) .testimonial-card {
    border: 1px solid #3498db;
}

.swiper-slide:nth-child(3) .testimonial-card .quote-icon {
    color: #3498db;
}

.swiper-slide:nth-child(4) .testimonial-card {
    border: 1px solid #2ecc71;
}

.swiper-slide:nth-child(4) .testimonial-card .quote-icon {
    color: #2ecc71;
}

.swiper-slide:nth-child(5) .testimonial-card {
    border: 1px solid #9b59b6;
}

.swiper-slide:nth-child(5) .testimonial-card .quote-icon {
    color: #9b59b6;
}

.swiper-slide:nth-child(6) .testimonial-card {
    border: 1px solid #e67e22;
}

.swiper-slide:nth-child(6) .testimonial-card .quote-icon {
    color: #e67e22;
}

.testimonial-card .feedback {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--c-text-light);
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-card .author {
    font-weight: 700;
    color: var(--c-darker);
    font-size: 1.1rem;
    margin: 0;
}

.testimonial-swiper .swiper-pagination-bullet {
    background-color: var(--c-dark);
    opacity: 0.5;
    width: 10px;
    height: 10px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background-color: var(--c-gold);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* ================== Mobile Navigation Menu ================== */
.header {
    position: relative;
    z-index: 1000;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-dark);
    cursor: pointer;
    padding: 5px 10px;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .contact-details {
        display: none !important;
        /* Hide contact details to make room for logo + hamburger */
    }

    .top-bar-inner {
        justify-content: space-between !important;
        flex-direction: row !important;
    }

    .nav-bar {
        display: none;
        /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--c-white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px !important;
        z-index: 999;
    }

    .nav-bar.active {
        display: block;
    }

    .nav-inner {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 !important;
        gap: 20px !important;
    }

    .main-nav ul {
        flex-direction: column !important;
        width: 100%;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .main-nav a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
    }

    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ================== Footer Responsiveness ================== */
@media (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-bottom {
        justify-content: center !important;
        text-align: center;
        flex-direction: column;
    }
}

/* ================== Mobile Contact Icons & Logo Adjustments ================== */
.mobile-contact-icons {
    display: none;
}

@media (max-width: 991px) {
    .mobile-contact-icons {
        display: flex;
        gap: 10px;
        /* Reduced gap between icons */
        align-items: center;
        margin-left: auto;
        margin-right: 5px;
        /* Reduced gap to hamburger menu */
    }

    .mobile-contact-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: var(--c-dark);
        /* Dark color for better visibility */
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-size: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    /* Reduce logo size on mobile to fit the new icons */
    .logo {
        padding: 4px 8px;
    }

    .logo img {
        max-height: 35px;
        margin-right: 10px;
    }

    

    
}

/* ================== Extra Small Mobile Alignments (320px) ================== */
@media (max-width: 400px) {
    .mobile-contact-icons {
        gap: 8px;
        margin-right: 2px;
        /* Even tighter gap on extra small screens */
    }

    .mobile-contact-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }

    .mobile-menu-toggle {
        font-size: 1.6rem;
        padding: 2px 5px;
    }

    .logo {
        padding: 4px;
    }

    .logo img {
        max-height: 30px;
        margin-right: 5px;
    }

    

    
}

/* ================== Mobile Section Titles ================== */
@media (max-width: 767px) {

    .sec-title h2,
    .about-text h2 {
        font-size: clamp(20px, 6vw, 1.8rem) !important;
        white-space: normal;
        /* Allow wrapping for long titles */
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .sec-title .sub-title h3,
    .subtitle-gold {
        font-size: 0.85rem !important;
        /* Reduced small title font size */
    }
}

/* ================== Mobile Gallery 1 by 1 ================== */
@media (max-width: 767px) {
    .explore-split-desktop {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .textures-desktop,
    .wallpapers-desktop {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .textures-desktop>*,
    .wallpapers-desktop>* {
        grid-column: auto !important;
        grid-row: auto !important;
        width: 100%;
        height: auto;
    }

    .textures-desktop .gallery-header {
        align-items: center;
        text-align: center;
        margin-bottom: 10px;
    }

    .textures-desktop .gallery-title {
        text-align: center;
    }
}

/* ================== CTA Section Mobile Responsiveness ================== */
@media (max-width: 767px) {
    .cta-section>.container>div {
        flex-direction: column;
        text-align: center;
        gap: 20px !important;
    }

    .cta-section>.container>div>div:first-child {
        flex-direction: column;
        gap: 15px !important;
    }

    .cta-section h2 {
        font-size: clamp(22px, 6vw, 2.2rem) !important;
        line-height: 1.3 !important;
    }

    .cta-section p {
        font-size: 0.95rem !important;
    }

    .cta-section i.fa-calendar-check {
        font-size: 3rem !important;
    }

    .cta-section.section-padding {
        padding: 30px 0 !important;
        /* Reduce section height so bg image isn't cropped as much */
    }

    .cta-section .btn {
        padding: 10px 20px !important;
        font-size: 0.9rem !important;
        justify-content: center;
    }
}

/* ================== Header Adjustments for 1024px (Laptops/Tablets) ================== */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo img {
        max-height: 40px;
        margin-right: 15px;
    }

    

    

    .contact-text .value {
        font-size: 0.9rem;
    }

    .contact-text .label {
        font-size: 0.75rem;
    }

    .contact-block {
        gap: 10px;
    }

    .contact-divider {
        margin: 0 15px;
    }

    .main-nav ul li a {
        font-size: 0.95rem;
        padding: 15px 10px;
    }

    .nav-actions .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .social-icons a {
        font-size: 0.9rem;
        margin-right: 8px;
    }
}

/* ================== Desktop Scroll Constraint for About Text ================== */
@media (min-width: 992px) {
    .about-text {
        height: 0 !important;
        min-height: 100% !important;
    }

    .about-text-scroll {
        min-height: 0 !important;
    }
}

/* Mobile Overrides for Hero Banner Text & Button */
@media (max-width: 767px) {
    .hero-text-box h1 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
    }
    .hero-text-box .subtitle {
        font-size: 0.9rem;
        margin-bottom: 5px !important;
    }
    .hero-text-box .btn {
        padding: 6px 16px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .hero-text-box h1 {
        font-size: 1.1rem !important;
        margin-bottom: 5px !important;
    }
    .hero-text-box .subtitle {
        font-size: 0.75rem;
        margin-bottom: 5px !important;
    }
    .hero-text-box .btn {
        padding: 5px 12px !important;
        font-size: 0.75rem !important;
    }
}


/* Contact overrides */
.contact-text .value {
    font-weight: 600;
    font-size: 1.15rem;
    color: #000;
}
.contact-text .value a {
    color: #000;
}


/* Additional Overrides for strict 1024-1199px fit (specifically ~1036px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .logo img {
        max-height: 35px !important;
        margin-right: 8px !important;
    }
    
    
    .contact-text .value {
        font-size: 0.8rem !important;
    }
    .contact-block {
        gap: 6px !important;
    }
    .contact-divider {
        margin: 0 8px !important;
    }
}




/* Clean Logo Text Styles */
.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
    margin-left: 5px;
}

.logo-expert {
    font-family: 'Kaushan Script', cursive;
    font-size: 28px;
    font-weight: 400;
    color: var(--c-gold);
    text-transform: none;
}

.logo-painting {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--c-dark);
    text-transform: uppercase;
    letter-spacing: 3px;
    align-self: flex-end;
    margin-top: 5px; /* Creates a gap between Expert Painting and Service */
}

/* Base Top Bar fixes */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: #ffffff;
    padding: 5px 15px 5px 10px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-left: -10px;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 15px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: -15px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Ensure gap between logo and contact details */
}

/* 1200-1399px: Slight scale down for ~1256px screens */
@media (max-width: 1399px) {
    .contact-text .value { font-size: 0.95rem; }
    .contact-details { gap: 12px; padding: 8px 12px; }
    .contact-icon { width: 35px; height: 35px; font-size: 1rem; }
    .contact-divider { height: 40px; }
}

@media (max-width: 1199px) {
    .logo-expert { font-size: 24px; }
    .logo-painting { font-size: 12px; }
    .logo img { max-height: 40px; }
    .contact-text .value { font-size: 0.85rem; }
    .contact-block { gap: 6px; }
    .contact-details { gap: 8px; padding: 5px 10px; }
    .contact-icon { width: 32px; height: 32px; font-size: 0.9rem; }
    .contact-divider { height: 35px; }
}

@media (max-width: 991px) {
    .logo-expert { font-size: 22px; }
    .logo-painting { font-size: 11px; }
}

@media (max-width: 767px) {
    .logo-expert { font-size: 20px; }
    .logo-painting { font-size: 10px; }
    .logo img { max-height: 35px; }
}


/* Perfect Visual Alignment Overrides */
@media (max-width: 1399px) {
    .contact-details { margin-right: -12px; }
}
@media (max-width: 1199px) {
    .contact-details { margin-right: -10px; }
}


/* Responsive adjustments for badge-center */
@media (max-width: 991px) {
    .icon-box.thm-bgclr.badge-center {
        width: 110px;
        height: 110px;
    }
    .icon-box.thm-bgclr.badge-center h3 {
        font-size: 0.85rem;
    }
    .icon-box.thm-bgclr.badge-center i {
        font-size: 20px !important;
    }
}
@media (max-width: 767px) {
    .icon-box.thm-bgclr.badge-center {
        width: 95px;
        height: 95px;
    }
    .icon-box.thm-bgclr.badge-center h3 {
        font-size: 0.75rem;
    }
    .icon-box.thm-bgclr.badge-center i {
        font-size: 16px !important;
    }
}

/* ================== Mobile Menu & Header Styles ================== */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 1.1rem;
    color: var(--c-dark);
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    outline: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.mobile-contact-icons {
    display: none;
    gap: 8px;
    font-size: 0.9rem;
}

.mobile-contact-icons a {
    color: var(--c-dark);
    background: rgba(255, 255, 255, 0.9);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 991px) {
    .contact-details {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-contact-icons {
        display: flex;
        gap: 10px;
        margin-left: auto;
        margin-right: 0;
    }
    
    .top-bar-inner {
        flex-wrap: nowrap;
        gap: 10px !important;
    }
    
    .header {
        position: sticky;
        top: 0;
        z-index: 1001;
        background-color: var(--c-white);
        /* Add relative positioning so absolute children (if moved) would work, but we will use fixed */
    }
    
    .nav-bar {
        display: none;
        position: fixed;
        top: 60px; /* Approximate height of mobile header */
        left: 0;
        width: 100%;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        background-color: var(--c-white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        padding: 15px;
        z-index: 1000;
    }
    
    .nav-bar.active {
        display: block !important;
    }
    
    .nav-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }
    
    .main-nav {
        width: 100%;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .main-nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid #eee;
    }
    
    .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 15px;
    }
    
    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .mobile-contact-icons {
        display: flex !important;
        gap: 8px; /* Space between phone and email */
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: 0; /* Let parent gap handle the space to hamburger */
    }
    .mobile-menu-toggle {
        margin-left: 0;
    }
    .top-bar-inner {
        padding-left: 15px;
        padding-right: 15px;
        gap: 8px !important; /* Space between groups (logo, icons, hamburger) */
    }
    .logo {
        padding: 2px;
        gap: 5px;
        margin-left: 0;
    }
    .logo img {
        height: 30px !important;
    }
    .logo-expert {
        font-size: 14px !important;
    }
    .logo-painting {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }
}

/* =========================================
   WhatsApp Floating Button
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
    color: #fff;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0%   { transform: scale(1);   opacity: 0.8; }
    70%  { transform: scale(1.5); opacity: 0;   }
    100% { transform: scale(1.5); opacity: 0;   }
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a1a;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    padding: 6px 12px;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a1a;
    border-right: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* WhatsApp label — hidden on desktop, shown on mobile sticky bar */
.whatsapp-label {
    display: none;
}

@media (max-width: 500px) {
    .whatsapp-float {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        height: 52px;
        border-radius: 0;
        justify-content: center;
        gap: 10px;
        font-size: 22px;
        box-shadow: 0 -3px 16px rgba(37, 211, 102, 0.35);
        padding: 0 20px;
    }
    .whatsapp-float::before {
        display: none;
    }
    .whatsapp-label {
        display: inline-block;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
        color: #fff;
    }
    .whatsapp-tooltip {
        display: none;
    }
}

/* =========================================
   Senior Citizens Highlight Section
   ========================================= */
.senior-section {
    background: linear-gradient(135deg, #fdf8f0 0%, #f4f1ea 50%, #fef9f0 100%);
    position: relative;
    overflow: hidden;
}

.senior-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 163, 115, 0.12), transparent 70%);
    pointer-events: none;
}

.senior-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(44, 76, 59, 0.08), transparent 70%);
    pointer-events: none;
}

.senior-split {
    display: flex;
    align-items: center;
    gap: 60px;
}

.senior-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.senior-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.13);
}

.senior-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.senior-img-wrap:hover img {
    transform: scale(1.04);
}

.senior-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: linear-gradient(135deg, var(--c-dark), var(--c-darker));
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    letter-spacing: 0.3px;
}

.senior-badge i {
    color: #ff6b8a;
    font-size: 16px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.2); }
}

.senior-content {
    flex: 1;
}

.senior-content h2 {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--c-dark);
    line-height: 1.25;
    margin: 12px 0 16px;
}

.senior-lead {
    font-size: 1.05rem;
    color: var(--c-text-light);
    line-height: 1.75;
    margin-bottom: 28px;
}

.senior-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.senior-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 3px solid transparent;
}

.senior-feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--c-gold);
}

.senior-feature-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-dark), var(--c-darker));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gold);
    font-size: 18px;
}

.senior-feature-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--c-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.senior-feature-text p {
    font-size: 0.82rem;
    color: var(--c-text-light);
    line-height: 1.55;
    margin: 0;
}

.senior-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
}

/* Badge warm variant */
.badge-warm {
    background: rgba(212, 163, 115, 0.15);
    color: var(--c-gold-hover);
    border: 1.5px solid rgba(212, 163, 115, 0.4);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
}

/* =========================================
   Senior Citizens Responsive
   ========================================= */
@media (max-width: 992px) {
    .senior-split {
        flex-direction: column;
        gap: 35px;
    }
    .senior-image {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .senior-img-wrap img {
        height: 380px;
    }
    .senior-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .senior-features {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .senior-img-wrap img {
        height: 280px;
    }
    .senior-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .senior-badge {
        font-size: 12px;
        padding: 10px 14px;
        bottom: 14px;
        left: 14px;
    }
    .senior-content h2 {
        font-size: 1.3rem;
    }
    .senior-btn {
        width: 100%;
        justify-content: center;
    }
}
