*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================================================
   HTML / BODY
================================================== */

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
       width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
    position: relative;

    font-family: Arial, Helvetica, sans-serif;
 
}
body > * {
    max-width: 100%;
}
img {
    max-width: 100%;
    height: auto;
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
/* ==================================================
   IMAGES
================================================== */

img {
    max-width: 100%;
    height: auto;

    display: block;
}


/* ==================================================
   LINKS
================================================== */

a {
    text-decoration: none;
}


/* ==================================================
   TOP HEADER
================================================== */

.top-header {
    width: 100%;
    max-width: 100%;

    background: #5a1018;

    border-bottom: 3px solid #d4af37;

    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}


.header-container {
    width: 100%;
    max-width: 1250px;

    min-height: 82px;

    margin: 0 auto;

    padding: 12px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;
}


/* ==================================================
   PROMOTIONAL TEXT
================================================== */

.promo-text {
    min-width: 0;

    flex: 1;

    display: flex;

    align-items: center;

    gap: 13px;

    color: #ffffff;
}


.promo-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d4af37;

    border-radius: 50%;

    color: #d4af37;

    font-size: 22px;
}


.promo-content {
    min-width: 0;
}


.promo-text strong {
    display: block;

    color: #f5d76e;

    font-size: 21px;

    line-height: 1.3;

    margin-bottom: 4px;
}


.promo-text small {
    display: block;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.5;
}


/* ==================================================
   HEADER ACTIONS
================================================== */

.header-actions {
    flex: 0 0 auto;

    display: flex;

    align-items: center;

    gap: 10px;
}


/* ==================================================
   CONTACT BUTTON
================================================== */

.contact-btn {
    min-width: 155px;

    min-height: 52px;

    padding: 8px 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border-radius: 6px;

    border: 1px solid #d4af37;

    transition: all 0.3s ease;
}


/* ==================================================
   BUTTON ICON
================================================== */

.btn-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 18px;

    font-weight: bold;
}


/* ==================================================
   BUTTON CONTENT
================================================== */

.btn-content {
    display: flex;

    flex-direction: column;

    text-align: left;
}


.btn-content small {
    font-size: 11px;

    line-height: 1.2;

    margin-bottom: 2px;
}


.btn-content strong {
    font-size: 15px;

    line-height: 1.2;
}


/* ==================================================
   CALL BUTTON
================================================== */

.call-btn {
    background: #d4af37;

    color: #4b0c13;
}


.call-btn .btn-icon {
    color: #5a1018;
}


.call-btn:hover {
    background: #f0d45c;

    transform: translateY(-2px);
}


/* ==================================================
   WHATSAPP BUTTON
================================================== */

.whatsapp-btn {
    background: #ffffff;

    color: #5a1018;
}


.whatsapp-btn .btn-icon {
    color: #168c45;
}


.whatsapp-btn:hover {
    background: #f7f1dc;

    transform: translateY(-2px);
}
/* ==================================================
   MARQUEE SECTION
================================================== */

.marquee-section {
    width: 100%;
    max-width: 100%;

    background: #5a1018;

    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;

    overflow: hidden;
}


.marquee-wrapper {
    width: 100%;

    overflow: hidden;

    white-space: nowrap;
}


.marquee-content {
    width: max-content;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 10px 0;

    animation: marqueeScroll 30s linear infinite;
}


.marquee-content strong {
    color: #ffffff;

    font-size: 15px;

    font-weight: 600;
}


.marquee-content span {
    color: #d4af37;

    font-size: 18px;
}


/* ==================================================
   MARQUEE ANIMATION
================================================== */

@keyframes marqueeScroll {

    0% {
        transform: translateX(100vw);
    }

    100% {
        transform: translateX(-100%);
    }

}


/* ==================================================
   MOBILE MARQUEE
================================================== */

@media (max-width: 700px) {

    .marquee-content {
        gap: 18px;

        padding: 9px 0;

        animation-duration: 18s;
    }

    .marquee-content strong {
        font-size: 13px;
    }

    .marquee-content span {
        font-size: 16px;
    }

}

/* ==================================================
   LOGO SECTION
================================================== */

.logo-section {
    width: 100%;
    max-width: 100%;

    background: #ffffff;

    padding: 10px;

    border-bottom: 1px solid #d4af37;
}


.logo-container {
    width: 100%;
   
    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    align-items: center;

    justify-items: center;

    gap: 20px;
}


.logo-item {
    width: 100%;
     display: flex;

    align-items: center;

    justify-content: center;
}


.logo-item img {
    width: 100%;
    object-fit: contain;
}


/* ==================================================
   HERO SLIDER
================================================== */

.hero-slider {
    width: 100%;
    

    overflow: hidden;

    background: #4b0c13;
}


.slider-wrapper {
    width: 100%;
    max-width: 100%;

    position: relative;

    overflow: hidden;
}


.slide {
    width: 100%;
    max-width: 100%;

    display: none;
}


.slide.active {
    display: block;
}


.slide img {
    width: 100%;
    max-width: 100%;

     
    object-fit: cover;
}


/* ==================================================
   MAIN CONTENT
================================================== */

.main-content {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 20px;

    text-align: center;
}


.main-content h1 {
    color: #5a1018;

    margin-bottom: 10px;
}


.main-content p {
    color: #555555;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {

    .header-container {
        padding: 12px 15px;

        gap: 15px;
    }


    .promo-text strong {
        font-size: 17px;
    }


    .promo-text small {
        font-size: 12px;
    }


    .contact-btn {
        min-width: 135px;

        padding: 8px 10px;
    }


    .btn-content strong {
        font-size: 13px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 700px) {


    /* HEADER */

    .header-container {
        width: 100%;

        padding: 12px;

        flex-direction: column;

        align-items: stretch;

        gap: 12px;
    }


    /* PROMOTIONAL TEXT */

    .promo-text {
        width: 100%;

        justify-content: center;

        text-align: center;
    }


    .promo-icon {
        display: none;
    }


    .promo-content {
        width: 100%;
    }


    .promo-text strong {
        font-size: 17px;

        line-height: 1.4;
    }


    .promo-text small {
        font-size: 12px;

        line-height: 1.5;
    }


    /* ACTION BUTTONS */

    .header-actions {
        width: 100%;

        display: flex;

        gap: 8px;
    }


    .contact-btn {
        width: calc(50% - 4px);

        min-width: 0;

        min-height: 48px;

        padding: 7px 6px;

        flex: 1;
    }


    .btn-icon {
        width: 30px;
        height: 30px;

        flex: 0 0 30px;

        font-size: 15px;
    }


    .btn-content small {
        font-size: 9px;
    }


    .btn-content strong {
        font-size: 12px;
    }


    /* LOGO SECTION */

    .logo-section {
        width: 100%;

    }


    .logo-container {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 8px;
    }


    .logo-item {
        width: 100%;
        display: flex;

        align-items: center;

        justify-content: center;
    }


    .logo-item img {
        width: 100%;
 
    }


    /* SLIDER */

    .hero-slider {
        width: 100%;

        overflow: hidden;
    }


    .slider-wrapper {
        width: 100%;

        overflow: hidden;
    }


    .slide {
        width: 100%;
    }


    .slide img {
        width: 100%;
         
    }


    /* MAIN */

    .main-content {
        padding: 50px 15px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {


    .header-container {
        padding: 10px;
    }


    .promo-text strong {
        font-size: 15px;
    }


    .promo-text small {
        font-size: 11px;
    }


    .header-actions {
        gap: 6px;
    }


    .contact-btn {
        width: calc(50% - 3px);

        padding: 6px 4px;

        gap: 5px;
    }


    .btn-icon {
        width: 27px;
        height: 27px;

        flex: 0 0 27px;
    }


    .btn-content small {
        font-size: 8px;
    }


    .btn-content strong {
        font-size: 11px;
    }
 

}
/* ==================================================
   CALL TO ACTION SECTION
================================================== */

.cta-section {
    width: 100%;
    max-width: 100%;

    background: linear-gradient(
        135deg,
        #4b0c13 0%,
        #6a151d 50%,
        #4b0c13 100%
    );

    border-top: 1px solid #d4af37;
    border-bottom: 1px solid #d4af37;

    overflow: hidden;
}


.cta-container {
    width: 100%;
    max-width: 1150px;

    margin: 0 auto;

    padding: 45px 20px;

    text-align: center;
}


.cta-content {
    max-width: 850px;

    margin: 0 auto;
}


/* Label */

.cta-label {
    display: inline-block;

    color: #d4af37;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 1px;

    margin-bottom: 12px;
}


/* Heading */

.cta-content h2 {
    color: #ffffff;

    font-size: 32px;

    line-height: 1.35;

    margin-bottom: 12px;
}


.cta-content h2 span {
    color: #f0d45c;
}


/* Description */

.cta-content p {
    max-width: 700px;

    margin: 0 auto 25px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;
}


/* Buttons */

.cta-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;
}


.cta-btn {
    min-width: 190px;

    min-height: 58px;

    padding: 9px 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-radius: 7px;

    border: 1px solid #d4af37;

    transition: all 0.3s ease;
}


.cta-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    font-size: 19px;

    font-weight: bold;
}


.cta-btn span:last-child {
    display: flex;

    flex-direction: column;

    text-align: left;
}


.cta-btn small {
    font-size: 11px;

    margin-bottom: 2px;
}


.cta-btn strong {
    font-size: 15px;
}


/* Call */

.cta-call {
    background: #d4af37;

    color: #4b0c13;
}


.cta-call .cta-icon {
    color: #5a1018;
}


.cta-call:hover {
    background: #f0d45c;

    transform: translateY(-3px);
}


/* WhatsApp */

.cta-whatsapp {
    background: #ffffff;

    color: #5a1018;
}


.cta-whatsapp .cta-icon {
    color: #168c45;
}


.cta-whatsapp:hover {
    background: #f7f1dc;

    transform: translateY(-3px);
}


/* ==================================================
   CTA MOBILE
================================================== */

@media (max-width: 700px) {

    .cta-container {
        padding: 32px 15px;
    }


    .cta-label {
        font-size: 12px;

        margin-bottom: 10px;
    }


    .cta-content h2 {
        font-size: 23px;

        line-height: 1.4;

        margin-bottom: 10px;
    }


    .cta-content p {
        font-size: 13px;

        line-height: 1.6;

        margin-bottom: 20px;
    }


    .cta-buttons {
        width: 100%;

        display: flex;

        flex-direction: column;

        gap: 9px;
    }


    .cta-btn {
        width: 100%;

        min-width: 0;

        min-height: 52px;
    }

}


/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 400px) {

    .cta-container {
        padding: 28px 12px;
    }


    .cta-content h2 {
        font-size: 20px;
    }


    .cta-content p {
        font-size: 12px;
    }


    .cta-btn {
        min-height: 50px;

        padding: 7px 12px;
    }


    .cta-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 16px;
    }


    .cta-btn small {
        font-size: 9px;
    }


    .cta-btn strong {
        font-size: 13px;
    }

}
/* =========================================================
   SERVICES SECTION
   PREMIUM MAROON + GOLD DESIGN
========================================================= */

.services-section {
    width: 100%;
    padding: 80px 20px 90px;

    background:
        linear-gradient(
            180deg,
            #fffdf7 0%,
            #f8f0df 100%
        );

    overflow: hidden;
}

.services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    width: 100%;
    text-align: center;

    margin: 0 0 135px;
}

.section-heading > span {
    display: inline-block;

    color: #b18a20;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0 0 10px;

    color: #551019;

    font-size: 36px;
    line-height: 1.3;
    font-weight: 700;
}

.section-heading h2 strong {
    color: #b18a20;
}

.section-heading p {
    max-width: 700px;

    margin: 0 auto;

    color: #000;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 30px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-card {
    position: relative;

    width: 100%;
    min-width: 0;

    padding: 125px 25px 28px;

    text-align: center;

    /* PREMIUM BACKGROUND */

    background:
        linear-gradient(
            145deg,
            #5a1019 0%,
            #741b26 45%,
            #4c0c14 100%
        );

    border: 1px solid #d4af37;

    border-radius: 22px;

    box-shadow:
        0 12px 35px rgba(84, 16, 25, 0.18);

    overflow: visible;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;

    animation:
        serviceCardAppear 0.8s ease both;
}


/* =========================================================
   CARD DECORATIVE GOLD GLOW
========================================================= */

.service-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 110px;
    height: 5px;

    transform: translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #b18a20,
            #f5da69,
            #b18a20
        );

    border-radius: 0 0 10px 10px;

    box-shadow:
        0 0 15px rgba(212, 175, 55, 0.45);
}


/* Bottom gold line */

.service-card::after {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;

    bottom: 0;

    height: 3px;

    background: #d4af37;

    border-radius: 10px;

    transform: scaleX(0);

    transition:
        transform 0.4s ease;
}

.service-card:hover::after {
    transform: scaleX(1);
}


/* =========================================================
   CARD HOVER
========================================================= */

.service-card:hover {

    transform: translateY(-12px);

    border-color: #f0d45c;

    box-shadow:
        0 22px 50px rgba(84, 16, 25, 0.30);
}


/* =========================================================
   LARGE ROUND IMAGE
========================================================= */

.service-image {

    position: absolute;

    top: -100px;
    left: 50%;

    width: 195px;
    height: 195px;

    transform: translateX(-50%);

    padding: 8px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8edca
        );

    border: 5px solid #d4af37;

    border-radius: 50%;

    box-shadow:

        0 15px 35px rgba(0, 0, 0, 0.30),

        0 0 0 10px
        rgba(212, 175, 55, 0.12),

        0 0 0 15px
        rgba(212, 175, 55, 0.05);

    z-index: 5;
}


/* =========================================================
   ROTATING OUTER RING
========================================================= */

.service-image::before {

    content: "";

    position: absolute;

    inset: -13px;

    border: 2px dashed #d4af37;

    border-radius: 50%;

    animation:
        serviceImageRotate
        9s linear infinite;
}


/* =========================================================
   INNER GOLD RING
========================================================= */

.service-image::after {

    content: "";

    position: absolute;

    inset: 6px;

    border: 2px solid
        rgba(177, 138, 32, 0.75);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   IMAGE
========================================================= */

.service-image img {

    position: relative;

    z-index: 2;

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    transition:
        transform 0.5s ease,
        filter 0.5s ease;
}


/* IMAGE HOVER */

.service-card:hover
.service-image img {

    transform: scale(1.10);

    filter:
        brightness(1.08)
        contrast(1.02);
}


/* IMAGE CONTAINER HOVER */

.service-card:hover
.service-image {

    box-shadow:

        0 18px 40px
        rgba(0, 0, 0, 0.35),

        0 0 0 12px
        rgba(212, 175, 55, 0.16);
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service-content {

    width: 100%;
}


/* TITLE */

.service-content h3 {

    margin: 0 0 12px;

    color: #f4d66a;

    font-size: 23px;

    line-height: 1.4;
    font-family: cursive;
    font-weight: bold;
}


/* DESCRIPTION */

.service-content p {

    min-height: 72px;

    margin: 0 0 23px;

    color: #f7ead1;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   SERVICE BUTTONS
========================================================= */

.service-buttons {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.service-buttons a {

    min-width: 0;

    min-height: 46px;

    padding: 9px 7px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.service-call {

    background:
        linear-gradient(
            135deg,
            #d4af37,
            #f0d45c
        );

    color: #551019;

    border: 1px solid #f0d45c;
}


.service-call:hover {

    transform: translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #f0d45c,
            #d4af37
        );

    box-shadow:
        0 7px 18px
        rgba(212, 175, 55, 0.35);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.service-whatsapp {

    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border: 1px solid
        rgba(240, 212, 92, 0.65);
}


.service-whatsapp:hover {

    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.15);

    box-shadow:
        0 7px 18px
        rgba(0, 0, 0, 0.20);
}


/* =========================================================
   CARD APPEAR ANIMATION
========================================================= */

@keyframes serviceCardAppear {

    from {

        opacity: 0;

        transform:
            translateY(45px);
    }

    to {

        opacity: 1;

        transform:
            translateY(0);
    }
}


/* =========================================================
   IMAGE ROTATION
========================================================= */

@keyframes serviceImageRotate {

    from {

        transform:
            rotate(0deg);
    }

    to {

        transform:
            rotate(360deg);
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .services-section {

        padding:
            65px 15px 75px;
    }

    .section-heading {

        margin-bottom:
            120px;
    }

    .section-heading h2 {

        font-size:
            31px;
    }

    .services-grid {

        gap:
            18px;
    }

    .service-card {

        padding:
            110px 15px 22px;
    }

    .service-image {

        width:
            170px;

        height:
            170px;

        top:
            -85px;
    }

    .service-content h3 {

        font-size:
            18px;
    }

    .service-content p {

        font-size:
            12px;
    }

    .service-buttons {

        gap:
            6px;
    }

    .service-buttons a {

        font-size:
            10px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .services-section {

        width:
            100%;

        padding:
            60px 12px 70px;
    }

    .section-heading {

        margin-bottom:
            135px;
    }

    .section-heading > span {

        font-size:
            12px;
    }

    .section-heading h2 {

        font-size:
            27px;
    }

    .section-heading p {

        font-size:
            13px;
    }


    /* One card per row */

    .services-grid {

        width:
            100%;

        display:
            flex;

        flex-direction:
            column;

        gap:
            125px;
    }


    .service-card {

        width:
            100%;

        padding:
            125px 18px 25px;

        border-radius:
            20px;
    }


    /* EXTRA LARGE MOBILE IMAGE */

    .service-image {

        width:
            175px;

        height:
            175px;

        top:
            -87px;
    }


    .service-content h3 {

        font-size:
            20px;
    }

    .service-content p {

        min-height:
            auto;

        font-size:
            13px;

        line-height:
            1.7;

        margin-bottom:
            20px;
    }

    .service-buttons {

        grid-template-columns:
            1fr 1fr;

        gap:
            8px;
    }

    .service-buttons a {

        min-height:
            45px;

        font-size:
            11px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .services-section {

        padding-left:
            10px;

        padding-right:
            10px;
    }

    .section-heading {

        margin-bottom:
            130px;
    }

    .section-heading h2 {

        font-size:
            23px;
    }

    .section-heading p {

        font-size:
            12px;
    }

    .services-grid {

        gap:
            115px;
    }

    .service-card {

        padding:
            115px 14px 20px;
    }

    .service-image {

        width:
            165px;

        height:
            165px;

        top:
            -82px;
    }

    .service-content h3 {

        font-size:
            17px;
    }

    .service-content p {

        font-size:
            12px;
    }

    .service-buttons {

        gap:
            6px;
    }

    .service-buttons a {

        min-height:
            42px;

        font-size:
            10px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-image::before,
    .service-image img,
    .service-buttons a {

        animation:
            none !important;

        transition:
            none !important;
    }
}
/* =========================================================
   ABOUT US - PREMIUM BACKGROUND VERSION
========================================================= */

.about-section {
    position: relative;

    width: 100%;

    padding: 90px 20px;

     background-image: linear-gradient(rgba(55, 7, 14, 0.82), rgba(55, 7, 14, 0.88)), url(../images/bg.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATIVE CIRCLES
========================================================= */

.about-section::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: -170px;
    left: -170px;

    border: 1px solid
        rgba(212, 175, 55, 0.25);

    border-radius: 50%;

    box-shadow:
        0 0 0 35px rgba(212, 175, 55, 0.04),
        0 0 0 70px rgba(212, 175, 55, 0.025);

    pointer-events: none;
}


.about-section::after {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    bottom: -220px;

    border: 1px solid
        rgba(212, 175, 55, 0.22);

    border-radius: 50%;

    box-shadow:
        0 0 0 40px rgba(212, 175, 55, 0.035),
        0 0 0 80px rgba(212, 175, 55, 0.02);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.about-container {
    position: relative;

    z-index: 2;

    width: 100%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.about-content {
    width: 100%;

    padding: 35px 0;

    animation:
        aboutTextAnimation .9s ease both;
}


.about-label {
    display: inline-block;

    margin-bottom: 12px;

    color: #e2c451;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.about-content h2 {
    margin: 0 0 15px;

    color: #fffaf0;

    font-size: 40px;

    line-height: 1.3;

    font-weight: 700;
}


.about-content h2 span {
    display: block;

    color: #e0bc3f;
}


/* =========================================================
   GOLD LINE
========================================================= */

.about-line {
    display: flex;

    align-items: center;

    gap: 10px;

    margin: 18px 0 25px;
}


.about-line i {
    display: block;

    width: 70px;

    height: 2px;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f1d35e
        );
}


.about-line b {
    color: #e0bc3f;

    font-size: 14px;
}


/* =========================================================
   CONTENT TEXT
========================================================= */

.about-content p {
    margin: 0 0 17px;

    color: #eadfcf;

    font-size: 14px;

    line-height: 1.85;
}


.about-content .about-intro {
    margin-bottom: 21px;

    color: #fff8e7;

    font-size: 16px;

    line-height: 1.75;

    font-weight: 600;
}


/* =========================================================
   POINTS
========================================================= */

.about-points {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 10px;

    margin-top: 30px;
}


.about-point {
    min-height: 80px;

    padding: 13px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background:
        rgba(255, 250, 240, 0.08);

    border:
        1px solid
        rgba(212, 175, 55, 0.35);

    border-radius: 9px;

    backdrop-filter: blur(5px);

    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}


.about-point:hover {
    transform: translateY(-5px);

    background:
        rgba(212, 175, 55, 0.12);

    border-color:
        rgba(240, 212, 92, 0.75);
}


.about-point span {
    margin-bottom: 6px;

    color: #e0bc3f;

    font-size: 14px;
}


.about-point strong {
    color: #fffaf0;

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   RIGHT IMAGE
========================================================= */

.about-image-box {
    position: relative;

    width: 100%;

    min-height: 500px;

    display: flex;

    align-items: center;

    justify-content: center;

    animation:
        aboutImageAnimation .9s ease both;
}


/* =========================================================
   IMAGE FRAME
========================================================= */

.about-image-frame {
    position: relative;

    width: 100%;

    max-width: 480px;

    height: 500px;

    padding: 8px;

    background:
        linear-gradient(
            135deg,
            #b18a20,
            #f5da69,
            #a87913,
            #e5c34d,
            #b18a20
        );

    border-radius: 22px;

    box-shadow:
        0 20px 55px
        rgba(0, 0, 0, 0.35);
}


/* Image */

.about-image-frame img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 16px;

    transition:
        transform .6s ease,
        filter .6s ease;
}


.about-image-frame:hover img {
    transform: scale(1.035);

    filter:
        brightness(1.05)
        contrast(1.03);
}


/* =========================================================
   IMAGE CORNER DESIGN
========================================================= */

.about-image-frame::before {
    content: "";

    position: absolute;

    top: -16px;
    left: -16px;

    width: 85px;
    height: 85px;

    border-top: 3px solid #e0bc3f;
    border-left: 3px solid #e0bc3f;

    border-radius: 14px 0 0 0;

    z-index: -1;
}


.about-image-frame::after {
    content: "";

    position: absolute;

    right: -16px;
    bottom: -16px;

    width: 85px;
    height: 85px;

    border-right: 3px solid #e0bc3f;
    border-bottom: 3px solid #e0bc3f;

    border-radius: 0 0 14px 0;

    z-index: -1;
}


/* =========================================================
   IMAGE BADGE
========================================================= */

.about-image-badge {
    position: absolute;

    left: -25px;
    bottom: 35px;

    min-width: 195px;

    padding: 15px 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:
        linear-gradient(
            135deg,
            #6c1722,
            #4a0b12
        );

    border:
        1px solid #d4af37;

    border-radius: 8px;

    box-shadow:
        0 12px 30px
        rgba(0, 0, 0, 0.30);
}


.about-image-badge span {
    color: #e0bc3f;

    font-size: 17px;
}


.about-image-badge strong {
    color: #fffaf0;

    font-size: 12px;

    letter-spacing: .5px;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes aboutTextAnimation {

    from {
        opacity: 0;

        transform:
            translateX(-40px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


@keyframes aboutImageAnimation {

    from {
        opacity: 0;

        transform:
            translateX(40px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .about-section {
        padding: 70px 15px;
    }


    .about-container {
        gap: 40px;
    }


    .about-content h2 {
        font-size: 33px;
    }


    .about-image-box {
        min-height: 430px;
    }


    .about-image-frame {
        height: 430px;
    }


    .about-image-badge {
        left: -10px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .about-section {
        padding: 60px 12px 70px;
    }


    .about-container {

        display: flex;

        flex-direction: column;

        gap: 50px;
    }


    .about-content {

        order: 1;

        padding: 0;

        text-align: center;
    }


    .about-label {
        font-size: 11px;
    }


    .about-content h2 {

        font-size: 28px;

        line-height: 1.35;
    }


    .about-content h2 span {
        display: inline;
    }


    .about-line {

        justify-content: center;

        margin:
            15px 0 22px;
    }


    .about-content p {

        font-size: 13px;

        line-height: 1.8;
    }


    .about-content .about-intro {

        font-size: 14px;
    }


    .about-points {

        grid-template-columns:
           repeat(3, minmax(0, 1fr));

        gap: 8px;

        margin-top: 24px;
    }


    .about-point {

        min-height: 52px;

        flex-direction: row;

        gap: 8px;
    }


    .about-point span {
        margin-bottom: 0;
    }


    /* IMAGE */

    .about-image-box {

        order: 2;

        width: 100%;

        min-height: auto;

        padding:
            0 15px 20px;
    }


    .about-image-frame {

        width: 100%;

        max-width: 100%;

        height: 390px;
    }


    .about-image-badge {

        left: 0;

        bottom: 0;

        min-width: 175px;

        padding:
            12px 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .about-section {

        padding-left: 10px;

        padding-right: 10px;
    }


    .about-content h2 {

        font-size: 24px;
    }


    .about-content p {

        font-size: 12px;
    }


    .about-content .about-intro {

        font-size: 13px;
    }


    .about-image-box {

        padding-left: 8px;

        padding-right: 8px;
    }


    .about-image-frame {

        height: 340px;
    }


    .about-image-badge {

        min-width: 160px;

        padding:
            10px 12px;
    }


    .about-image-badge strong {

        font-size: 11px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .about-content,
    .about-image-box,
    .about-image-frame img,
    .about-point {

        animation: none !important;

        transition: none !important;
    }

}
/* =========================================================
   6 SERVICES SECTION
   PREMIUM MAROON + GOLD DESIGN
========================================================= */

.services6-section {
    width: 100%;
    padding: 90px 20px 100px;
    background: #ffffff;
    overflow: hidden;
}

.services6-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.services6-heading {
    width: 100%;
    text-align: center;
    margin: 0 0 125px;
}

.services6-heading > span {
    display: inline-block;
    margin-bottom: 10px;

    color: #b18a20;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.services6-heading h2 {
    margin: 0;

    color: #551019;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.services6-heading h2 strong {
    color: #b18a20;
}

.services6-heading p {
    max-width: 650px;
    margin: 14px auto 0;

    color: #000;
    font-size: 14px;
    line-height: 1.8;
}


/* GOLD DIVIDER */

.services6-heading::after {
    content: "";

    display: block;

    width: 70px;
    height: 3px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius: 10px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.services6-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 115px 28px;
}


/* =========================================================
   SERVICE CARD
========================================================= */

.service6-card {
    position: relative;

    width: 100%;

    padding: 160px 22px 28px;

    text-align: center;

    background:radial-gradient(
            circle at 10% 20%,
            rgba(212, 175, 55, 0.16),
            transparent 28%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(212, 175, 55, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #3d080f 0%,
            #551019 40%,
            #741b27 70%,
            #420910 100%
        );

    border:
        1px solid #d4af37;

    border-radius: 18px;

    box-shadow:
        0 12px 32px
        rgba(85, 16, 25, 0.10);

    overflow: visible;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;

    animation:
        serviceCardIn .7s ease both;
}


/* INNER BORDER */

.service6-card::before {
    content: "";

    position: absolute;

    inset: 5px;

    border:
        1px solid
        rgba(212, 175, 55, 0.22);

    border-radius: 14px;

    pointer-events: none;
}


/* TOP GOLD ACCENT */

.service6-card::after {
    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 90px;
    height: 4px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius:
        0 0 8px 8px;

    z-index: 2;
}


/* CARD HOVER */

.service6-card:hover {
    transform:
        translateY(-10px);

    border-color:
        #b18a20;

    box-shadow:
        0 22px 45px
        rgba(85, 16, 25, 0.16);
}


/* =========================================================
   SERVICE IMAGE
   RECTANGULAR - NOT ROUND
========================================================= */

.service6-image {
    position: absolute;

    top: -75px;
    left: 50%;

    width:
        calc(100% - 50px);

    max-width: 330px;

    height: 220px;

    transform:
        translateX(-50%);

    padding: 5px;

    background:
        linear-gradient(
            135deg,
            #b18a20,
            #f1d35e,
            #b18a20
        );

    border-radius: 14px;

    box-shadow:
        0 15px 35px
        rgba(85, 16, 25, 0.18);

    z-index: 4;

    transition:
        transform .4s ease,
        box-shadow .4s ease;
}


/* IMAGE */

.service6-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 10px;

    border:
        3px solid #ffffff;

    transition:
        transform .5s ease;
}


/* IMAGE HOVER */

.service6-card:hover .service6-image {

    transform:
        translateX(-50%)
        translateY(-6px);

    box-shadow:
        0 22px 45px
        rgba(85, 16, 25, 0.25);
}


.service6-card:hover
.service6-image img {

    transform:
        scale(1.04);
}


/* REMOVE ROUND IMAGE RING */

.service6-image::before {
    display: none !important;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.service6-content {
    position: relative;

    z-index: 5;
}


/* SERVICE TITLE */

.service6-content h3 {

    display: inline-block;

    margin: 0 0 12px;

    padding-bottom: 8px;

    color: #f4d66a;

    font-size: 22px;

    font-weight: bold;

    line-height: 1.4;

    border-bottom:
        2px solid #d4af37;
}


/* DESCRIPTION */

.service6-content p {

    min-height: 65px;

    margin: 0 0 22px;

    color: #fff;

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   BUTTON WRAPPER
========================================================= */

.service6-buttons {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 9px;

    position: relative;

    z-index: 10;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.service6-buttons a {

    min-height: 44px;

    padding: 8px 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    border-radius: 6px;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.2;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.service6-call {

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #551019,
            #751d29
        );

    border: 1px solid rgba(240, 212, 92, 0.65);
}


.service6-call:hover {

    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #691520,
            #851f2b
        );

    box-shadow:
        0 8px 18px
        rgba(85, 16, 25, 0.25);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.service6-whatsapp {

    color: #551019;

    background:
        #ffffff;

    border:
        1px solid #d4af37;
}


.service6-whatsapp:hover {

    transform:
        translateY(-3px);

    background:
        #fff7dc;

    box-shadow:
        0 8px 18px
        rgba(212, 175, 55, 0.20);
}


/* =========================================================
   SERVICE NUMBER
========================================================= */

.service6-card:nth-child(1) {
    counter-increment: service;
}

.service6-card:nth-child(2) {
    counter-increment: service;
}

.service6-card:nth-child(3) {
    counter-increment: service;
}

.service6-card:nth-child(4) {
    counter-increment: service;
}

.service6-card:nth-child(5) {
    counter-increment: service;
}

.service6-card:nth-child(6) {
    counter-increment: service;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes serviceCardIn {

    from {
        opacity: 0;

        transform:
            translateY(35px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .services6-section {

        padding:
            70px 15px 85px;
    }


    .services6-heading {

        margin-bottom:
            110px;
    }


    .services6-heading h2 {

        font-size:
            33px;
    }


    .services6-grid {

        gap:
            100px 16px;
    }


    .service6-card {

        padding:
            125px 15px 23px;
    }


    .service6-image {

        top:
            -65px;

        width:
            calc(100% - 35px);

        height:
            165px;
    }


    .service6-content h3 {

        font-size:
            18px;
    }


    .service6-content p {

        font-size:
            12px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .services6-section {

        padding:
            60px 12px 75px;
    }


    .services6-heading {

        margin-bottom:
            110px;
    }


    .services6-heading > span {

        font-size:
            11px;

        letter-spacing:
            2px;
    }


    .services6-heading h2 {

        font-size:
            28px;
    }


    .services6-heading p {

        font-size:
            13px;

        line-height:
            1.7;
    }


    /* ONE CARD PER ROW */

    .services6-grid {

        display:
            flex;

        flex-direction:
            column;

        gap:
            110px;

        width:
            100%;
    }


    /* CARD */

    .service6-card {

        width:
            100%;

        max-width:
            500px;

        margin:
            0 auto;

        padding:
            130px 20px 25px;

        border-radius:
            16px;

        box-sizing:
            border-box;
    }


    /* IMAGE */

    .service6-image {

        top:
            -70px;

        width:
            calc(100% - 30px);

        max-width:
            340px;

        height:
            180px;

        border-radius:
            12px;
    }


    /* CONTENT */

    .service6-content h3 {

        font-size:
            19px;
    }


    .service6-content p {

        min-height:
            auto;

        margin-bottom:
            20px;

        font-size:
            13px;

        line-height:
            1.75;
    }


    /* BUTTONS */

    .service6-buttons {

        gap:
            8px;
    }


    .service6-buttons a {

        min-height:
            46px;

        font-size:
            11px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .services6-section {

        padding-left:
            10px;

        padding-right:
            10px;
    }


    .services6-heading h2 {

        font-size:
            24px;
    }


    .services6-heading p {

        font-size:
            12px;
    }


    .service6-card {

        padding:
            170px 15px 21px;
    }


    .service6-image {

        top:
            -65px;

        width:
            calc(100% - 24px);

        height:
            220px;
    }


    .service6-content h3 {

        font-size:
            17px;
    }


    .service6-content p {

        font-size:
            12px;
    }


    .service6-buttons a {

        min-height:
            43px;

        font-size:
            10px;
    }

}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 340px) {

    .service6-card {

        padding:
            112px 12px 18px;
    }


    .service6-image {

        height:
            150px;
    }


    .service6-buttons {

        grid-template-columns:
            1fr;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service6-card,
    .service6-image,
    .service6-image img,
    .service6-buttons a {

        animation:
            none !important;

        transition:
            none !important;
    }

}
/* =========================================================
   WHY CHOOSE US SECTION
   BACKGROUND IMAGE + MAROON + GOLD
========================================================= */

.whychoose-section {
    position: relative;

    width: 100%;

    padding: 90px 20px 95px;

    background-image:
        linear-gradient(
            rgba(55, 7, 14, 0.82),
            rgba(55, 7, 14, 0.88)
        ),
        url("../images/bg.jpg");

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    background-attachment: fixed;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND OVERLAY
========================================================= */

.whychoose-section::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(85, 16, 25, 0.32),
            transparent 45%,
            rgba(85, 16, 25, 0.32)
        );

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   DECORATIVE GOLD CIRCLE
========================================================= */

.whychoose-section::after {

    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 650px;
    height: 650px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid
        rgba(227, 196, 81, 0.15);

    border-radius: 50%;

    pointer-events: none;

    z-index: 1;
}


/* =========================================================
   CONTAINER
========================================================= */

.whychoose-container {

    position: relative;

    z-index: 3;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.whychoose-heading {

    width: 100%;

    text-align: center;

    margin-bottom: 55px;
}


/* SMALL TITLE */

.whychoose-heading > span {

    display: inline-block;

    margin-bottom: 10px;

    color: #e3c451;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    text-transform: uppercase;
}


/* MAIN TITLE */

.whychoose-heading h2 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 38px;

    line-height: 1.3;

    font-weight: 700;
}


/* GOLD WORD */

.whychoose-heading h2 strong {

    color: #e3c451;
}


/* DESCRIPTION */

.whychoose-heading p {

    max-width: 650px;

    margin: 0 auto;

    color: #f0e5d4;

    font-size: 14px;

    line-height: 1.8;
}


/* =========================================================
   GOLD DIVIDER
========================================================= */

.whychoose-heading::after {

    content: "";

    display: block;

    width: 70px;

    height: 3px;

    margin: 18px auto 0;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius: 10px;
}


/* =========================================================
   FEATURE GRID
========================================================= */

.whychoose-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

    box-sizing: border-box;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.whychoose-card {

    position: relative;

    padding: 32px 20px 28px;

    text-align: center;

    background:
        #000;

    border:
        1px solid
        rgba(227, 196, 81, 0.50);

    border-radius: 12px;

    backdrop-filter: blur(8px);

    -webkit-backdrop-filter: blur(8px);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.15);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;

    animation:
        whyCardIn 0.7s ease both;

    box-sizing: border-box;
}


/* TOP GOLD LINE */

.whychoose-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 50%;

    width: 55px;

    height: 3px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            #b18a20,
            #f3d65d,
            #b18a20
        );

    border-radius:
        0 0 8px 8px;
}


/* HOVER */

.whychoose-card:hover {

    transform:
        translateY(-8px);

    background:rgb(0 0 0 / 14%);

    border-color:
        #e3c451;

    box-shadow:
        0 20px 40px
        rgba(0, 0, 0, 0.25);
}


/* =========================================================
   ICON
========================================================= */

.whychoose-icon {

    width: 62px;

    height: 62px;

    margin:
        0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #e3c451;

    font-size: 25px;

    font-weight: 700;

    background:
        rgba(212, 175, 55, 0.10);

    border:
        1px solid
        rgba(227, 196, 81, 0.70);

    border-radius: 50%;

    box-shadow:
        0 0 0 5px
        rgba(212, 175, 55, 0.04);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        box-shadow 0.4s ease;
}


/* ICON HOVER */

.whychoose-card:hover
.whychoose-icon {

    transform:
        rotate(8deg)
        scale(1.08);

    background:
        rgba(212, 175, 55, 0.20);

    box-shadow:
        0 0 0 8px
        rgba(212, 175, 55, 0.05);
}


/* =========================================================
   CARD TITLE
========================================================= */

.whychoose-card h3 {

    margin:
        0 0 10px;

    color:
        #e3c451;

    font-size:
        18px;

    font-weight:
        bold;

    line-height:
        1.45;
}


/* =========================================================
   CARD DESCRIPTION
========================================================= */

.whychoose-card p {

    margin:
        0;

    color:
        #eadfcf;

    font-size:
        14px;

    line-height:
        1.75;
}


/* =========================================================
   BOTTOM CTA
========================================================= */

.whychoose-bottom {

    width: 100%;

    margin-top:
        45px;

    padding:
        24px 28px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        25px;

    background:
        linear-gradient(
            135deg,
            #fff8e7,
            #f8eac9
        );

    border:
        1px solid
        #d4af37;

    border-radius:
        12px;

    box-shadow:
        0 15px 35px
        rgba(0, 0, 0, 0.20);

    box-sizing:
        border-box;
}


/* =========================================================
   CTA TEXT
========================================================= */

.whychoose-bottom-text {

    flex:
        1;
}


.whychoose-bottom-text h3 {

    margin:
        0 0 5px;

    color:
        #551019;

    font-size: 24px;

    font-weight: 700;

    line-height: 1.4;
}


.whychoose-bottom-text p {

    margin:
        0;

    color:
        #000;

    font-size:
        15px;

    line-height:
        1.6;
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.whychoose-buttons {

    display:
        flex;

    align-items:
        center;

    gap:
        9px;

    flex-shrink:
        0;
}


.whychoose-buttons a {

    min-width:
        120px;

    min-height:
        43px;

    padding:
        8px 15px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    text-decoration:
        none;

    border-radius:
        5px;

    font-size:
        11px;

    font-weight:
        700;

    line-height:
        1.2;

    box-sizing:
        border-box;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.whychoose-call {

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #551019,
            #761c28
        );

    border:
        1px solid
        #551019;
}


.whychoose-call:hover {

    transform:
        translateY(-3px);

    background:
        linear-gradient(
            135deg,
            #691520,
            #851f2b
        );

    box-shadow:
        0 8px 18px
        rgba(85, 16, 25, 0.28);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.whychoose-whatsapp {

    color:
        #551019;

    background:
        #ffffff;

    border:
        1px solid
        #d4af37;
}


.whychoose-whatsapp:hover {

    transform:
        translateY(-3px);

    background:
        #fff8df;

    box-shadow:
        0 8px 18px
        rgba(212, 175, 55, 0.22);
}


/* =========================================================
   CARD ANIMATION
========================================================= */

@keyframes whyCardIn {

    from {

        opacity:
            0;

        transform:
            translateY(30px);
    }

    to {

        opacity:
            1;

        transform:
            translateY(0);
    }

}


/* =========================================================
   ANIMATION DELAYS
========================================================= */

.whychoose-card:nth-child(1) {
    animation-delay:
        0s;
}

.whychoose-card:nth-child(2) {
    animation-delay:
        0.08s;
}

.whychoose-card:nth-child(3) {
    animation-delay:
        0.16s;
}

.whychoose-card:nth-child(4) {
    animation-delay:
        0.24s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .whychoose-section {

        padding:
            70px 15px 80px;

        background-attachment:
            scroll;
    }


    .whychoose-heading h2 {

        font-size:
            33px;
    }


    .whychoose-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            16px;
    }


    .whychoose-card {

        padding:
            30px 18px 26px;
    }


    .whychoose-bottom {

        padding:
            22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    .whychoose-section {

        padding:
            60px 12px 70px;

        background-attachment:
            scroll;

        background-position:
            center center;
    }


    .whychoose-section::after {

        width:
            420px;

        height:
            420px;
    }


    .whychoose-heading {

        margin-bottom:
            35px;
    }


    .whychoose-heading > span {

        font-size:
            10px;

        letter-spacing:
            2px;
    }


    .whychoose-heading h2 {

        font-size:
            28px;
    }


    .whychoose-heading p {

        font-size:
            13px;

        line-height:
            1.7;
    }


    /* ONE COLUMN */

    .whychoose-grid {

        grid-template-columns:
            1fr;

        gap:
            14px;
    }


    .whychoose-card {

        width:
            100%;

        padding:
            27px 20px 24px;
    }


    .whychoose-icon {

        width:
            57px;

        height:
            57px;

        margin-bottom:
            14px;
    }


    .whychoose-card h3 {

        font-size:
            17px;
    }


    .whychoose-card p {

        font-size:
            12px;
    }


    /* CTA */

    .whychoose-bottom {

        margin-top:
            30px;

        padding:
            22px 18px;

        flex-direction:
            column;

        text-align:
            center;

        gap:
            18px;
    }


    .whychoose-bottom-text {

        width:
            100%;
    }


    .whychoose-bottom-text h3 {

        font-size:
            18px;
    }


    .whychoose-buttons {

        width:
            100%;
    }


    .whychoose-buttons a {

        flex:
            1;

        min-width:
            0;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .whychoose-section {

        padding-left:
            10px;

        padding-right:
            10px;
    }


    .whychoose-heading h2 {

        font-size:
            24px;
    }


    .whychoose-heading p {

        font-size:
            12px;
    }


    .whychoose-card p {

        font-size:
            11px;
    }


    .whychoose-bottom {

        padding:
            20px 14px;
    }


    .whychoose-buttons {

        flex-direction:
            column;

        width:
            100%;

        gap:
            8px;
    }


    .whychoose-buttons a {

        width:
            100%;

        min-height:
            44px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 340px) {

    .whychoose-section {

        padding-left:
            8px;

        padding-right:
            8px;
    }


    .whychoose-heading h2 {

        font-size:
            22px;
    }


    .whychoose-card {

        padding:
            25px 15px 22px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .whychoose-card,
    .whychoose-icon,
    .whychoose-buttons a {

        animation:
            none !important;

        transition:
            none !important;
    }

}
/* =========================================================
   3 COLUMN SERVICES SECTION
========================================================= */

.list-services-section {
    position: relative;
    width: 100%;
    padding: 85px 20px;
    background: #fffaf1;
    overflow: hidden;
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.list-services-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   HEADING
========================================================= */

.list-services-heading {
    text-align: center;
    margin-bottom: 40px;
}

.list-services-heading span {
    display: inline-block;
    margin-bottom: 8px;
    color: #b18a20;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
}

.list-services-heading h2 {
    margin: 0 0 10px;
    color: #551019;
    font-size: 36px;
    line-height: 1.3;
}

.list-services-heading h2 strong {
    color: #b18a20;
}

.list-services-heading p {
    max-width: 600px;
    margin: 0 auto;
    color: #000;
    font-size: 13px;
    line-height: 1.7;
}

.list-services-heading::after {
    content: "";
    display: block;
    width: 65px;
    height: 3px;
    margin: 15px auto 0;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius: 10px;
}


/* =========================================================
   3 COLUMN GRID
========================================================= */

.services-list {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 18px;

    width: 100%;
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.service-list-item {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    min-height: 105px;

    padding: 18px 16px;

    background: #ffffff;

    border:
        1px solid #ead9a5;

    border-left:
        4px solid #b18a20;

    border-radius: 9px;

    text-decoration: none;

    box-shadow:
        0 5px 18px
        rgba(85, 16, 25, 0.06);

    box-sizing: border-box;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.service-list-item:hover {
    transform:
        translateY(-6px);

    background:
        #fffdf7;

    border-color:
        #d4af37;

    box-shadow:
        0 12px 28px
        rgba(85, 16, 25, 0.13);
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.service-list-left {
    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 0;

    flex: 1;
}


/* =========================================================
   ICON
========================================================= */

.service-list-icon {
    flex-shrink: 0;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #b18a20;

    background:
        #fff8df;

    border:
        1px solid #d4af37;

    border-radius: 50%;

    font-size: 21px;

    font-weight: 700;

    transition:
        transform .35s ease,
        background .35s ease;
}


.service-list-item:hover
.service-list-icon {
    transform:
        scale(1.08)
        rotate(5deg);

    background:
        #f9edc7;
}


/* =========================================================
   CONTENT
========================================================= */

.service-list-content {
    min-width: 0;
}

.service-list-content h3 {
    margin:
        0 0 5px;

    color:
        #551019;

    font-size:
        15px;

    font-weight:
        700;

    line-height:
        1.35;
}

.service-list-content p {
    margin: 0;

    color:
        #000;

    font-size:
        12px;

    line-height:
        1.6;
}


/* =========================================================
   RIGHT ARROW
========================================================= */

.service-arrow {
    flex-shrink: 0;

    width: 36px;
    height: 36px;

    margin-left: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #551019,
            #761c28
        );

    border-radius: 50%;

    font-size: 19px;

    transition:
        transform .35s ease,
        background .35s ease;
}


.service-list-item:hover
.service-arrow {
    transform:
        translateX(4px);

    background:
        linear-gradient(
            135deg,
            #b18a20,
            #d4af37
        );
}


/* =========================================================
   TABLET - 2 COLUMNS
========================================================= */

@media (max-width: 950px) {

    .list-services-section {
        padding:
            70px 15px;
    }

    .services-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            15px;
    }

    .list-services-heading h2 {
        font-size:
            31px;
    }

}


/* =========================================================
   MOBILE - 1 COLUMN
========================================================= */

@media (max-width: 600px) {

    .list-services-section {
        padding:
            55px 12px;
    }

    .list-services-heading {
        margin-bottom:
            30px;
    }

    .list-services-heading span {
        font-size:
            9px;

        letter-spacing:
            2px;
    }

    .list-services-heading h2 {
        font-size:
            26px;
    }

    .list-services-heading p {
        font-size:
            12px;
    }

    .services-list {
        grid-template-columns:
            1fr;

        gap:
            10px;
    }

    .service-list-item {
        min-height:
            85px;

        padding:
            14px 13px;
    }

    .service-list-left {
        gap:
            11px;
    }

    .service-list-icon {
        width:
            45px;

        height:
            45px;

        font-size:
            19px;
    }

    .service-list-content h3 {
        font-size:
            14px;
    }

    .service-list-content p {
        font-size:
            10px;
    }

    .service-arrow {
        width:
            32px;

        height:
            32px;

        font-size:
            17px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .list-services-section {
        padding:
            50px 10px;
    }

    .list-services-heading h2 {
        font-size:
            23px;
    }

    .service-list-item {
        padding:
            12px 10px;
    }

    .service-list-icon {
        width:
            40px;

        height:
            40px;

        font-size:
            17px;
    }

    .service-list-content h3 {
        font-size:
            13px;
    }

    .service-list-content p {
        font-size:
            9px;
    }

    .service-arrow {
        width:
            29px;

        height:
            29px;

        font-size:
            15px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-list-item,
    .service-list-icon,
    .service-arrow {
        transition:
            none !important;
    }

}
/* =========================================================
   IMAGE ONLY BANNER
========================================================= */

.image-banner-section {
    width: 100%;

    padding: 0;

    margin: 0;

    background: transparent;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.image-banner-container {
    width: 100%;

    max-width: 100%;

    margin: 0 auto;

    padding: 0;

    line-height: 0;

    overflow: hidden;
}


/* =========================================================
   BANNER IMAGE
========================================================= */

.image-banner {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    object-fit: cover;

    margin: 0;

    padding: 0;

    border: 0;

    line-height: 0;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 1200px) {

    .image-banner {
        width: 100%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .image-banner-section {
        width: 100%;
    }

    .image-banner {
        width: 100%;

        height: auto;

        object-fit: cover;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .image-banner-section {
        width: 100%;

        padding: 0;

        margin: 0;
    }

    .image-banner-container {
        width: 100%;

        padding: 0;

        margin: 0;
    }

    .image-banner {
        width: 100%;

        height: auto;

        min-height: 0;

        object-fit: cover;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .image-banner {
        width: 100%;

        height: auto;
    }

}
/* =========================================================
   CLIENT FEEDBACK SECTION
========================================================= */

.client-feedback-section {

    position: relative;

    width: 100%;

    padding: 85px 20px 90px;

    background:
        linear-gradient(
            135deg,
            #fffaf0,
            #f8edda
        );

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   DECORATIVE BACKGROUND
========================================================= */

.client-feedback-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -180px;

    top: -170px;

    border:
        1px solid
        rgba(177,138,32,.18);

    border-radius: 50%;

    pointer-events: none;
}


.client-feedback-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    right: -180px;

    bottom: -170px;

    border:
        1px solid
        rgba(85,16,25,.12);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.client-feedback-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.client-feedback-heading {

    text-align: center;

    margin-bottom: 45px;
}


.client-feedback-heading span {

    display: inline-block;

    margin-bottom: 8px;

    color: #b18a20;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.client-feedback-heading h2 {

    margin: 0 0 10px;

    color: #551019;

    font-size: 36px;

    line-height: 1.3;
}


.client-feedback-heading h2 strong {

    color: #b18a20;
}


.client-feedback-heading p {

    max-width: 600px;

    margin: 0 auto;

    color: #000666;

    font-size: 13px;

    line-height: 1.7;
}


/* GOLD LINE */

.client-feedback-heading::after {

    content: "";

    display: block;

    width: 65px;

    height: 3px;

    margin: 15px auto 0;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius: 10px;
}


/* =========================================================
   FEEDBACK GRID
========================================================= */

.feedback-grid {

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;
}


/* =========================================================
   FEEDBACK CARD
========================================================= */

.feedback-card {

    position: relative;

    padding: 25px 20px 24px;

    background:
        #ffffff;

    border:
        1px solid #ead9a5;

    border-radius: 12px;

    box-shadow:
        0 7px 22px
        rgba(85,16,25,.07);

    overflow: hidden;

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}


/* TOP GOLD LINE */

.feedback-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );
}


/* HOVER */

.feedback-card:hover {

    transform:
        translateY(-7px);

    border-color:
        #d4af37;

    box-shadow:
        0 16px 32px
        rgba(85,16,25,.13);
}


/* =========================================================
   CLIENT TOP
========================================================= */

.feedback-top {

    display: flex;

    align-items: center;

    gap: 13px;

    margin-bottom: 14px;
}


/* =========================================================
   CLIENT IMAGE
========================================================= */

.client-image {

    width: 65px;

    height: 65px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 50%;

    border:
        3px solid #d4af37;

    padding: 2px;

    background:
        #ffffff;

    box-sizing: border-box;

    transition:
        transform .4s ease;
}


/* IMAGE HOVER */

.feedback-card:hover
.client-image {

    transform:
        scale(1.07);
}


/* =========================================================
   CLIENT INFO
========================================================= */

.client-info {

    min-width: 0;
}


.client-info h3 {

    margin:
        0 0 4px;

    color:
        #551019;

    font-size:
        15px;

    line-height:
        1.4;
}


.client-info span {

    color:
        #a87913;

    font-size:
        10px;

    font-weight:
        600;
}


/* =========================================================
   RATING
========================================================= */

.client-rating {

    margin-bottom:
        12px;

    color:
        #d4af37;

    font-size:
        15px;

    letter-spacing:
        2px;
}


/* =========================================================
   REVIEW
========================================================= */

.client-review {

    position: relative;

    margin:
        0;

    color:
        #000;

    font-size:
        13px;

    line-height:
        1.8;

    z-index:
        2;
}


/* =========================================================
   QUOTE
========================================================= */

.feedback-quote {

    position: absolute;

    right:
        12px;

    bottom:
        -8px;

    color:
        rgba(212,175,55,.12);

    font-family:
        Georgia, serif;

    font-size:
        100px;

    line-height:
        1;

    pointer-events:
        none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .client-feedback-section {

        padding:
            70px 15px 75px;
    }

    .feedback-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            15px;
    }

    .client-feedback-heading h2 {

        font-size:
            32px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .client-feedback-section {

        padding:
            55px 12px 60px;
    }

    .client-feedback-heading {

        margin-bottom:
            30px;
    }

    .client-feedback-heading span {

        font-size:
            9px;

        letter-spacing:
            2px;
    }

    .client-feedback-heading h2 {

        font-size:
            26px;
    }

    .client-feedback-heading p {

        font-size:
            12px;
    }

    .feedback-grid {

        grid-template-columns:
            1fr;

        gap:
            13px;
    }

    .feedback-card {

        padding:
            23px 18px;
    }

    .client-image {

        width:
            60px;

        height:
            60px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .client-feedback-section {

        padding:
            50px 10px;
    }

    .client-feedback-heading h2 {

        font-size:
            23px;
    }

    .feedback-card {

        padding:
            21px 15px;
    }

    .client-image {

        width:
            55px;

        height:
            55px;
    }

    .client-info h3 {

        font-size:
            14px;
    }

    .client-review {

        font-size:
            11px;

        line-height:
            1.7;
    }

}
/* =========================================================
   HINDI CTA SECTION
========================================================= */

.hindi-cta-section {

    position: relative;

    width: 100%;

    padding: 75px 20px;

    background:
        linear-gradient(
            135deg,
            #551019,
            #721d28,
            #551019
        );

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   GOLD DECORATION
========================================================= */

.hindi-cta-section::before {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    left: -150px;

    top: -150px;

    border:
        2px solid
        rgba(212,175,55,.25);

    border-radius: 50%;
}


.hindi-cta-section::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    right: -160px;

    bottom: -170px;

    border:
        2px solid
        rgba(212,175,55,.20);

    border-radius: 50%;
}


/* =========================================================
   CONTAINER
========================================================= */

.hindi-cta-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1000px;

    margin: 0 auto;

    text-align: center;
}


/* =========================================================
   CONTENT
========================================================= */

.hindi-cta-content {

    max-width: 850px;

    margin: 0 auto;
}


/* =========================================================
   SMALL TEXT
========================================================= */

.hindi-cta-small {

    display: inline-block;

    margin-bottom: 12px;

    color: #f3d65d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


/* =========================================================
   HEADING
========================================================= */

.hindi-cta-content h2 {

    margin: 0 0 16px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.4;

    font-weight: 700;
}


.hindi-cta-content h2 strong {

    color: #f3d65d;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hindi-cta-content p {

    max-width: 750px;

    margin: 0 auto;

    color: rgba(255,255,255,.88);

    font-size: 18px;

    line-height: 1.9;
}


/* =========================================================
   BUTTONS
========================================================= */

.hindi-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    margin-top: 28px;
}


/* =========================================================
   COMMON BUTTON
========================================================= */

.hindi-cta-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-width: 190px;

    min-height: 48px;

    padding: 10px 22px;

    border-radius: 6px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-sizing: border-box;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}


/* =========================================================
   CALL BUTTON
========================================================= */

.hindi-call-btn {

    color: #551019;

    background:
        linear-gradient(
            135deg,
            #f3d65d,
            #d4af37
        );

    border:
        1px solid #f3d65d;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,.15);
}


.hindi-call-btn:hover {

    transform:
        translateY(-4px);

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.25);
}


/* =========================================================
   WHATSAPP BUTTON
========================================================= */

.hindi-whatsapp-btn {

    color: #ffffff;

    background:
        rgba(255,255,255,.08);

    border:
        1px solid
        rgba(243,214,93,.8);
}


.hindi-whatsapp-btn:hover {

    transform:
        translateY(-4px);

    color:
        #551019;

    background:
        #ffffff;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,.20);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .hindi-cta-section {

        padding:
            65px 15px;
    }

    .hindi-cta-content h2 {

        font-size:
            31px;
    }

    .hindi-cta-content p {

        font-size:
            13px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .hindi-cta-section {

        padding:
            55px 12px;
    }

    .hindi-cta-small {

        font-size:
            9px;

        letter-spacing:
            2px;
    }

    .hindi-cta-content h2 {

        font-size:
            26px;

        line-height:
            1.5;
    }

    .hindi-cta-content p {

        font-size:
            12px;

        line-height:
            1.8;
    }

    .hindi-cta-buttons {

        flex-direction:
            column;

        gap:
            10px;

        margin-top:
            22px;
    }

    .hindi-cta-buttons a {

        width:
            100%;

        max-width:
            280px;

        min-height:
            46px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .hindi-cta-section {

        padding:
            48px 10px;
    }

    .hindi-cta-content h2 {

        font-size:
            23px;
    }

    .hindi-cta-content p {

        font-size:
            11px;
    }

}
/* =========================================================
   MAIN FOOTER
========================================================= */

.main-footer {

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #4d0e17,
            #63151f,
            #4d0e17
        );

    color: #ffffff;

    box-sizing: border-box;

    overflow: hidden;
}


/* =========================================================
   FOOTER CONTAINER
========================================================= */

.footer-container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding:
        65px 20px 55px;

    box-sizing: border-box;
}


/* =========================================================
   FOOTER GRID - 4 COLUMNS
========================================================= */

.footer-grid {

    display: grid;

    grid-template-columns:
        1.3fr 1fr 1.2fr 1.2fr;

    gap: 45px;
}


/* =========================================================
   FOOTER COLUMN
========================================================= */

.footer-column {

    min-width: 0;
}


/* =========================================================
   FOOTER TITLE
========================================================= */

.footer-title {

    margin:
        0 0 8px;

    color: #f3d65d;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.4;
}


/* =========================================================
   TITLE LINE
========================================================= */

.footer-title-line {

    width: 45px;

    height: 2px;

    margin-bottom: 18px;

    background:
        linear-gradient(
            90deg,
            #d4af37,
            #f3d65d
        );

    border-radius: 10px;
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.footer-about p {

    margin: 0 0 15px;

    color:
        rgba(255,255,255,.76);

    font-size: 16px;

    line-height: 1.9;
}


/* =========================================================
   READ MORE
========================================================= */

.footer-read-more {

    display: inline-block;

    color:
        #f3d65d;

    font-size:
        12px;

    font-weight:
        700;

    text-decoration:
        none;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.footer-read-more:hover {

    color:
        #ffffff;

    padding-left:
        5px;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {

    list-style:
        none;

    padding:
        0;

    margin:
        0;
}


.footer-links li {

    margin-bottom:
        10px;
}


.footer-links a {

    display:
        flex;

    align-items:
        center;

    gap:
        7px;

    color:
        rgba(255,255,255,.76);

    font-size:
        12px;

    line-height:
        1.5;

    text-decoration:
        none;

    transition:
        color .3s ease,
        padding-left .3s ease;
}


.footer-links a span {

    color:
        #d4af37;

    font-size:
        18px;

    line-height:
        12px;
}


.footer-links a:hover {

    color:
        #f3d65d;

    padding-left:
        5px;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.footer-contact-item {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    margin-bottom:
        17px;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.footer-contact-icon {

    flex-shrink:
        0;

    width:
        38px;

    height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #551019;

    background:
        linear-gradient(
            135deg,
            #f3d65d,
            #d4af37
        );

    border-radius:
        50%;

    font-size:
        15px;

    font-weight:
        700;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.footer-contact-item span {

    display:
        block;

    margin-bottom:
        3px;

    color:
        rgba(255,255,255,.55);

    font-size:
        9px;

    text-transform:
        uppercase;

    letter-spacing:
        1px;
}


.footer-contact-item a {

    color:
        #ffffff;

    font-size:
        11px;

    text-decoration:
        none;

    line-height:
        1.5;

    word-break:
        break-word;

    transition:
        color .3s ease;
}


.footer-contact-item a:hover {

    color:
        #f3d65d;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {

    width:
        100%;

    border-top:
        1px solid
        rgba(243,214,93,.18);

    background:
        rgba(0,0,0,.12);
}


.footer-bottom-container {

    width:
        100%;

    max-width:
        1200px;

    margin:
        0 auto;

    padding:
        17px 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    box-sizing:
        border-box;
}


/* COPYRIGHT */

.footer-bottom p {

    margin:
        0;

    color:
        rgba(255,255,255,.6);

    font-size:
        10px;
}


/* =========================================================
   BOTTOM LINKS
========================================================= */

.footer-bottom-links {

    display:
        flex;

    align-items:
        center;

    gap:
        18px;
}


.footer-bottom-links a {

    color:
        rgba(255,255,255,.6);

    font-size:
        10px;

    text-decoration:
        none;

    transition:
        color .3s ease;
}


.footer-bottom-links a:hover {

    color:
        #f3d65d;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .footer-container {

        padding:
            55px 20px 45px;
    }

    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap:
            40px 30px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-container {

        padding:
            50px 15px 40px;
    }

    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            32px;
    }

    .footer-title {

        font-size:
            16px;
    }

    .footer-about p {

        font-size:
            11px;
    }

    .footer-links a {

        font-size:
            11px;
    }

    .footer-contact-item {

        margin-bottom:
            14px;
    }

    .footer-bottom-container {

        flex-direction:
            column;

        text-align:
            center;

        padding:
            15px 10px;
    }

    .footer-bottom-links {

        flex-wrap:
            wrap;

        justify-content:
            center;

        gap:
            10px 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-container {

        padding:
            45px 12px 35px;
    }

    .footer-grid {

        gap:
            28px;
    }

    .footer-title {

        font-size:
            15px;
    }

    .footer-bottom p,
    .footer-bottom-links a {

        font-size:
            9px;
    }

}
/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

    position: relative;

    width: 100%;

    padding: 85px 20px 90px;

    background:
        #fffaf1;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.faq-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    left: -190px;

    top: -180px;

    border:
        1px solid
        rgba(177,138,32,.15);

    border-radius: 50%;

    pointer-events: none;
}


.faq-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -160px;

    bottom: -160px;

    border:
        1px solid
        rgba(85,16,25,.10);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.faq-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 900px;

    margin: 0 auto;
}


/* =========================================================
   HEADING
========================================================= */

.faq-heading {

    text-align: center;

    margin-bottom: 40px;
}


.faq-heading span {

    display: inline-block;

    margin-bottom: 8px;

    color: #b18a20;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 3px;
}


.faq-heading h2 {

    margin: 0 0 10px;

    color: #551019;

    font-size: 36px;

    line-height: 1.3;
}


.faq-heading h2 strong {

    color: #b18a20;
}


.faq-heading p {

    max-width: 620px;

    margin: 0 auto;

    color: #000;

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   GOLD LINE
========================================================= */

.faq-heading::after {

    content: "";

    display: block;

    width: 65px;

    height: 3px;

    margin: 15px auto 0;

    background:
        linear-gradient(
            90deg,
            #a87913,
            #f3d65d,
            #a87913
        );

    border-radius: 10px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 12px;
}


/* =========================================================
   FAQ ITEM
========================================================= */

.faq-item {

    position: relative;

    width: 100%;

    background:
        #ffffff;

    border:
        1px solid #ead9a5;

    border-left:
        4px solid #b18a20;

    border-radius:
        8px;

    box-shadow:
        0 5px 18px
        rgba(85,16,25,.06);

    overflow:
        hidden;

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


/* =========================================================
   HIDDEN CHECKBOX
========================================================= */

.faq-toggle {

    position: absolute;

    opacity: 0;

    pointer-events: none;
}


/* =========================================================
   QUESTION
========================================================= */

.faq-question {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        15px;

    width:
        100%;

    padding:
        19px 20px;

    color:
        #551019;

    font-size:
        14px;

    font-weight:
        700;

    line-height:
        1.5;

    cursor:
        pointer;

    box-sizing:
        border-box;

    transition:
        background .3s ease,
        color .3s ease;
}


.faq-question:hover {

    background:
        #fffaf0;
}


/* =========================================================
   PLUS ICON
========================================================= */

.faq-icon {

    flex-shrink:
        0;

    width:
        32px;

    height:
        32px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #ffffff;

    background:
        linear-gradient(
            135deg,
            #551019,
            #761c28
        );

    border-radius:
        50%;

    font-size:
        20px;

    font-weight:
        400;

    line-height:
        1;

    transition:
        transform .3s ease,
        background .3s ease;
}


/* =========================================================
   ANSWER
========================================================= */

.faq-answer {

    display:
        grid;

    grid-template-rows:
        0fr;

    transition:
        grid-template-rows .35s ease;
}


.faq-answer p {

    overflow:
        hidden;

    margin:
        0;

    padding:
        0 20px;

    color:
        #000;

    font-size:
        12px;

    line-height:
        1.8;

    box-sizing:
        border-box;
}


/* =========================================================
   OPEN FAQ
========================================================= */

.faq-toggle:checked
~ .faq-answer {

    grid-template-rows:
        1fr;
}


.faq-toggle:checked
~ .faq-answer p {

    padding:
        0 20px 18px;
}


/* CHANGE PLUS TO MINUS */

.faq-toggle:checked
~ .faq-question
.faq-icon {

    transform:
        rotate(45deg);

    background:
        linear-gradient(
            135deg,
            #b18a20,
            #d4af37
        );
}


/* ACTIVE QUESTION */

.faq-toggle:checked
~ .faq-question {

    background:
        #fffaf0;

    color:
        #761c28;
}


/* ACTIVE ITEM */

.faq-item:has(.faq-toggle:checked) {

    border-color:
        #d4af37;

    box-shadow:
        0 10px 25px
        rgba(85,16,25,.10);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 768px) {

    .faq-section {

        padding:
            70px 15px 75px;
    }

    .faq-heading h2 {

        font-size:
            31px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .faq-section {

        padding:
            55px 12px 60px;
    }

    .faq-heading {

        margin-bottom:
            30px;
    }

    .faq-heading span {

        font-size:
            9px;

        letter-spacing:
            2px;
    }

    .faq-heading h2 {

        font-size:
            26px;
    }

    .faq-heading p {

        font-size:
            12px;
    }

    .faq-list {

        gap:
            10px;
    }

    .faq-question {

        padding:
            15px 13px;

        font-size:
            12px;
    }

    .faq-icon {

        width:
            29px;

        height:
            29px;

        font-size:
            18px;
    }

    .faq-answer p {

        padding-left:
            13px;

        padding-right:
            13px;

        font-size:
            11px;

        line-height:
            1.7;
    }

    .faq-toggle:checked
    ~ .faq-answer p {

        padding:
            0 13px 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .faq-section {

        padding:
            50px 10px;
    }

    .faq-heading h2 {

        font-size:
            23px;
    }

    .faq-question {

        padding:
            13px 10px;

        font-size:
            11px;
    }

    .faq-icon {

        width:
            27px;

        height:
            27px;

        font-size:
            17px;
    }

    .faq-answer p {

        font-size:
            10px;
    }

}
/* =====================================================
   FLOATING CALL & WHATSAPP
===================================================== */

.floating-contact {

    position: fixed;

    right: 18px;
    bottom: 20px;

    z-index: 9999;

    display: flex;

    flex-direction: column;

    gap: 25px;
}


/* BUTTON */

.floating-btn {

    position: relative;

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    box-shadow:
        0 6px 18px
        rgba(0,0,0,.22);

    transition:
        width .3s ease,
        transform .3s ease,
        box-shadow .3s ease;

    overflow: hidden;
}


/* ICON */

.floating-icon {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    font-size: 21px;

    font-weight: 700;
}


/* TEXT */

.floating-text {

    position: absolute;

    right: 52px;

    opacity: 0;

    white-space: nowrap;

    padding: 8px 13px;

    border-radius: 5px;

    color: #fff;

    background: #551019;

    font-size: 11px;
    font-weight: 700;

    pointer-events: none;

    transform:
        translateX(10px);

    transition:
        .3s ease;
}


/* CALL */

.floating-call {

    color: #fff;
animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: #df0505;
}
@keyframes calla {
                    0% {
                        box-shadow: 0px 0px 0px 4px rgba(162, 162, 162, 0.8);
                    }

                    20% {
                        box-shadow: 0px 0px 0px 6px rgba(162, 162, 162, 0.6);
                    }

                    40% {
                        box-shadow: 0px 0px 0px 8px rgba(162, 162, 162, 0.4);
                    }

                    60% {
                        box-shadow: 0px 0px 0px 10px rgba(162, 162, 162, 0.2);
                    }

                    80% {
                        box-shadow: 0px 0px 0px 12px rgba(162, 162, 162, 0.1);
                    }

                    100% {
                        box-shadow: 0px 0px 0px 14px rgba(162, 162, 162, 0);
                    }
                }

/* WHATSAPP */

.floating-whatsapp {

    color: #fff;

    background: #03A437;
animation-name: calla;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    border:
        2px solid #d4af37;
}


/* HOVER */

.floating-btn:hover {

    transform:
        scale(1.08);

    box-shadow:
        0 9px 25px
        rgba(85,16,25,.30);
}


.floating-btn:hover .floating-text {

    opacity: 1;

    transform:
        translateX(0);
}


/* =====================================================
   PULSE ANIMATION
===================================================== */

.floating-call::before,
.floating-whatsapp::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    border:
        2px solid #d4af37;

    animation:
        floatingPulse 2s infinite;

    pointer-events: none;
}


@keyframes floatingPulse {

    0% {

        transform: scale(1);

        opacity: .7;
    }

    70% {

        transform: scale(1.35);

        opacity: 0;
    }

    100% {

        transform: scale(1.35);

        opacity: 0;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .floating-contact {

        right: 12px;

        bottom: 15px;

        gap: 8px;
    }


    .floating-btn {

        width: 48px;

        height: 48px;
    }


    .floating-icon {

        font-size: 19px;
    }


    /* MOBILE PAR TEXT HIDE */

    .floating-text {

        display: none;
    }

}
/* Unique Floating Contact Buttons */
.msi-floating-contact {
    position: fixed;
    left: 15px;
    bottom: 25px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.msi-floating-contact a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 23px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.msi-float-call {
    background: #e53935;
}

.msi-float-whatsapp {
    background: #25D366;
}

.msi-floating-contact a:hover {
    transform: scale(1.12);
    color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
    .msi-floating-contact {
        left: 10px;
        bottom: 18px;
        gap: 8px;
    }

    .msi-floating-contact a {
        width: 48px;
        height: 48px;
        font-size: 21px;
    }
}
/* ================================
   MSI AWARDS SECTION
================================ */

.msi-awards-wrap {
    width: 100%;
    display: block;
    padding: 1px 20px;
    background: #f7f7f7;
    box-sizing: border-box;
}

.msi-awards-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.msi-awards-title {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 45px;
    text-align: center;
    box-sizing: border-box;
}

.msi-awards-title span {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #c28b32;
}

.msi-awards-title h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.msi-awards-title p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

/* Desktop: 3 Columns */
.msi-awards-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 25px;
    box-sizing: border-box;
}

.msi-award-item {
    width: 100%;
    min-width: 0;
    
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.msi-award-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.14);
}

.msi-award-photo {
    width: 100%;
    height: 310px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
   
    box-sizing: border-box;
}

.msi-award-photo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.msi-award-info {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #eee;
    box-sizing: border-box;
}

.msi-award-info h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.4;
    color: #222;
}

.msi-award-info p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #777;
}


/* ================================
   TABLET
================================ */

@media screen and (max-width: 991px) {

    .msi-awards-wrap {
        padding: 60px 20px;
    }

    .msi-awards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .msi-award-photo {
        height: 280px;
    }

}


/* ================================
   MOBILE
================================ */

@media screen and (max-width: 767px) {

    .msi-awards-wrap {
        width: 100%;
        padding: 50px 15px;
        overflow: hidden;
    }

    .msi-awards-container {
        width: 100%;
        max-width: 100%;
    }

    .msi-awards-title {
        width: 100%;
        margin-bottom: 30px;
    }

    .msi-awards-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    .msi-awards-title p {
        font-size: 14px;
    }

    /* Mobile: 1 Column */
    .msi-awards-grid {
        width: 100%;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .msi-award-item {
        width: 100%;
        max-width: 100%;
    }

    .msi-award-photo {
        width: 100%;
        height: 280px;
        padding: 12px;
    }

    .msi-award-info {
        padding: 18px 15px;
    }

    .msi-award-info h3 {
        font-size: 18px;
    }

}


/* ================================
   SMALL MOBILE
================================ */

@media screen and (max-width: 480px) {

    .msi-awards-wrap {
        padding: 40px 12px;
    }

    .msi-awards-title h2 {
        font-size: 25px;
    }

    .msi-awards-title span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .msi-award-photo {
        height: 240px;
    }

    .msi-award-info h3 {
        font-size: 17px;
    }

    .msi-award-info p {
        font-size: 13px;
    }

}