/* =========================
   ISLAMIC TOP BAR
========================= */

.islamic-topbar {
    width: 100%;
    background: linear-gradient(90deg, #063b2b, #0b5d43, #063b2b);
    border-bottom: 1px solid rgba(212, 175, 55, 0.45);
    position: relative;
    z-index: 999;
}

.topbar-inner {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Blinking Message */
.topbar-message {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f4d77a;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    animation: islamicBlink 1.5s infinite;
}

.blink-icon {
    font-size: 18px;
    color: #e8c45a;
}

@keyframes islamicBlink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.35;
    }
}

/* Buttons */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.topbar-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 32px;
    padding: 5px 14px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.topbar-call {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.topbar-call:hover {
    background: #d4af37;
    color: #063b2b;
}

.topbar-whatsapp {
    color: #fff;
    background: #198754;
    border: 1px solid #48b883;
}

.topbar-whatsapp:hover {
    background: #d4af37;
    color: #063b2b;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {

    .islamic-topbar {
        padding: 8px 0;
    }

    .topbar-inner {
        min-height: auto;
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .topbar-message {
        font-size: 12px;
        white-space: normal;
        justify-content: center;
        line-height: 1.4;
    }

    .blink-icon {
        font-size: 15px;
    }

    .topbar-actions {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .topbar-actions a {
        flex: 1;
        max-width: 145px;
        font-size: 12px;
        padding: 6px 10px;
    }
}
/* =========================
   THREE IMAGE BANNER
========================= */

.three-banner-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.three-banner-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.banner-item {
    width: 100%;
    overflow: hidden;
}

.banner-item img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .three-banner-row {
        grid-template-columns: repeat(3, 1fr);
    }

    .banner-item img {
        width: 100%;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .three-banner-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .banner-item {
        width: 100%;
    }

    .banner-item img {
        width: 100%;
        height: auto;
    }
}
/* =========================
   PROMOTIONAL MARQUEE
========================= */

.promo-marquee {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(
        90deg,
        #063b2b,
        #0b5d43,
        #063b2b
    );
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    padding: 9px 0;
}

.promo-marquee-inner {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.promo-marquee-text {
    display: inline-block;
    padding-left: 100%;
    color: #f5d77a;
    font-size: 16px;
    font-weight: 600;
    animation: promoMarquee 25s linear infinite;
}

@keyframes promoMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mobile */
@media (max-width: 767px) {

    .promo-marquee {
        padding: 8px 0;
    }

    .promo-marquee-text {
        font-size: 13px;
        animation-duration: 20s;
    }
}
/* =========================
   IMAGE BANNER COLUMN
========================= */

.image-banner-section {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
}

.image-banner-column {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.image-banner-column img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 767px) {

    .image-banner-column {
        width: 100%;
    }

    .image-banner-column img {
        width: 100%;
        height: auto;
    }
}
/* =========================
   ISLAMIC CTA SECTION
========================= */

.islamic-cta-section {
    width: 100%;
    padding: 45px 0;
    background: #f8f5ec;
}

.islamic-cta-box {
    position: relative;
    overflow: hidden;
    padding: 45px 25px;
    text-align: center;
    border-radius: 12px;
    background:
        linear-gradient(
            rgba(4, 58, 42, 0.94),
            rgba(4, 58, 42, 0.94)
        ),
        url("images/bg.jpg");

    border: 2px solid #d4af37;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.cta-content {
    max-width: 800px;
    margin: auto;
}

.cta-bismillah {
    display: block;
    margin-bottom: 12px;
    color: #e4c45f;
    font-size: 22px;
    font-weight: 600;
}

.cta-content h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
}

.cta-content p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #f5eac6;
    font-size: 16px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    padding: 12px 22px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-call-btn {
    color: #063b2b;
    background: #d4af37;
}

.cta-call-btn:hover {
    color: #ffffff;
    background: #b89220;
}

.cta-whatsapp-btn {
    color: #ffffff;
    background: #198754;
}

.cta-whatsapp-btn:hover {
    color: #ffffff;
    background: #126b42;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .islamic-cta-section {
        padding: 25px 0;
    }

    .islamic-cta-box {
        padding: 30px 15px;
        border-radius: 8px;
    }

    .cta-bismillah {
        font-size: 18px;
    }

    .cta-content h2 {
        font-size: 24px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons a {
        width: 100%;
        max-width: 280px;
    }
}
/* =====================================================
   SERVICES SECTION
===================================================== */

.services-section {

    position: relative;

    width: 100%;

    padding: 85px 0;

    overflow: hidden;

    background-image: url("images/bg.jpg");

    background-size: cover;

    background-position: center;

}


/* =====================================================
   BACKGROUND OVERLAY
===================================================== */

.services-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            110deg,

            rgba(2, 27, 20, 0.96),

            rgba(4, 62, 43, 0.90)

        );

}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.services-container {

    position: relative;

    z-index: 2;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.services-heading {

    text-align: center;

    margin-bottom: 55px;

}


.services-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color: #dfbb50;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


.services-heading h2 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.3;

}


.services-heading p {

    margin: 0;

    color: #fff;

    font-size: 15px;

    line-height: 1.6;

}


/* =====================================================
   SERVICES LIST
===================================================== */

.services-list {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    min-height: 245px;

    padding: 22px;

    background:rgb(0 0 0 / 20%);

    border: 1px solid rgba(223, 187, 80, 0.45);

    border-radius: 16px;

    overflow: hidden;

    transition:

        transform 0.35s ease,

        background 0.35s ease,

        box-shadow 0.35s ease,

        border-color 0.35s ease;

}


/* =====================================================
   GOLD SIDE ACCENT
===================================================== */

.service-item::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 4px;

    height: 100%;

    background: #0;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform 0.35s ease;

}


.service-item:hover::before {

    transform: scaleY(1);

}


.service-item:hover {

    background: rgb(0 0 0 / 20%);

    border-color: #dfbb50;

    transform: translateY(-7px);

    box-shadow:

        0 18px 35px rgba(0, 0, 0, 0.3);

}


/* =====================================================
   ROUND SERVICE IMAGE
===================================================== */

.service-image-box {

    flex: 0 0 180px;

    width: 180px;

    height: 180px;

    padding: 5px;

    border-radius: 50%;

    background:

        linear-gradient(

            135deg,

            #a77b16,

            #f1d36d,

            #a77b16

        );

    transition:

        transform 0.35s ease;

}


.service-item:hover .service-image-box {

    transform: rotate(-8deg) scale(1.08);

}


.service-image-box img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    border: 4px solid #ffffff;

    border-radius: 50%;

}


/* =====================================================
   SERVICE CONTENT
===================================================== */

.service-info {

    flex: 1;

    min-width: 0;

}

 

.service-info h3 {
font-weight: bold;
    margin: 0 0 10px;

    color: #dfbb50;

    font-size: 19px;

    line-height: 1.3;

}


.service-info p {

    margin: 0 0 17px;

    color: #fff;

    font-size: 15px;

    line-height: 1.6;

}

 

/* =====================================================
   MOBILE CTA BUTTONS
===================================================== */

.service-buttons {

    display: none;

}


.service-buttons a {

    align-items: center;

    justify-content: center;

    gap: 6px;

    min-height: 38px;

    padding: 8px 10px;

    border-radius: 25px;

    font-size: 12px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.service-call-btn {

    color: #063b2b;

    background: #dfbb50;

}


.service-whatsapp-btn {

    color: #ffffff;

    background: #198754;

}


.service-buttons a:hover {

    transform: translateY(-2px);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {


    .services-list {

        grid-template-columns: repeat(2, 1fr);

    }


    .service-item:last-child {

        grid-column: 1 / -1;

        max-width: 480px;

        width: 100%;

        margin: auto;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .services-section {

        padding: 55px 0 45px;

        background-position: center;

    }


    .services-heading {

        margin-bottom: 35px;

    }


    .services-heading span {

        font-size: 11px;

        letter-spacing: 2px;

    }


    .services-heading h2 {

        font-size: 25px;

        line-height: 1.35;

    }


    .services-heading p {

        font-size: 13px;

        line-height: 1.6;

    }


    /* Single Column */

    .services-list {

        display: grid;

        grid-template-columns: 1fr;

        gap: 20px;

    }


    .service-item:last-child {

        max-width: 100%;

    }


    /* Mobile Card */

    .service-item {

        display: block;

        width: 100%;

        min-height: auto;

        padding: 22px 16px 20px;

        text-align: center;

        border-radius: 18px;

    }


    /* Mobile Image Top */

    .service-image-box {

        width: 250px;

        height: 250px;

        margin: 0 auto 16px;

        padding: 5px;

    }


    .service-item:hover .service-image-box {

        transform: none;

    }


    /* Mobile Number */

    .service-number {

        margin-bottom: 5px;

        font-size: 10px;

    }


    /* Mobile Title */

    .service-info h3 {

        margin-bottom: 10px;

        font-size: 19px;

        line-height: 1.3;

    }


    /* Mobile Content */

    .service-info p {

        max-width: 320px;

        margin: 0 auto 18px;

        font-size: 13px;

        line-height: 1.6;

    }


    /* Hide Desktop Link */

    .service-arrow {

        display: none;

    }


    /* Show CTA Buttons */

    .service-buttons {

        display: flex;

        justify-content: center;

        align-items: center;

        gap: 8px;

        width: 100%;

    }


    .service-buttons a {

        display: inline-flex;

        width: 50%;

        max-width: 160px;

    }


}
/* =====================================================
   ABOUT US SECTION
===================================================== */

.about-section {

    position: relative;

    width: 100%;

    padding: 100px 0;

    overflow: hidden;

    background: #f8f5ec;

}


/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.about-section::before {

    content: "";

    position: absolute;

    top: -180px;

    left: -180px;

    width: 420px;

    height: 420px;

    border: 1px solid rgba(190, 150, 45, 0.20);

    border-radius: 50%;

}


.about-section::after {

    content: "";

    position: absolute;

    right: -150px;

    bottom: -180px;

    width: 420px;

    height: 420px;

    border: 1px solid rgba(190, 150, 45, 0.20);

    border-radius: 50%;

}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.about-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;

}


/* =====================================================
   IMAGE AREA
===================================================== */

.about-visual {

    position: relative;

    min-height: 500px;

}


/* Main Image Frame */

.about-image-frame {

    position: relative;

    z-index: 2;

     

    margin-left: 30px;

    overflow: hidden;

    border-radius: 180px 180px 20px 20px;

    border: 8px solid #ffffff;

    box-shadow:

        0 20px 45px rgba(0, 0, 0, 0.18);

}


.about-image-frame img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.about-image-frame:hover img {

    transform: scale(1.08);

}


/* Gold Decorative Circle */

.about-circle {

    position: absolute;

    z-index: 1;

    top: 35px;

    left: 0;

    width: 230px;

    height: 230px;

    border: 2px solid #c69b32;

    border-radius: 50%;

}


.about-circle::before {

    content: "";

    position: absolute;

    inset: 18px;

    border: 1px dashed #c69b32;

    border-radius: 50%;

}


/* =====================================================
   EXPERIENCE BADGE
===================================================== */

.about-badge {

    position: absolute;

    z-index: 4;

    right: 0;

    bottom: 80px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 20px;

    background: #063b2b;

    border: 3px solid #d4af37;

    border-radius: 50px;

    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.2);

}


.about-badge strong {

    color: #e1bd55;

    font-size: 30px;

    line-height: 1;

}


.about-badge span {

    color: #ffffff;

    font-size: 11px;

    line-height: 1.4;

}


/* =====================================================
   QUOTE BOX
===================================================== */

.about-quote {

    position: absolute;

    z-index: 4;

    left: 0;

    bottom: 15px;

    width: 230px;

    padding: 15px 18px;

    background: #ffffff;

    border-left: 4px solid #d4af37;

    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.12);

}


.about-quote span {

    display: block;

    color: #d4af37;

    font-size: 28px;

    line-height: 20px;

}


.about-quote p {

    margin: 5px 0 0;

    color: #555555;

    font-size: 12px;

    line-height: 1.6;

    font-style: italic;

}


/* =====================================================
   CONTENT
===================================================== */

.about-content {

    max-width: 600px;

}


.about-label {

    margin-bottom: 15px;

    color: #b08a27;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


.about-content h2 {

    margin: 0 0 20px;

    color: #063b2b;

    font-size: 44px;

    line-height: 1.2;

    font-weight: 700;

}


.about-content h2 span {

    display: block;

    color: #b28a25;

    font-family: Georgia, serif;

    font-style: italic;

}


.about-intro {

    margin-bottom: 18px !important;

    color: #063b2b !important;

    font-size: 19px !important;

    font-weight: 600;

    line-height: 1.6 !important;

}


.about-content > p {

    margin: 0 0 15px;

    color: #000;

    font-size: 17px;

    line-height: 1.8;

}


/* =====================================================
   FEATURES
===================================================== */

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin: 28px 0;

}


.about-feature {

    display: flex;

    align-items: flex-start;

    gap: 10px;

}


.feature-icon {

    flex: 0 0 28px;

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #063b2b;

    background: #d4af37;

    border-radius: 50%;

    font-size: 18px;

    font-weight: 700;

}


.about-feature h4 {

    margin: 0 0 4px;

    color: #063b2b;

    font-size: 18px;

}


.about-feature span {

    color: #000;

    font-size: 15px;

    line-height: 1.5;

}


/* =====================================================
   BUTTON
===================================================== */

.about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 13px 22px;

    color: #ffffff;

    background: #063b2b;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    transition: all 0.3s ease;

}


.about-btn span {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 25px;

    height: 25px;

    color: #063b2b;

    background: #d4af37;

    border-radius: 50%;

    transition: transform 0.3s ease;

}


.about-btn:hover {

    color: #063b2b;

    background: #d4af37;

}


.about-btn:hover span {

    transform: rotate(45deg);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {


    .about-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }


    .about-visual {

        max-width: 550px;

        width: 100%;

        margin: auto;

    }


    .about-content {

        max-width: 100%;

        text-align: center;

    }


    .about-features {

        text-align: left;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .about-section {

        padding: 65px 0;

    }


    .about-wrapper {

        gap: 40px;

    }


    .about-visual {

        min-height: 390px;

    }


    .about-image-frame {

        width: 82%;

        height: 350px;

        margin-left: 18px;

        border-width: 6px;

        border-radius: 140px 140px 18px 18px;

    }


    .about-circle {

        top: 25px;

        left: -5px;

        width: 170px;

        height: 170px;

    }


    .about-circle::before {

        inset: 12px;

    }


    .about-badge {

        right: 0;

        bottom: 75px;

        padding: 11px 14px;

    }


    .about-badge strong {

        font-size: 24px;

    }


    .about-badge span {

        font-size: 9px;

    }


    .about-quote {

        left: 0;

        bottom: 5px;

        width: 190px;

        padding: 12px 14px;

    }


    .about-quote p {

        font-size: 10px;

    }


    .about-label {

        font-size: 11px;

        letter-spacing: 2px;

    }


    .about-content h2 {

        font-size: 31px;

    }


    .about-intro {

        font-size: 16px !important;

    }


    .about-content > p {

        font-size: 14px;

        line-height: 1.7;

    }


    .about-features {

        grid-template-columns: 1fr;

        gap: 14px;

        text-align: left;

    }


    .about-btn {

        margin-top: 5px;

    }

}
/* =====================================================
   OUR SERVICES SECTION
===================================================== */

.our-services-section {

    position: relative;

    width: 100%;

    padding: 90px 0;

    overflow: hidden;

    background-image:
        url("images/bg.jpg");

    background-size: cover;

    background-position: center;

}


/* =====================================================
   BACKGROUND OVERLAY
===================================================== */

.our-services-overlay {

    position: absolute;

    inset: 0;

    background:#fff;

}


/* =====================================================
   CONTAINER
===================================================== */

.services-container {

    position: relative;

    z-index: 2;

}


/* =====================================================
   SECTION HEADING
===================================================== */

.services-title {

    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;

}


.services-title span {

    display: inline-block;

    margin-bottom: 12px;

    color: #e1bd55;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

}


.services-title h2 {

    margin: 0 0 13px;

    color: #063b2b;
font-weight:bold;
    font-size: 40px;

    line-height: 1.3;

}


.services-title p {

    margin: 0;

    color: #000;

    font-size: 15px;

    line-height: 1.7;

}


/* =====================================================
   SERVICES GRID
===================================================== */

.services-cards {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;

}


/* =====================================================
   SERVICE CARD
===================================================== */

.service-card {
    text-align: center;
    position: relative;

    padding: 18px;

    overflow: hidden;

    background:#063b2b;

    border: 1px solid rgba(225, 189, 85, 0.45);

    border-radius: 18px;

    transition:

        transform 0.4s ease,

        border-color 0.4s ease,

        background 0.4s ease,

        box-shadow 0.4s ease;

}


/* Decorative Circle */

.service-card::after {

    content: "";

    position: absolute;

    right: -55px;

    bottom: -55px;

    width: 140px;

    height: 140px;

    border: 1px solid rgba(225, 189, 85, 0.25);

    border-radius: 50%;

    transition: transform 0.4s ease;

}


.service-card:hover {

    transform: translateY(-9px);

    background:#b28a25;

    border-color: #e1bd55;

    box-shadow:

        0 18px 40px rgba(0, 0, 0, 0.28);

}


.service-card:hover::after {

    transform: scale(1.4);

}


/* =====================================================
   SERVICE IMAGE
===================================================== */

.service-image {

    position: relative;

    width: 100%;

    height: 300px;

    margin-bottom: 18px;

    overflow: hidden;

    border-radius: 13px;

    border: 2px solid rgba(225, 189, 85, 0.6);

}


.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(3, 35, 25, 0.65),

            transparent

        );

}


.service-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}


.service-card:hover .service-image img {

    transform: scale(1.1);

}


/* =====================================================
   NUMBER
===================================================== */

.service-card-top {

    display: flex;

    align-items: center;

    margin-bottom: 10px;

}


 

/* =====================================================
   TITLE
===================================================== */

.service-card h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 10px;

    color: #e1bd55;
	font-weight:bold;
    font-size: 20px;

    line-height: 1.35;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.service-card p {

    position: relative;

    z-index: 2;

    

    margin: 0 0 20px;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   CALL + WHATSAPP BUTTONS
===================================================== */

.service-buttons {

    position: relative;

    z-index: 3;

    display: block;

    align-items: center;

    gap: 8px;

    width: 100%;

}


.service-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    

    padding: 9px 8px;

    border-radius: 25px;

    font-size: 15px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.service-call-btn {

    color: #063b2b;

    background: #e1bd55;

}


.service-whatsapp-btn {

    color: #ffffff;

    background: #198754;

}


.service-buttons a:hover {

    transform: translateY(-3px);

    box-shadow:

        0 6px 14px rgba(0, 0, 0, 0.22);

}


.service-call-btn:hover {

    color: #063b2b;

    background: #f0d477;

}


.service-whatsapp-btn:hover {

    color: #ffffff;

    background: #20a464;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {


    .services-cards {

        grid-template-columns: repeat(2, 1fr);

    }


    .services-title h2 {

        font-size: 34px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .our-services-section {

        padding: 60px 0;

    }


    .services-title {

        margin-bottom: 35px;

    }


    .services-title span {

        font-size: 11px;

        letter-spacing: 2px;

    }


    .services-title h2 {

        font-size: 27px;

        line-height: 1.35;

    }


    .services-title p {

        font-size: 13px;

    }


    .services-cards {

        grid-template-columns: 1fr;

        gap: 16px;

    }


    .service-card {

        padding: 16px;

        border-radius: 16px;

    }


    .service-image {

        height: 190px;

        margin-bottom: 16px;

        border-radius: 13px;

    }


    .service-card-top {

        margin-bottom: 8px;

    }


    .service-card-number {

        width: 34px;

        height: 34px;

    }


    .service-card h3 {

        font-size: 19px;

    }


    .service-card p {

        min-height: auto;

        margin-bottom: 18px;

        font-size: 13px;

        line-height: 1.6;

    }


    .service-buttons {

        gap: 7px;

    }


    .service-buttons a {

        min-height: 40px;

        font-size: 11px;

    }

}
/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */

.why-choose-section {

    position: relative;

    width: 100%;

    padding: 95px 0;

    overflow: hidden;

    background-image:
        url("images/bg.jpg");

    background-size: cover;

    background-position: center;

    background-attachment: fixed;
}


/* Decorative Background */
/* =====================================================
   BACKGROUND OVERLAY
===================================================== */

.why-choose-section::before {

    content: "";

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;
 
    background:linear-gradient(180deg,rgba(6,37,30,.92),rgba(6,37,30,.84)),url('images/bg.jpg');
    background-position: center;
    z-index: 0;
    background-size: cover;
}


.why-choose-section::after {

    display: none;

}
.why-choose-wrapper {

    position: relative;

    z-index: 2;

}


/* =====================================================
   MAIN WRAPPER
===================================================== */

.why-choose-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    align-items: center;

    gap: 80px;

}


/* =====================================================
   LEFT CONTENT
===================================================== */

.why-choose-content {

    max-width: 520px;

}


.why-label {

    display: inline-block;

    margin-bottom: 15px;

    color: #ad8524;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.why-choose-content h2 {

    margin: 0 0 22px;

    color: #fff;

    font-size: 43px;

    line-height: 1.2;

}


.why-choose-content h2 span {

    display: block;

    color: #b28a25;

    font-family: Georgia, serif;

    font-style: italic;

}


.why-choose-content p {

    margin: 0 0 16px;

    color: #fff;

    font-size: 15px;

    line-height: 1.8;

}


/* =====================================================
   CTA BUTTON
===================================================== */

.why-choose-btn {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 15px;

    padding: 13px 23px;

    color: #ffffff;

    background: #063b2b;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.why-choose-btn:hover {

    color: #063b2b;

    background: #d4af37;

    transform: translateY(-3px);

}


/* =====================================================
   FEATURES GRID
===================================================== */

.why-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

}


/* =====================================================
   FEATURE CARD
===================================================== */

.why-feature-card {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding: 25px 20px;

    background: #ffffff;

    border: 1px solid rgba(190, 150, 45, 0.25);

    border-radius: 16px;

    box-shadow:

        0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.35s ease;

}


.why-feature-card:hover {

    transform: translateY(-7px);

    border-color: #d4af37;

    box-shadow:

        0 15px 35px rgba(0, 0, 0, 0.12);

}


/* =====================================================
   FEATURE ICON
===================================================== */

.why-feature-icon {

    flex: 0 0 52px;

    width: 52px;

    height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #063b2b;

    background:

        linear-gradient(

            135deg,

            #e5c766,

            #c49a32

        );

    border-radius: 50%;

    font-size: 20px;

}


/* =====================================================
   FEATURE CONTENT
===================================================== */

.why-feature-card h3 {

    margin: 3px 0 8px;

    color: #063b2b;

    font-size: 16px;

    line-height: 1.3;

}


.why-feature-card p {

    margin: 0;

    color: #000;

    font-size: 14px;

    line-height: 1.6;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {


    .why-choose-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }


    .why-choose-content {

        max-width: 700px;

        text-align: center;

        margin: auto;

    }


    .why-features {

        max-width: 700px;

        width: 100%;

        margin: auto;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {


    .why-choose-section {

        padding: 65px 0;

    }


    .why-choose-wrapper {

        gap: 35px;

    }


    .why-label {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .why-choose-content h2 {

        font-size: 31px;

        line-height: 1.25;

    }


    .why-choose-content p {

        font-size: 14px;

        line-height: 1.7;

    }


    .why-features {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .why-feature-card {

        padding: 18px 15px;

    }


    .why-feature-icon {

        flex: 0 0 46px;

        width: 46px;

        height: 46px;

        font-size: 18px;

    }


    .why-feature-card h3 {

        font-size: 15px;

    }


    .why-feature-card p {

        font-size: 12px;

    }

}
/* =====================================================
   SERVICES WHITE SECTION
===================================================== */

.services-white-section {

    position: relative;

    width: 100%;

    padding: 95px 0;

    background: #ffffff;

    overflow: hidden;

}


/* Decorative Islamic Background */

.services-white-section::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(212, 175, 55, 0.18);

    border-radius: 50%;

}


.services-white-section::after {

    content: "";

    position: absolute;

    bottom: -200px;

    left: -200px;

    width: 430px;

    height: 430px;

    border: 1px solid rgba(212, 175, 55, 0.18);

    border-radius: 50%;

}


/* =====================================================
   HEADING
===================================================== */

.services-white-heading {

    position: relative;

    z-index: 2;

    max-width: 680px;

    margin: 0 auto 55px;

    text-align: center;

}


.services-white-heading span {

    display: inline-block;

    margin-bottom: 12px;

    color: #b28a25;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


.services-white-heading h2 {

    margin: 0 0 14px;

    color: #063b2b;

    font-size: 42px;

    line-height: 1.25;

}


.services-white-heading h2 em {

    display: block;

    color: #b28a25;

    font-family: Georgia, serif;

    font-weight: 400;

}


.services-white-heading p {

    margin: 0;

    color: #000;

    font-size: 15px;

    line-height: 1.7;

}


/* =====================================================
   GRID
===================================================== */

.services-white-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}


/* =====================================================
   CARD
===================================================== */

.white-service-card {

    position: relative;

    overflow: hidden;

    background: linear-gradient(

            135deg,

            rgba(3, 35, 25, 0.94),

            rgba(5, 76, 52, 0.88)

        );

    border: 1px solid #e5e5e5;

    border-radius: 18px;

    box-shadow:

        0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all 0.4s ease;

}


.white-service-card:hover {

    transform: translateY(-10px);

    border-color: #d4af37;

    box-shadow:

        0 20px 40px rgba(0, 0, 0, 0.13);

}


/* =====================================================
   IMAGE
===================================================== */

.white-service-image {

    position: relative;

    width: 100%;

    height: 210px;

    overflow: hidden;

}


.white-service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            to top,

            rgba(3, 59, 43, 0.65),

            transparent 60%

        );

}


.white-service-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.6s ease;

}


.white-service-card:hover
.white-service-image img {

    transform: scale(1.1);

}


/* =====================================================
   CONTENT
===================================================== */

.white-service-content {

    position: relative;

    padding: 30px 22px 22px;

    text-align: center;

}


/* =====================================================
   ICON
===================================================== */

.white-service-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 58px;

    height: 58px;

    margin: -58px auto 17px;

    position: relative;

    z-index: 3;

    color: #063b2b;

    background: #d4af37;

    border: 5px solid #ffffff;

    border-radius: 50%;

    font-size: 21px;

    transition: all 0.4s ease;

}


.white-service-card:hover
.white-service-icon {

    transform: rotate(12deg) scale(1.08);

}


/* =====================================================
   TITLE
===================================================== */

.white-service-content h3 {

    margin: 0 0 10px;

    color: #d4af37;

    font-size: 22px;
font-weight: bold;
    line-height: 1.35;

}


/* =====================================================
   DESCRIPTION
===================================================== */

.white-service-content p {

    min-height: 58px;

    margin: 0 0 20px;

    color: #fff;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   BUTTONS
===================================================== */

.white-service-buttons {

    display: flex;

    gap: 8px;

}


.white-service-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 6px;

    width: 50%;

    min-height: 40px;

    padding: 9px 7px;

    border-radius: 25px;

    font-size: 11px;

    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;

}


.white-call-btn {

    color: #ffffff;

    background: #063b2b;

}


.white-whatsapp-btn {

    color: #ffffff;

    background: #198754;

}


.white-service-buttons a:hover {

    transform: translateY(-3px);

    box-shadow:

        0 6px 15px rgba(0, 0, 0, 0.18);

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .services-white-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .services-white-section {

        padding: 65px 0;

    }


    .services-white-heading {

        margin-bottom: 35px;

    }


    .services-white-heading span {

        font-size: 10px;

        letter-spacing: 2px;

    }


    .services-white-heading h2 {

        font-size: 29px;

    }


    .services-white-heading p {

        font-size: 13px;

    }


    .services-white-grid {

        grid-template-columns: 1fr;

        gap: 18px;

    }


    .white-service-image {

        height: 200px;

    }


    .white-service-content {

        padding: 28px 18px 18px;

    }


    .white-service-content h3 {

        font-size: 18px;

    }


    .white-service-content p {

        min-height: auto;

        font-size: 13px;

    }


    .white-service-buttons a {

        min-height: 40px;

        font-size: 11px;

    }

}
/* =====================================================
   HINDI CALL TO ACTION SECTION
===================================================== */

.hindi-cta-section {

    position: relative;

    width: 100%;

    padding: 85px 20px;

    overflow: hidden;

    background-image:

        url("images/bg.jpg");

    background-size: cover;

    background-position: center;

}


/* Overlay */

.hindi-cta-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(

            135deg,

            rgba(3, 45, 32, 0.96),

            rgba(5, 90, 61, 0.88)

        );

}


/* Decorative Circle */

.hindi-cta-section::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -150px;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(225, 189, 85, 0.35);

    border-radius: 50%;

}


.hindi-cta-section::after {

    content: "";

    position: absolute;

    bottom: -180px;

    left: -150px;

    width: 400px;

    height: 400px;

    border: 1px solid rgba(225, 189, 85, 0.35);

    border-radius: 50%;

}


/* =====================================================
   CONTENT
===================================================== */

.hindi-cta-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

    margin: auto;

    text-align: center;

}


.hindi-cta-small {

    display: inline-block;

    margin-bottom: 15px;

    color: #e1bd55;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.hindi-cta-content h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 42px;

    line-height: 1.45;

    font-weight: 700;

}


.hindi-cta-content h2 span {

    display: block;

    color: #e1bd55;

}


.hindi-cta-content p {

    max-width: 700px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 18px;

    line-height: 1.8;

}


/* =====================================================
   BUTTONS
===================================================== */

.hindi-cta-buttons {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 15px;

}


.hindi-cta-buttons a {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 210px;

    padding: 15px 24px;

    border-radius: 35px;

    font-size: 15px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;

}


.hindi-cta-call {

    color: #063b2b;

    background: #e1bd55;

}


.hindi-cta-whatsapp {

    color: #ffffff;

    background: #198754;

}


.hindi-cta-buttons a:hover {

    transform: translateY(-5px);

    box-shadow:

        0 10px 25px rgba(0, 0, 0, 0.25);

}


.hindi-cta-call:hover {

    color: #063b2b;

    background: #f0d477;

}


.hindi-cta-whatsapp:hover {

    color: #ffffff;

    background: #20a464;

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .hindi-cta-section {

        padding: 65px 15px;

    }


    .hindi-cta-small {

        font-size: 11px;

        letter-spacing: 1px;

    }


    .hindi-cta-content h2 {

        font-size: 28px;

        line-height: 1.5;

    }


    .hindi-cta-content p {

        font-size: 15px;

        line-height: 1.8;

    }


    .hindi-cta-buttons {

        flex-direction: column;

        gap: 12px;

    }


    .hindi-cta-buttons a {

        width: 100%;

        max-width: 320px;

        min-height: 50px;

        font-size: 14px;

    }

}
/* Client Feedback Section */
.client-feedback-section {
    padding: 90px 0;
    background: #f8fbf7;
    position: relative;
}

.client-feedback-section .section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-subtitle {
    color: #b58b32;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.client-feedback-section h2 {
    color: #075c45;
    font-size: 38px;
    margin: 12px 0;
    font-weight: 700;
}

.client-feedback-section .section-heading p {
    color: #000;
    font-size: 16px;
}

.feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feedback-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 35px 25px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(181, 139, 50, 0.18);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(7, 92, 69, 0.15);
}

.client-image {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #b58b32, #075c45);
}

.client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.quote-icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #075c45;
    color: #ffffff;
    font-size: 17px;
}

.feedback-content p {
    color: #000;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 18px;
}

.rating {
    color: #b58b32;
    margin-bottom: 12px;
}

.rating i {
    margin: 0 2px;
}

.feedback-content h4 {
    margin: 0;
    color: #075c45;
    font-size: 18px;
}

.feedback-content span {
    display: block;
    color: #000;
    font-size: 13px;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 991px) {
    .feedback-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .client-feedback-section {
        padding: 60px 15px;
    }

    .client-feedback-section h2 {
        font-size: 28px;
    }

    .feedback-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feedback-card {
        padding: 30px 20px;
    }
}
/* Main Footer */
.main-footer {
    background: #064b39;
    padding-top: 70px;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h3 {
    position: relative;
    color: #d6ad52;
    font-size: 20px;
	    font-weight: bold;
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 2px;
    background: #d6ad52;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-column ul li a:hover {
    color: #d6ad52;
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 18px;
}

.footer-contact p i {
    color: #d6ad52;
    width: 18px;
    font-size: 16px;
}

.footer-contact p a {
    color: #fff;
    text-decoration: none;
}

.footer-contact p a:hover {
    color: #d6ad52;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
	text-decoration: none;
    justify-content: center;
    border: 1px solid rgba(214, 173, 82, 0.5);
    border-radius: 50%;
    color: #d6ad52;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: #d6ad52;
    color: #064b39;
}

.footer-bottom {
    margin-top: 55px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px 25px;
    }
}

@media (max-width: 575px) {
    .main-footer {
        padding-top: 50px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        margin-top: 40px;
    }
}
/* FAQ Section */
.faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.faq-section .section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-section h2 {
    color: #075c45;
    font-size: 38px;
    margin: 12px 0;
}

.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(181, 139, 50, 0.25);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    transition: 0.3s ease;
}

.faq-item.active {
    border-color: #b58b32;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    color: #075c45;
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: #b58b32;
    font-size: 14px;
    transition: 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 25px 20px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile */
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 15px;
    }

    .faq-section h2 {
        font-size: 28px;
    }

    .faq-question {
        padding: 17px 18px;
        font-size: 14px;
        gap: 15px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }
}