/* =========================
   GLOBAL CSS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
 
/* =========================
   TOP BAR
========================= */

.top-bar {
    width: 100%;
    background: #a70a08;
    padding: 8px 0;
    overflow: hidden;
}


/* TOP BAR CONTENT */

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


/* =========================
   CONTACT BUTTONS
========================= */

.top-contact-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 15px;
    border-radius: 5px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}


/* CALL BUTTON */

.call-btn {
    background: #fff;
}
 


/* WHATSAPP BUTTON */

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #1da851;
    color: #ffffff;
}


/* =========================
   PROMOTIONAL TEXT
========================= */

.promo-text {
    color: #ffd700;
    font-size: 15px;
    font-weight: 600;

    /* Blink + Animation */
    animation: promoBlink 1.8s infinite ease-in-out;
}


/* =========================
   PROMOTIONAL ANIMATION
========================= */

@keyframes promoBlink {

    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(1.02);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }

}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 768px) {

    .top-bar-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-contact-buttons {
        justify-content: center;
    }

    .promo-text {
        font-size: 13px;
    }

}


@media (max-width: 480px) {

    .top-contact-buttons a {
        padding: 6px 11px;
        font-size: 12px;
    }

    .promo-text {
        font-size: 17px;
        line-height: 1.5;
    }

}
/* =========================
   LOGO IMAGE SECTION
========================= */

.logo-section {
    width: 100%;
    padding: 15px 0;
    background: #ffffff;
}

.logo-image-box {
    width: 100%;
    text-align: center;
    overflow: hidden;
}

.logo-image-box img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .logo-section {
        padding: 15px 10px;
    }

    .logo-image-box img {
        width: 100%;
    }

}
/* =========================
   PROMOTIONAL MARQUEE
========================= */

.marquee-section {
    width: 100%;
    background: #a70a08;
    padding: 12px 0;
    overflow: hidden;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%;
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;

    animation: marqueeMove 20s linear infinite;
}


/* MARQUEE ANIMATION */

@keyframes marqueeMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }

}


/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {

    .marquee-section {
        padding: 10px 0;
    }

    .marquee-text {
        font-size: 13px;
        animation-duration: 15s;
    }

}
/* =========================================
   HERO IMAGE SLIDER
========================================= */

.hero-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}


/* MAIN IMAGE */

.hero-main-image {
    display: block;

    width: 100%;
    
    object-fit: cover;
}


/* =========================================
   IMAGE STRIPS
========================================= */

.hero-image-strips {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    pointer-events: none;
}


/* EACH STRIP */

.hero-strip {
    
    background-repeat: no-repeat;
    background-size: 400% 100%;

    opacity: 0;
}


/* IMAGE POSITION */

.hero-strip-1 {
    background-position: 0% 50%;
}

.hero-strip-2 {
    background-position: 33.333% 50%;
}

.hero-strip-3 {
    background-position: 66.666% 50%;
}

.hero-strip-4 {
    background-position: 100% 50%;
}


/* =========================================
   STRIP ANIMATION
========================================= */


/* Strip 1 - Top to Bottom */

.hero-image-strips.animate .hero-strip-1 {
    animation: heroStripTop 0.8s ease forwards;
    animation-delay: 0s;
}


/* Strip 2 - Bottom to Top */

.hero-image-strips.animate .hero-strip-2 {
    animation: heroStripBottom 0.8s ease forwards;
    animation-delay: 0.12s;
}


/* Strip 3 - Top to Bottom */

.hero-image-strips.animate .hero-strip-3 {
    animation: heroStripTop 0.8s ease forwards;
    animation-delay: 0.24s;
}


/* Strip 4 - Bottom to Top */

.hero-image-strips.animate .hero-strip-4 {
    animation: heroStripBottom 0.8s ease forwards;
    animation-delay: 0.36s;
}


/* TOP TO BOTTOM */

@keyframes heroStripTop {

    0% {
        transform: translateY(-100%);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}


/* BOTTOM TO TOP */

@keyframes heroStripBottom {

    0% {
        transform: translateY(100%);
        opacity: 1;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }

}
 /* =========================================
   CALL TO ACTION SECTION
========================================= */

.cta-section {
    width: 100%;
    padding: 55px 0;
    overflow: hidden;

    background:#a70a08;
}


/* CTA CONTENT */

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* CTA TEXT */

.cta-text {
    max-width: 700px;
}


/* SMALL TITLE */

.cta-small-title {
    position: relative;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #ffd700;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    margin-bottom: 15px;
}


/* DECORATIVE LINES */

.cta-small-title::before,
.cta-small-title::after {
    content: "";

    width: 35px;
    height: 2px;

    background: #ffd700;
}


/* MAIN HEADING */

.cta-text h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(28px, 4vw, 46px);

    font-weight: 800;

    line-height: 1.2;

    letter-spacing: -0.5px;
}


/* HIGHLIGHT NAME */

.cta-text h2 span {
    display: inline-block;

    position: relative;

    font-weight: 900;

    background: linear-gradient(
        90deg,
        #ffd700,
        #fff,
        #ffd700
    );

    background-size: 200% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldTextMove 3s linear infinite;
}


/* GOLD TEXT ANIMATION */

@keyframes goldTextMove {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }

}


/* UNDERLINE */

.cta-text h2 span::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -6px;

    width: 100%;
    height: 3px;

    background: #ffd700;

    border-radius: 10px;
}


/* DESCRIPTION */

.cta-text p {
    margin: 0;

    color: #ffd700;

    font-size: 17px;

    line-height: 1.8;

    letter-spacing: 0.3px;
}


/* =========================================
   CTA BUTTONS
========================================= */

.cta-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.cta-buttons a {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 13px 22px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.3s ease;
}


/* CALL BUTTON */

.cta-call-btn {
    background: #fff;
    color: #000;
}


.cta-call-btn:hover {
    background: #ffd700;
    color: #000;

    transform: translateY(-3px);
}


/* WHATSAPP BUTTON */

.cta-whatsapp-btn {
    background: #25d366;
    color: #ffffff;
}


.cta-whatsapp-btn:hover {
    background: #1da851;
    color: #ffffff;

    transform: translateY(-3px);
}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .cta-section {
        padding: 40px 15px;
    }


    .cta-content {
        flex-direction: column;

        text-align: center;
    }


    .cta-text {
        max-width: 100%;
    }


    .cta-small-title {
        font-size: 12px;

        letter-spacing: 1px;
    }


    .cta-small-title::before,
    .cta-small-title::after {
        width: 20px;
    }


    .cta-text h2 {
        font-size: 30px;

        line-height: 1.3;
    }


    .cta-text p {
        font-size: 15px;

        line-height: 1.7;
    }


    .cta-buttons {
        width: 100%;

        justify-content: center;

        flex-wrap: wrap;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .cta-buttons {
        flex-direction: column;

        width: 100%;
    }


    .cta-buttons a {
        width: 100%;
    }

}
/* =========================================
   OUR SERVICES SECTION
========================================= */

.our-services-section {

    padding: 100px 0;

    background: #f8f4ec;

}


/* =========================================
   HEADING
========================================= */

.services-heading {

    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;

}


.services-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color: #a47713;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.services-heading h2 {

    margin: 0 0 15px;

    color: #000;

    font-size: 46px;

    font-weight: 800;

}


.services-heading h2 strong {

    color: #a70a08;

}


.services-heading p {

    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   SERVICES GRID
========================================= */

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


/* =========================================
   SERVICE CARD
========================================= */

.service-card {

    position: relative;

    overflow: hidden;

    background: #a70a08;

    border: 1px solid #ffd700;

    border-radius: 18px;

    box-shadow:0px 5px 0px #000;

    transition: all 0.4s ease;

}


.service-card:hover {

    transform: translateY(-10px);

    border-color: #d4af37;

    box-shadow:

        0 22px 45px rgba(0, 0, 0, 0.15);

}


/* =========================================
   SERVICE IMAGE
========================================= */

.service-image {

    position: relative;
 

    overflow: hidden;

}


.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.service-card:hover
.service-image img {

    transform: scale(1.1);

}


/* =========================================
   IMAGE OVERLAY
========================================= */

.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(0, 0, 0, 0.45),

            transparent 60%

        );

}


/* =========================================
   CONTENT
========================================= */

.service-content {
text-align:center;
    padding: 25px;

}


.service-content h3 {

    margin: 0 0 12px;

    color:#ffd700;

    font-size: 21px;
	
    font-weight: 800;

}


.service-content p {

    min-height: 70px;

    margin: 0 0 22px;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================
   BUTTONS
========================================= */

.service-buttons {

    display: flex;

    gap: 10px;

}


.call-btn,
.whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    flex: 1;

    padding: 11px 10px;

    color: #ffffff;

    border-radius: 7px;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


/* CALL */

.call-btn {

    background:#a70a08;

}


.call-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:

        0 8px 18px rgba(154, 107, 0, 0.3);

}


/* WHATSAPP */

.whatsapp-btn {

    background: #258c45;

}


.whatsapp-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:

        0 8px 18px rgba(37, 140, 69, 0.3);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .our-services-section {

        padding: 80px 20px;

    }


    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .service-card:last-child {

        grid-column: span 2;

        max-width: 430px;

        width: 100%;

        margin: 0 auto;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .our-services-section {

        padding: 65px 15px;

    }


    .services-heading {

        margin-bottom: 40px;

    }


    .services-heading h2 {

        font-size: 34px;

    }


    .services-heading p {

        font-size: 14px;

    }


    .services-grid {

        grid-template-columns: 1fr;

        gap: 22px;

    }


    .service-card:last-child {

        grid-column: auto;

        max-width: 100%;

    }


    .service-image {

        height: 230px;

    }


    .service-content {

        padding: 22px 18px 25px;

    }


    .service-content h3 {

        font-size: 19px;

    }


    .service-content p {

        min-height: auto;

    }


    .call-btn,
    .whatsapp-btn {

        font-size: 12px;

        padding: 10px 7px;

    }

}
 
/* =========================================
   IMAGE BANNER SECTION
========================================= */

.image-banner-section {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.image-banner-section img {
    display: block;

    width: 100%;
   
    object-fit: cover;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .image-banner-section img {
        width: 100%;
        
    }

}
/* =========================================
   ABOUT US SECTION
========================================= */

.about-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #fffaf0,
            #f5f1e8
        );

}


/* =========================================
   ABOUT IMAGE
========================================= */

.about-image-box {

    position: relative;

    width: 100%;

    max-width: 520px;

    margin: auto;

    padding: 12px;

    background:#a70a08;

    border-radius: 22px;

}


.about-image-box::before {

    content: "";

    position: absolute;

    top: -18px;

    left: -18px;

    width: 100px;

    height: 100px;

    border-top: 4px solid #ffd700;

    border-left: 4px solid #ffd700;

    border-radius: 15px 0 0 0;

}


.about-image-box::after {

    content: "";

    position: absolute;

    right: -18px;

    bottom: -18px;

    width: 100px;

    height: 100px;

    border-right: 4px solid #ffd700;

    border-bottom: 4px solid #ffd700;

    border-radius: 0 0 15px 0;

}


.about-image-box img {

    display: block;

    position: relative;

    z-index: 1;

    width: 100%;
 

    object-fit: cover;

    border-radius: 15px;

}

 
/* =========================================
   ABOUT CONTENT
========================================= */

.about-content {

    max-width: 600px;

}


.about-subtitle {

    display: inline-block;

    padding: 8px 18px;

    color: #fff;

    background: #a70a08;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 18px;

}


.about-content h2 {

    margin: 0 0 20px;

    color: #222222;

    font-size: clamp(34px, 4vw, 50px);

    font-weight: 800;

    line-height: 1.2;

}


.about-content h2 span {

    display: block;

    color: #a70a08;

}


.about-content p {

    color: #000;

    font-size: 16px;

    line-height: 1.8;

}


.about-content .about-intro {

    color: #444444;

    font-size: 17px;

}


.about-content .about-intro strong {

    color: #a70a08;

}

/* =========================================
   ABOUT BUTTON
========================================= */

.about-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 14px 25px;

    color: #ffffff;

    background:#a70a08;

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: all 0.35s ease;

}


.about-btn:hover {

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:

        0 10px 25px rgba(154, 107, 0, 0.3);

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .about-section {

        padding: 65px 15px;

    }


    .about-content {

        max-width: 100%;

        text-align: center;

    }


    .about-features {

        text-align: left;

    }


    .about-image-box {

        max-width: 500px;

    }

}


@media (max-width: 768px) {

    .about-content h2 {

        font-size: 35px;

    }


    .about-content p {

        font-size: 15px;

    }

}


@media (max-width: 480px) {

    .about-image-box {

        padding: 8px;

    }
 


    .about-image-box::before,

    .about-image-box::after {

        width: 65px;

        height: 65px;

    }
 

    .about-content h2 {

        font-size: 30px;

    }


    .about-feature {

        padding: 12px;

    }


    .about-feature-icon {

        width: 45px;

        height: 45px;

        font-size: 19px;

    }


    .about-feature h4 {

        font-size: 15px;

    }


    .about-feature p {

        font-size: 12px;

    }


    .about-btn {

        width: 100%;

    }

}


/* =========================================
   WHY CHOOSE US SECTION
========================================= */

.why-choose-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background:#a70a08;

}


/* =========================================
   LEFT CONTENT
========================================= */

.why-content {

    max-width: 520px;

}


.why-subtitle {

    display: inline-block;

    padding: 8px 18px;

    color: #000;

    background:#fff;

    border: 1px solid rgba(212, 175, 55, 0.35);

    border-radius: 30px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 20px;

}


.why-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(32px, 4vw, 48px);

    font-weight: 800;

    line-height: 1.2;

}


.why-content h2 span {

    display: block;

    color:#ffd700;

}


.why-content p {

    margin-bottom: 15px;

    color:#fff;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   CALL BUTTON
========================================= */

.why-call-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    margin-top: 15px;

    padding: 13px 25px;

    color: #ffffff;

    background:

        linear-gradient(
            135deg,
            #9a6b00,
            #d4af37
        );

    border-radius: 30px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: all 0.35s ease;

}


.why-call-btn:hover {

    color: #ffffff;

    transform: translateY(-4px);

    box-shadow:

        0 10px 25px rgba(212, 175, 55, 0.25);

}


/* =========================================
   WHY CARD
========================================= */

.why-card {

    position: relative;

    height: 100%;

    padding: 28px 25px;

    overflow: hidden;

    background:

        linear-gradient(
            145deg,
            #ffffff,
            #fff8e5
        );

    border: 1px solid rgba(212, 175, 55, 0.25);

    border-radius: 15px;

    transition: all 0.4s ease;

}


/* NUMBER */

.why-card-number {

    position: absolute;

    top: 12px;

    right: 18px;

    color: rgba(184, 134, 11, 0.18);

    font-size: 38px;

    font-weight: 900;

}


/* CARD HOVER */

.why-card:hover {

    transform: translateY(-8px);

    border-color: #d4af37;

    box-shadow:

        0 15px 35px rgba(0, 0, 0, 0.18);

}


/* =========================================
   ICON
========================================= */

.why-card-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin-bottom: 20px;

    color: #ffffff;

    background:

        linear-gradient(
            135deg,
            #ffd700,
            #d4af37
        );

    border-radius: 12px;

    font-size: 25px;

    transition: all 0.4s ease;

}


.why-card:hover .why-card-icon {

    transform: rotateY(360deg);

}


/* =========================================
   CARD CONTENT
========================================= */

.why-card h3 {

    margin-bottom: 10px;

    color: #a70a08;

    font-size: 20px;

    font-weight: 700;

}


.why-card p {

    margin: 0;

    color: #000;

    font-size: 14px;

    line-height: 1.7;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .why-content {

        max-width: 100%;

        text-align: center;

    }


    .why-content h2 span {

        display: inline;

    }


    .why-call-btn {

        margin-bottom: 10px;

    }

}


@media (max-width: 768px) {

    .why-choose-section {

        padding: 60px 15px;

    }


    .why-content h2 {

        font-size: 34px;

    }


    .why-content p {

        font-size: 15px;

    }


    .why-card {

        padding: 25px 20px;

    }

}


@media (max-width: 480px) {

    .why-content h2 {

        font-size: 30px;

    }


    .why-subtitle {

        font-size: 11px;

    }

}
/* =========================================
   WHY CHOOSE US COUNTERS
========================================= */

.why-counters {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.18);

}


.counter-box {

    flex: 1;

    padding: 12px 8px;

    text-align: center;

    border-right: 1px solid rgba(255, 255, 255, 0.18);

}


.counter-box:last-child {

    border-right: none;

}


.counter-number {

    display: block;

    margin-bottom: 5px;

    color: #ffd700;

    font-size: 30px;

    font-weight: 800;

    line-height: 1;

}


.counter-box span {

    display: block;

    color: #fff;

    font-size: 15px;

    line-height: 1.4;

}


/* =========================================
   MOBILE COUNTER
========================================= */

@media (max-width: 576px) {

    .why-counters {

        gap: 5px;

    }


    .counter-number {

        font-size: 24px;

    }


    .counter-box span {

        font-size: 10px;

    }

}
/* =========================================
   OUR QUICK SERVICES SECTION
========================================= */

.quick-services-section {

    position: relative;

    width: 100%;

    padding: 100px 0;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #fffaf0,
            #f4ead7
        );

}
 /* =========================================
   OUR QUICK SERVICES SECTION
========================================= */

.quick-services-section {

    width: 100%;

    padding: 120px 0 100px;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            #fffaf0,
            #f4ead7
        );

}


/* =========================================
   SECTION HEADING
========================================= */

.quick-heading {

    max-width: 700px;

    margin: 0 auto 170px;

    text-align: center;

}


.quick-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color: #a70a08;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.quick-heading h2 {

    margin: 0 0 15px;

    color: #000;

    font-size: 45px;

    font-weight: 800;

    line-height: 1.2;

}


.quick-heading h2 strong {

    color: #a70a08;

}


.quick-heading p {

    margin: 0;

    color: #000;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   SERVICES GRID
========================================= */

.quick-services-list {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    column-gap: 25px;

    row-gap: 180px;

}


/* =========================================
   SERVICE CARD
========================================= */

.quick-service-card {

    position: relative;

    min-height: 330px;

    padding: 145px 22px 30px;

    background: #a70a08;

    border-radius: 8px;

   

    transition: all 0.4s ease;

}


/* =========================================
   PAPER CUT TOP
========================================= */

.quick-service-card::before {

    content: "";

    position: absolute;

    top: -12px;

    left: 0;

    width: 100%;

    height: 25px;

    background: #a70a08;

    clip-path: polygon(

        0 50%,

        5% 20%,

        10% 55%,

        15% 15%,

        20% 50%,

        25% 20%,

        30% 60%,

        35% 15%,

        40% 55%,

        45% 20%,

        50% 55%,

        55% 15%,

        60% 55%,

        65% 20%,

        70% 55%,

        75% 15%,

        80% 55%,

        85% 20%,

        90% 55%,

        95% 15%,

        100% 50%,

        100% 100%,

        0 100%

    );

}


/* =========================================
   PAPER CUT BOTTOM
========================================= */

.quick-service-card::after {

    content: "";

    position: absolute;

    bottom: -12px;

    left: 0;

    width: 100%;

    height: 25px;

    background: #a70a08;

    clip-path: polygon(

        0 0,

        100% 0,

        100% 50%,

        95% 80%,

        90% 45%,

        85% 85%,

        80% 45%,

        75% 80%,

        70% 45%,

        65% 85%,

        60% 45%,

        55% 80%,

        50% 45%,

        45% 85%,

        40% 45%,

        35% 80%,

        30% 45%,

        25% 85%,

        20% 45%,

        15% 80%,

        10% 45%,

        5% 85%,

        0 50%

    );

}


/* =========================================
   CARD HOVER
========================================= */

.quick-service-card:hover {

    transform: translateY(-12px);

    box-shadow:

        10px 12px 0 #ffd700,

        0 20px 35px rgba(0, 0, 0, 0.18);

}


/* =========================================
   IMAGE 250 X 250
========================================= */

.quick-service-image {

    position: absolute;

    top: -125px;

    left: 50%;

    width: 250px;

    height: 250px;

    overflow: hidden;

    transform: translateX(-50%);

    background: #ffffff;

    border: 8px solid #fffdf8;

    border-radius: 50%;

    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.22);

}


/* =========================================
   IMAGE
========================================= */

.quick-service-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.quick-service-card:hover
.quick-service-image img {

    transform: scale(1.08);

}


/* =========================================
   CONTENT
========================================= */

.quick-service-content {

    position: relative;

    z-index: 2;

    text-align: center;

}


.quick-service-content h3 {

    margin: 0 0 15px;

    color: #ffd700;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.35;

}


.quick-service-content p {
 
    margin: 0 0 22px;

    color: #fff;

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================
   CALL BUTTON
========================================= */

.quick-call-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 10px 20px;

    color: #000;

    background:#ffd700;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.35s ease;

}


.quick-call-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    background:#000;

    box-shadow:

        0 8px 18px rgba(154, 107, 0, 0.25);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .quick-services-section {

        padding: 100px 20px 80px;

    }


    .quick-heading {

        margin-bottom: 170px;

    }


    .quick-services-list {

        grid-template-columns: repeat(2, 1fr);

        column-gap: 25px;

        row-gap: 180px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .quick-services-section {

        padding: 100px 15px 80px;

    }


    .quick-heading {

        margin-bottom: 170px;

    }


    .quick-heading span {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .quick-heading h2 {

        font-size: 32px;

    }


    .quick-heading p {

        font-size: 14px;

    }


    .quick-services-list {

        grid-template-columns: 1fr;

        row-gap: 180px;

    }


    .quick-service-card {

        width: 100%;

        max-width: 360px;

        min-height: 330px;

        margin: 0 auto;

    }


    .quick-service-image {

        width: 250px;

        height: 250px;

    }


    .quick-service-content h3 {

        font-size: 19px;

    }


    .quick-service-content p {

        font-size: 13px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .quick-service-card {

        max-width: 320px;

    }

}
 
/* =========================================
   MODERN CTA SECTION
========================================= */

.modern-cta-section {

    padding: 85px 0;

    background: #f7f1e5;

}


/* MAIN BOX */

.modern-cta-box {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    min-height: 330px;

    padding: 55px 65px;

    overflow: hidden;

    background:linear-gradient(110deg, #a70a08 0%, #a70a08 62%, #ffd700 62.1%, #ffd700 100%);

    box-shadow:

        12px 12px 0 #dfcda5,

        0 20px 45px rgba(0, 0, 0, 0.18);

}


/* DECORATIVE CIRCLE */

.modern-cta-box::before {

    content: "";

    position: absolute;

    left: 48%;

    top: -150px;

    width: 350px;

    height: 350px;

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 50%;

}


/* =========================================
   LEFT CONTENT
========================================= */

.modern-cta-content {

    position: relative;

    z-index: 2;

    max-width: 590px;

}


.modern-cta-label {

    display: inline-block;

    margin-bottom: 15px;

    color: #ffd700;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.modern-cta-content h2 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 800;

    line-height: 1.12;

}


.modern-cta-content h2 span {

    display: block;

    color: #ffd700;

}


.modern-cta-content p {

    max-width: 500px;

    margin-bottom: 25px;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================
   BUTTONS
========================================= */

.modern-cta-buttons {

    display: flex;

    gap: 12px;

}


.modern-call-btn,
.modern-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 13px 23px;

    border-radius: 3px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.modern-call-btn {

    color: #000;

    background: #ffd700;

}


.modern-whatsapp-btn {

    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.4);

}


.modern-call-btn:hover,
.modern-whatsapp-btn:hover {

    color: #ffffff;

    transform: translateY(-4px);

}


.modern-call-btn:hover {

    background: #9a6b00;

}


/* =========================================
   RIGHT CONTACT AREA
========================================= */

.modern-cta-right {

    position: relative;

    z-index: 2;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 300px;

    text-align: center;

}


.cta-ring {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 125px;

    height: 125px;

    margin-bottom: 18px;

    border: 1px solid #000;

    border-radius: 50%;

}


.cta-ring-inner {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 88px;

    height: 88px;

    color: #fff;

    background: #a70a08;

    border-radius: 50%;

    font-size: 30px;

    transition: all 0.4s ease;

}


.modern-cta-right:hover .cta-ring-inner {

    transform: rotate(15deg) scale(1.1);

}


.modern-cta-right > span {

    margin-bottom: 7px;

    color: #000;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1.5px;

}


.modern-cta-right > a {

    color: #a70a08;

    font-size: 23px;

    font-weight: 800;

    text-decoration: none;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .modern-cta-box {

        padding: 45px 35px;

        background:

            linear-gradient(
                110deg,
                #171717 0%,
                #242424 58%,
                #b8860b 58.1%,
                #d4af37 100%
            );

    }


    .modern-cta-right {

        width: 240px;

    }


    .modern-cta-right > a {

        font-size: 18px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .modern-cta-section {

        padding: 60px 15px;

    }


    .modern-cta-box {

        flex-direction: column;

        padding: 45px 25px;

        text-align: center;

        background:

            linear-gradient(
                180deg,
                #171717 0%,
                #242424 70%,
                #b8860b 70.1%,
                #d4af37 100%
            );

    }


    .modern-cta-content {

        max-width: 100%;

    }


    .modern-cta-content h2 span {

        display: inline;

    }


    .modern-cta-content p {

        font-size: 15px;

    }


    .modern-cta-buttons {

        justify-content: center;

        flex-wrap: wrap;

    }


    .modern-cta-right {

        width: 100%;

        margin-top: 35px;

    }

}


@media (max-width: 480px) {

    .modern-cta-box {

        padding: 40px 20px;

    }


    .modern-cta-content h2 {

        font-size: 31px;

    }


    .modern-cta-buttons {

        flex-direction: column;

    }


    .modern-call-btn,
    .modern-whatsapp-btn {

        width: 100%;

    }


    .modern-cta-right > a {

        font-size: 19px;

    }

}
/* =========================================
   CLIENT FEEDBACK SECTION
========================================= */

.client-feedback-section {

    position: relative;

    padding: 100px 0;

    overflow: hidden;

    background: #ffffff;

}


/* =========================================
   HEADING
========================================= */

.feedback-heading {

    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;

}


.feedback-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color: #a70a08;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.feedback-heading h2 {

    margin: 0 0 15px;

    color: #000;

    font-size: 45px;

    font-weight: 800;

}


.feedback-heading h2 strong {

    color: #a70a08;

}


.feedback-heading p {

    margin: 0;

    color: #000;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   FEEDBACK GRID
========================================= */

.feedback-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}


/* =========================================
   FEEDBACK CARD
========================================= */

.feedback-card {

    position: relative;

    padding: 30px;

    background: #a70a08;

    border: 1px solid #000;

    border-radius: 15px;

    box-shadow:

        0 10px 30px rgba(0, 0, 0, 0.07);

    transition: all 0.4s ease;

}


.feedback-card:hover {

    transform: translateY(-10px);

    border-color: #d4af37;

    box-shadow:

        0 20px 40px rgba(154, 107, 0, 0.15);

}


/* =========================================
   CLIENT TOP
========================================= */

.feedback-top {

    display: flex;

    align-items: center;

    gap: 15px;

}


/* =========================================
   CLIENT IMAGE
========================================= */

.client-image {

    width: 65px;

    height: 65px;

    overflow: hidden;

    flex-shrink: 0;

    border: 3px solid #d4af37;

    border-radius: 50%;

}


.client-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================
   CLIENT DETAILS
========================================= */

.client-details {

    flex: 1;

}


.client-details h3 {

    margin: 0 0 5px;

    color: #ffd700;

    font-size: 20px;

    font-weight: 700;

}


.client-details span {

    color: #fff;

    font-size: 12px;

}


/* =========================================
   QUOTE ICON
========================================= */

.quote-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 42px;

    height: 42px;

    color: #ffffff;

    background:#ffd700;

    border-radius: 50%;

    font-size: 20px;

}


/* =========================================
   STARS
========================================= */

.feedback-stars {

    margin: 15px 0 15px;

    color: #ffd700;

    font-size: 18px;

    letter-spacing: 3px;

}


/* =========================================
   FEEDBACK TEXT
========================================= */

.feedback-text {

    margin: 0;

    color: #fff;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .client-feedback-section {

        padding: 80px 20px;

    }


    .feedback-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .feedback-card:last-child {

        grid-column: span 2;

        max-width: 500px;

        margin: auto;

    }


    .feedback-heading h2 {

        font-size: 40px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .client-feedback-section {

        padding: 70px 15px;

    }


    .feedback-heading {

        margin-bottom: 45px;

    }


    .feedback-heading span {

        font-size: 11px;

        letter-spacing: 1.5px;

    }


    .feedback-heading h2 {

        font-size: 32px;

    }


    .feedback-heading p {

        font-size: 14px;

    }


    .feedback-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .feedback-card:last-child {

        grid-column: auto;

        max-width: 100%;

    }


    .feedback-card {

        padding: 25px 20px;

    }

}
/* =========================================
   MAIN FOOTER
========================================= */

.main-footer {

    position: relative;

    padding-top: 75px;

    color: rgba(255, 255, 255, 0.75);

    background:#000;

}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {

    display: grid;

    grid-template-columns:

        1.4fr

        1fr

        1fr

        1.2fr;

    gap: 45px;
 

}


/* =========================================
   FOOTER COLUMN
========================================= */

.footer-column h4 {

    position: relative;

    margin: 0 0 25px;

    padding-bottom: 12px;

    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

}


.footer-column h4::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 45px;

    height: 3px;

    background:#ffd700;

}


/* =========================================
   ABOUT COLUMN
========================================= */

.footer-about h3 {

    margin: 0 0 18px;

    color: #ffffff;

    font-size: 28px;

    font-weight: 800;

}


.footer-about h3 span {

    color: #ffd700;

}


.footer-about p {

    max-width: 300px;

    margin: 0;

    color: #fff;

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {

    display: flex;

    gap: 10px;

    margin-top: 25px;

}


.footer-social a {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 40px;

    height: 40px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.1);

    border: 1px solid rgba(212, 175, 55, 0.4);

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;

}


.footer-social a:hover {

    color: #222222;

    background: #d4af37;

    transform: translateY(-4px);

}


/* =========================================
   SERVICE LIST
========================================= */

.footer-column ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.footer-column ul li {

    margin-bottom: 13px;

}


.footer-column ul li a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #fff;

    font-size: 13px;

    text-decoration: none;

    transition: all 0.3s ease;

}


.footer-column ul li a i {

    color:#ffd700;

    font-size: 10px;

}


.footer-column ul li a:hover {

    color: #ffd700;

    padding-left: 5px;

}


/* =========================================
   CONTACT DETAILS
========================================= */

.footer-contact-item {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;

}


.footer-contact-item > i {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    flex-shrink: 0;

    color: #ffd700;

    background: rgba(212, 175, 55, 0.12);

    border-radius: 50%;

}


.footer-contact-item div {

    display: flex;

    flex-direction: column;

    gap: 4px;

}


.footer-contact-item span {

    color: rgba(255, 255, 255, 0.5);

    font-size: 11px;

}


.footer-contact-item strong {

    color: #ffffff;

    font-size: 14px;

}


.footer-contact-item a {

    color: #ffd700;

    font-size: 14px;

    text-decoration: none;

}


.footer-contact-item a:hover {

    color: #ffffff;

}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {

    padding: 20px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    text-align: center;

}


.footer-bottom p {

    margin: 0;

    color: #fff;

    font-size: 13px;

}


.footer-bottom strong {

    color: #ffd700;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .main-footer {

        padding: 60px 20px 0;

    }


    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 40px 30px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .main-footer {

        padding: 55px 15px 0;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-about p {

        max-width: 100%;

    }


    .footer-bottom {

        margin-top: 10px;

    }

}
/* =========================================
   FEATURED SERVICES SECTION
========================================= */

.featured-services-section {

    position: relative;

    padding: 110px 0;

    overflow: hidden;

    background: #ffffff;

}


/* =========================================
   HEADING
========================================= */

.featured-services-heading {

    max-width: 700px;

    margin: 0 auto 70px;

    text-align: center;

}


.featured-services-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color:#a70a08;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.featured-services-heading h2 {

    margin: 0 0 15px;

    color: #000;

    font-size: 45px;

    font-weight: 800;

}


.featured-services-heading h2 strong {

    color: #a70a08;

}


.featured-services-heading p {

    margin: 0;

    color: #000;

    font-size: 16px;

    line-height: 1.8;

}


/* =========================================
   SERVICES GRID
========================================= */

.featured-services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    align-items: center;

}


/* =========================================
   SERVICE CARD
========================================= */

.featured-service-card {

    position: relative;

    min-height: 430px;

    padding: 145px 35px 40px;

    overflow: hidden;

    text-align: center;

    background:#fff;

    border: 1px solid #ffd700;

    border-radius: 55% 45% 50% 50% / 35% 35% 65% 65%;

    box-shadow:

        0 15px 35px rgba(0, 0, 0, 0.10);

    transition: all 0.5s ease;

}


/* =========================================
   MIDDLE CARD
========================================= */

.featured-service-card-middle {

    transform: translateY(-25px);

}


.featured-service-card:hover {

    transform: translateY(-18px) rotate(1deg);

    box-shadow:

        0 25px 45px rgba(154, 107, 0, 0.20);

    border-color: #d4af37;

}


.featured-service-card-middle:hover {

    transform: translateY(-40px) rotate(-1deg);

}


/* =========================================
   DECORATIVE LEAF
========================================= */

.featured-service-card::before {

    content: "";

    position: absolute;

    top: 25px;

    right: 25px;

    width: 45px;

    height: 80px;

    background: rgba(212, 175, 55, 0.15);

    border-radius: 100% 0 100% 0;

    transform: rotate(35deg);

}


.featured-service-card::after {

    content: "";

    position: absolute;

    bottom: 30px;

    left: 20px;

    width: 35px;

    height: 65px;

    background: rgba(212, 175, 55, 0.12);

    border-radius: 0 100% 0 100%;

    transform: rotate(-35deg);

}


/* =========================================
   IMAGE
========================================= */

.featured-service-image {

    position: absolute;

    top: 35px;

    left: 50%;

    width: 200px;

    height: 200px;

    overflow: hidden;

    transform: translateX(-50%);

    border: 7px solid #ffffff;

    border-radius: 50%;

    box-shadow:

        0 8px 20px rgba(0, 0, 0, 0.18);

}


.featured-service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.featured-service-card:hover
.featured-service-image img {

    transform: scale(1.12);

}


/* =========================================
   CONTENT
========================================= */

.featured-service-content {

    position: relative;
margin-top: 110px;
    z-index: 2;

}


.featured-service-content h3 {

    margin: 0 0 15px;

    color: #a70a08;

    font-size: 21px;

    font-weight: 800;

}


.featured-service-content p {

    min-height: 75px;

    margin: 0 0 25px;

    color: #000;

    font-size: 16px;

    line-height: 1.7;

}


/* =========================================
   BUTTON
========================================= */

.featured-service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 11px 23px;

    color: #ffffff;

    background:#a70a08;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.featured-service-btn:hover {

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:

        0 8px 20px rgba(154, 107, 0, 0.3);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .featured-services-section {

        padding: 85px 20px;

    }


    .featured-services-grid {

        grid-template-columns: repeat(2, 1fr);

    }


    .featured-service-card:last-child {

        grid-column: span 2;

        max-width: 380px;

        width: 100%;

        margin: 20px auto 0;

    }


    .featured-service-card-middle {

        transform: none;

    }


    .featured-service-card-middle:hover {

        transform: translateY(-18px);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .featured-services-section {

        padding: 70px 15px;

    }


    .featured-services-heading {

        margin-bottom: 55px;

    }


    .featured-services-heading h2 {

        font-size: 32px;

    }


    .featured-services-heading p {

        font-size: 14px;

    }


    .featured-services-grid {

        grid-template-columns: 1fr;

        gap: 55px;

    }


    .featured-service-card {

        min-height: 420px;

        max-width: 360px;

        width: 100%;

        margin: auto;

    }


    .featured-service-card:last-child {

        grid-column: auto;

        max-width: 360px;

        margin: auto;

    }


    .featured-service-card-middle {

        transform: none;

    }


    .featured-service-card-middle:hover {

        transform: translateY(-18px);

    }

}
/* =========================================
   FLOATING CONTACT BUTTONS
========================================= */

.floating-contact-buttons {

    position: fixed;

    right: 20px;

    bottom: 25px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 12px;

}


/* =========================================
   COMMON BUTTON
========================================= */

.floating-contact-buttons a {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-width: 135px;

    padding: 13px 18px;

    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    box-shadow:

        0 8px 20px rgba(0, 0, 0, 0.25);

    transition: all 0.3s ease;

}


/* =========================================
   CALL BUTTON
========================================= */

.floating-call {

    background:

        linear-gradient(

            135deg,

            #9a6b00,

            #d4af37

        );

}


.floating-call:hover {

    color: #ffffff;

    transform: translateX(-8px);

    box-shadow:

        0 12px 25px rgba(154, 107, 0, 0.35);

}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.floating-whatsapp {

    background: #25D366;

}


.floating-whatsapp:hover {

    color: #ffffff;

    transform: translateX(-8px);

    box-shadow:

        0 12px 25px rgba(37, 211, 102, 0.35);

}


/* =========================================
   ICON
========================================= */

.floating-contact-buttons i {

    font-size: 18px;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .floating-contact-buttons {

        right: 12px;

        bottom: 15px;

        gap: 8px;

    }


    .floating-contact-buttons a {

        min-width: auto;

        width: 52px;

        height: 52px;

        padding: 0;

        border-radius: 50%;

    }


    .floating-contact-buttons span {

        display: none;

    }


    .floating-contact-buttons i {

        font-size: 20px;

    }

}
/* =====================================================
   HINDI CALL TO ACTION SECTION
===================================================== */

.hindi-cta-section {

    position: relative;

    width: 100%;

    padding: 85px 20px;

    overflow: hidden;

    background-image:#000;

    background-size: cover;

    background-position: center;

}


/* Overlay */

.hindi-cta-overlay {

    position: absolute;

    inset: 0;

    background:#a70a08;

}


/* Decorative Circle */

.hindi-cta-section::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -150px;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(225, 189, 85, 0.35);

    border-radius: 50%;

}


.hindi-cta-section::after {

    content: "";

    position: absolute;

    bottom: -180px;

    left: -150px;

    width: 400px;

    height: 400px;

    border: 1px solid #fff;

    border-radius: 50%;

}


/* =====================================================
   CONTENT
===================================================== */

.hindi-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.hindi-cta-small {

    display: inline-block;

    margin-bottom: 15px;

    color: #ffd700;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hindi-cta-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.45;

    font-weight: 700;

}


.hindi-cta-content h2 span {

    display: block;

    color: #ffd700;

}


.hindi-cta-content p {

    max-width: 700px;

    margin: 0 auto 30px;

    color: #fff;

    font-size: 18px;

    line-height: 1.8;

}


/* =====================================================
   BUTTONS
===================================================== */

.hindi-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}


.hindi-cta-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 210px;

    padding: 15px 24px;

    border-radius: 35px;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hindi-cta-call {

    color: #000;

    background: #ffd700;

}


.hindi-cta-whatsapp {

    color: #ffffff;

    background: #25D366;

}


.hindi-cta-buttons a:hover {

    transform: translateY(-5px);

    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.25);

}


.hindi-cta-call:hover {

    color: #000;

    background: #fff;

}


.hindi-cta-whatsapp:hover {

    color: #ffffff;

    background: #20a464;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hindi-cta-section {

        padding: 65px 15px;

    }


    .hindi-cta-small {

        font-size: 11px;

        letter-spacing: 1px;

    }


    .hindi-cta-content h2 {

        font-size: 28px;

        line-height: 1.5;

    }


    .hindi-cta-content p {

        font-size: 15px;

        line-height: 1.8;

    }


    .hindi-cta-buttons {

        flex-direction: column;

        gap: 12px;

    }


    .hindi-cta-buttons a {

        width: 100%;

        max-width: 320px;

        min-height: 50px;

        font-size: 14px;

    }

}