:root {
            --primary: #087f70;
            --secondary: #d6a84f;
            --dark: #071c1b;
            --light: #f8f5ec;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-weight: 700;
        }

        .section-padding {
            padding: 90px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: #d6a84f;
            font-size: 38px;
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary);
        }

        .section-title p {
            max-width: 700px;
            margin: auto;
            color: #fff;
        }

        /* TOP BAR */

        .topbar {
            background: var(--dark);
            color: #fff;
            padding: 9px 0;
            font-size: 14px;
        }

        .topbar a {
            color: #fff;
            text-decoration: none;
            margin-left: 18px;
        }

        .topbar a:hover {
            color: var(--secondary);
        }

        /* NAVBAR */

        .navbar {
            background: #fff;
            padding: 16px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            position: sticky;
            top: 0;
            z-index: 999;
        }
/* NAVBAR LOGO */

.logo-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo-brand img {
    width: 280px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}

/* MOBILE LOGO */

@media (max-width: 767px) {

    .logo-brand img {
        width: 100%;
        max-height: 55px;
    }

}
        .navbar-brand {
            font-family: 'Amiri', serif;
            font-size: 34px;
            font-weight: 700;
            color: var(--primary) !important;
        }

        .navbar-brand span {
            color: var(--secondary);
        }

        .navbar-nav .nav-link {
            color: #000;
            font-weight: 500;
            margin: 0 10px;
            transition: 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary);
        }

        .nav-btn {
            background: var(--primary);
            color: #fff !important;
            padding: 10px 20px !important;
            border-radius: 30px;
        }

        .nav-btn:hover {
            background: var(--secondary);
        }

        /* HERO */

        .hero {
            min-height: 680px;
            display: flex;
            align-items: center;
            position: relative;
            background:
                linear-gradient(rgba(3, 30, 28, 0.78), rgba(3, 30, 28, 0.78)),
                url("images/bg-1.jpg");
            background-size: cover;
            background-position: center;
        }

        .hero-content {
            color: #fff;
            max-width: 750px;
        }

        .hero-content small {
            color: var(--secondary);
            font-size: 18px;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .hero-content h1 {
            font-family: 'Amiri', serif;
            font-size: 70px;
            line-height: 1.1;
            margin: 15px 0;
        }

        .hero-content h1 span {
            color: var(--secondary);
        }

        .hero-content p {
            font-size: 18px;
            line-height: 1.8;
            color: #eee;
        }

        .hero-buttons {
            margin-top: 30px;
        }

        .btn-main {
            background: var(--secondary);
            color: #fff;
            border: none;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            margin-right: 10px;
            transition: 0.3s;
        }

        .btn-main:hover {
            background: #fff;
            color: var(--dark);
        }

        .btn-outline-light-custom {
            border: 1px solid #fff;
            color: #fff;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--dark);
        }

        /* ABOUT */

        .about-img {
            position: relative;
        }

        .about-img img {
            width: 100%;
            border-radius: 15px;
           
            object-fit: cover;
        }

        
        .about-content h2 {
            color: var(--dark);
            font-size: 40px;
            margin-bottom: 20px;
        }

        .about-content h2 span {
            color: var(--primary);
        }

        .about-content p {
            color: #000;
            line-height: 1.9;
        }

        .check-list {
            list-style: none;
            padding: 0;
            margin-top: 25px;
        }

        .check-list li {
            margin-bottom: 14px;
            color: #000;
        }

        .check-list i {
            color: var(--primary);
            margin-right: 10px;
        }

        /* SERVICES */

        .services-section {
            background:#071c1b;
        }

        .service-card {
            background: #fff;
            padding: 35px 25px;
            text-align: center;
            border-radius: 12px;
            height: 100%;
            transition: 0.4s;
            border-bottom: 3px solid transparent;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--secondary);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .service-icon {
            width: 75px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: auto auto 20px;
            background: rgba(8,127,112,0.1);
            color: var(--primary);
            font-size: 30px;
            border-radius: 50%;
        }

        .service-card h4 {
            font-size: 21px;
            color: var(--dark);
            margin-bottom: 15px;
        }

        .service-card p {
            font-size: 14px;
            line-height: 1.7;
            color: #000;
        }

        /* WHY CHOOSE */

        .why-section {
            background:
                linear-gradient(rgba(7,28,27,0.92), rgba(7,28,27,0.92)),
                url("images/bg.avif");
            background-size: cover;
            background-position: center;
            color: #fff;
        }

        .why-section .section-title h2 {
            color: #fff;
        }

        .why-section .section-title p {
            color: #ddd;
        }

        .why-box {
            text-align: center;
            padding: 25px;
        }

        .why-box i {
            font-size: 42px;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .why-box h4 {
            margin-bottom: 12px;
        }

        .why-box p {
            color: #ccc;
            font-size: 14px;
            line-height: 1.7;
        }

        /* PROCESS */

        .process-card {
            text-align: center;
            padding: 20px;
			background:linear-gradient(rgba(7,28,27,0.92), rgba(7,28,27,0.92)),
                url("images/bg.avif")
        }

        .process-number {
            width: 65px;
            height: 65px;
            line-height: 65px;
            margin: 0 auto 20px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-size: 24px;
            font-weight: 700;
        }

        .process-card h4 {
            color:#d6a84f;
        }

        .process-card p {
            color: #fff;
            font-size: 14px;
        }

        /* CTA */

        .cta-section {
            background: #071c1b;
            color: #fff;
            padding: 70px 0;
        }

        .cta-section h2 {
            font-size: 40px;
        }

        .cta-section p {
            color: #e3eeee;
        }

        /* TESTIMONIALS */

        .testimonial-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
            height: 100%;
        }

        .testimonial-card .stars {
            color: var(--secondary);
            margin-bottom: 15px;
        }

        .testimonial-card p {
            color: #000;
            line-height: 1.8;
            font-size: 14px;
        }

        .client {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .client-img {
            width: 50px;
            height: 50px;
            background: var(--primary);
            border-radius: 50%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        .client h6 {
            margin: 0;
        }

        .client small {
            color: #000;
        }

        /* FAQ */

        .accordion-item {
            border: none;
            margin-bottom: 12px;
            border-radius: 8px !important;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }

        .accordion-button {
            font-weight: 600;
            color: var(--dark);
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary);
            background: #f2faf8;
            box-shadow: none;
        }

        /* CONTACT */

        .contact-section {
            background: var(--light);
        }

        .contact-info {
            background: var(--dark);
            color: #fff;
            padding: 40px;
            border-radius: 12px;
            height: 100%;
        }

        .contact-info h3 {
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 25px;
        }

        .contact-item i {
            color: var(--secondary);
            font-size: 22px;
            width: 40px;
        }

        .contact-item p {
            margin: 0;
            color: #ddd;
        }

        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.07);
        }

        .form-control {
            padding: 13px 15px;
            border-radius: 6px;
            border: 1px solid #ddd;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(8,127,112,0.12);
        }

        /* FOOTER */

        footer {
            background: #041211;
            color: #aaa;
            padding: 55px 0 20px;
        }

        footer h4 {
            color: #fff;
            margin-bottom: 20px;
        }

        footer p {
            font-size: 14px;
            line-height: 1.8;
			    color: #fff;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        footer ul li a:hover {
            color: var(--secondary);
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            color: #fff;
            border-radius: 50%;
            margin-right: 8px;
            transition: 0.3s;
        }

        .social-links a:hover {
            background: var(--secondary);
            color: #fff;
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
            font-size: 13px;
        }

        /* FLOATING BUTTONS */

        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .floating-buttons a {
            width: 52px;
            height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            font-size: 23px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.25);
        }

        .call-btn {
            background: var(--primary);
        }

        .whatsapp-btn {
            background: #25d366;
        }

        /* RESPONSIVE */

        @media (max-width: 991px) {

            .hero-content h1 {
                font-size: 55px;
            }

            .navbar-nav {
                padding-top: 15px;
            }

            .nav-btn {
                display: inline-block;
                margin-top: 10px;
            }

        }

        @media (max-width: 767px) {

            .topbar {
                text-align: center;
                font-size: 12px;
            }

            .topbar .text-end {
                text-align: center !important;
                margin-top: 5px;
            }

            .hero {
                min-height: 600px;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 46px;
            }

            .hero-content p {
                font-size: 15px;
            }

            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }

            .section-padding {
                padding: 65px 0;
            }

            .section-title h2 {
                font-size: 30px;
            }

            .about-img {
                margin-bottom: 40px;
            }

            .about-img img {
                height: 380px;
            }

            .about-badge {
                right: 10px;
            }

            .about-content h2 {
                font-size: 31px;
            }

            .cta-section {
                text-align: center;
            }

            .cta-section h2 {
                font-size: 30px;
            }

            .contact-info {
                margin-bottom: 25px;
            }

            .contact-form,
            .contact-info {
                padding: 25px;
            }

            .navbar-brand {
                font-size: 28px;
            }

        }
/* POPULAR SERVICES */

.popular-services {
    background:#071c1b;
}

.service-subtitle {
    display: inline-block;
    color:#fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.popular-service-card {
    background: #ffffff;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
	text-align:center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(8, 127, 112, 0.08);
}

.popular-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.service-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.35)
    );
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.popular-service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #071c1b;
    font-size: 22px;
    margin-bottom: 13px;
}

.service-content p {
    color: #000;
    font-size: 14px;
    line-height: 1.8;
    min-height: 76px;
    margin-bottom: 22px;
}

.service-buttons {
    display: flex;
    gap: 10px;
}

.service-buttons a {
    flex: 1;
    text-align: center;
    text-decoration: none;
    padding: 11px 8px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-call-btn {
    background: #087f70;
    color: #fff;
}

.service-call-btn:hover {
    background: #071c1b;
    color: #fff;
}

.service-whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.service-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
}

.service-buttons i {
    margin-right: 5px;
}

@media (max-width: 575px) {

    .service-image {
        height: 220px;
    }

    .service-content {
        padding: 22px 18px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p {
        min-height: auto;
    }

    .service-buttons a {
        font-size: 12px;
        padding: 10px 5px;
    }

}
/* IMAGE BANNER SECTION */

.image-banner-section {
    min-height: 430px;
    display: flex;
    align-items: center;
    position: relative;
    background-image:
        linear-gradient(
            rgba(4, 28, 26, 0.78),
            rgba(4, 28, 26, 0.78)
        ),
        url("images/bg.avif");

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: #fff;
}

.image-banner-content {
    max-width: 850px;
    margin: auto;
}

.banner-small-title {
    color: #d6a84f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.image-banner-content h2 {
    font-size: 44px;
    line-height: 1.3;
    margin: 15px 0;
}

.image-banner-content h2 span {
    color: #d6a84f;
}

.image-banner-content p {
    max-width: 700px;
    margin: 0 auto;
    color: #e5e5e5;
    font-size: 16px;
    line-height: 1.8;
}

.banner-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.banner-buttons a {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.banner-call-btn {
    background: #d6a84f;
    color: #fff;
}

.banner-call-btn:hover {
    background: #fff;
    color: #071c1b;
}

.banner-whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.banner-whatsapp-btn:hover {
    background: #128c7e;
    color: #fff;
}

.banner-buttons i {
    margin-right: 8px;
}

/* MOBILE */

@media (max-width: 767px) {

    .image-banner-section {
        min-height: 500px;
        padding: 70px 15px;
        background-attachment: scroll;
    }

    .image-banner-content h2 {
        font-size: 31px;
    }

    .image-banner-content p {
        font-size: 14px;
    }

    .banner-buttons {
        display: block;
    }

    .banner-buttons a {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }

}
/* MOBILE ONLY IMAGE BANNER */

.mobile-only-banner {
    display: none;
}

@media (max-width: 767px) {

    .mobile-only-banner {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .mobile-only-banner img {
        display: block;
        width: 100%;
        height: auto;
        min-height: 220px;
        object-fit: cover;
    }

}
/* ===================================
   PREMIUM HERO SECTION
=================================== */

.premium-hero {

    min-height: 700px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

    background:linear-gradient(rgba(3, 30, 28, 0.78), rgba(3, 30, 28, 0.78)),
                url("images/bg-1.jpg");

    background-size: cover;

    background-position: center;

}


/* DECORATIVE GLOW */

.premium-hero::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    right: -180px;

    top: 30px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(255, 145, 0, 0.18),
        transparent 65%
    );

    pointer-events: none;

}


/* LEFT CONTENT */

.hero-badge {

    display: inline-block;

    padding: 10px 20px;

    border: 1px solid #e3a400;

    border-radius: 30px;

    color: #ffbd00;

    background:rgb(80 35 0 / 6%);

    font-size: 15px;

    font-weight: 600;

    margin-bottom: 18px;
    
}


.premium-hero h1 {

    color: #ffffff;

    font-size: clamp(42px, 5vw, 70px);

    

    font-weight: 800;

    margin-bottom: 25px;

    letter-spacing: -1px;

}


.premium-hero h1 span {

    color: #ffffff;

}


.hero-description {

    max-width: 700px;

    color: #f1e5df;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 30px;

}


/* BUTTONS */

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


.hero-buttons a {

    text-decoration: none;

    padding: 15px 28px;

    border-radius: 35px;

    font-weight: 700;

    transition: all 0.3s ease;

}


.hero-call-btn {

    color: #fff;

    background: linear-gradient(
        90deg,
        #b91c00,
        #ffad00
    );

}


.hero-call-btn:hover {

    transform: translateY(-3px);

    color: #fff;

    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.35);

}


.hero-whatsapp-btn {

    color: #fff;

    background: #20d86a;

}


.hero-whatsapp-btn:hover {

    transform: translateY(-3px);

    color: #fff;

    background: #16b958;

}


 

/* CONSULTATION CARD */

.consultation-card {

    position: relative;

    padding: 42px;

    border-radius: 32px;

    background: rgba(255, 249, 233, 0.94);

    border: 5px solid #f2c557;

    box-shadow:

        0 20px 60px rgba(0, 0, 0, 0.45),

        inset 0 0 30px rgba(255, 255, 255, 0.4);

}


.consultation-card h2 {

    color: #071c1b;

    font-family: Georgia, serif;

    font-size: 34px;

    line-height: 1.2;

    margin-bottom: 20px;

}


.consultation-card p {

    color: #222;

    font-size: 16px;

    line-height: 1.8;

}


.hindi-text {

    font-family: 'Noto Sans Devanagari', sans-serif;

    margin-top: 15px;

}


.consultation-btn {

    display: inline-block;

    margin-top: 15px;

    padding: 15px 25px;

    background: #087f70;

    color: #fff;

    text-decoration: none;

    border-radius: 30px;

    font-weight: 700;

    transition: 0.3s;

}


.consultation-btn:hover {

    background: #000;

    color: #fff;

    transform: translateY(-3px);

}


/* TABLET */

@media (max-width: 991px) {

    .premium-hero {

        padding: 90px 0;

    }

    .consultation-card {

        margin-top: 50px;

    }

}


/* MOBILE */

@media (max-width: 767px) {

    .premium-hero {

        min-height: auto;

        padding: 70px 15px;

        text-align: center;

        background-position: center;

    }


    .hero-badge {

        font-size: 12px;

        padding: 9px 16px;

    }


    .premium-hero h1 {
		font-size: 33px;
        line-height: 55px;

    }


    .hero-description {

        font-size: 15px;

        line-height: 1.7;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-buttons a {

        width: 100%;

    }


    .hero-stats {

        justify-content: center;

        gap: 8px;

        margin-top: 35px;

    }


    .hero-stat-box {

        width: 31%;

        min-height: 95px;

        padding: 15px 5px;

    }


    .hero-stat-box strong {

        font-size: 23px;

    }


    .hero-stat-box span {

        font-size: 10px;

    }


    .consultation-card {

        margin-top: 45px;

        padding: 28px 20px;

        border-radius: 25px;

    }


    .consultation-card h2 {

        font-size: 27px;

    }


    .consultation-card p {

        font-size: 14px;

    }


    .consultation-btn {

        width: 100%;

        font-size: 13px;

        padding: 14px 10px;

    }

}
/* ================================
   MOBILE HORIZONTAL SCROLL FIX
================================ */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}


.container-fluid {
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .premium-hero,
    .image-banner-section,
    .popular-services,
    section {
        max-width: 100%;
        overflow-x: hidden;
    }

    .premium-hero::before {
        display: none;
    }

    .hero-stats {
        width: 100%;
        max-width: 100%;
    }

    .hero-stat-box {
        min-width: 0;
        max-width: 100%;
    }

    .consultation-card {
        width: 100%;
        max-width: 100%;
    }

    .service-image img,
    .about-img img {
        max-width: 100%;
    }

}
/* 3 Logo Image Section */
.three-logo-section {
    width: 100%;
    background: #ffffff;
    overflow: hidden;
}

.three-logo-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.logo-call-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    overflow: hidden;
}

.logo-strip-image {
    width: 100%;
     padding: 10px;
    display: block;
    object-fit: cover;
     
}
    

/* Tablet */
@media (max-width: 991px) {
    .logo-strip-image {
        height: 125px;
    }
}

/* Mobile: each image full width */
@media (max-width: 767px) {
    .three-logo-section .row {
        display: block;
    }

    .three-logo-section .col-lg-4,
    .three-logo-section .col-md-4,
    .three-logo-section .col-sm-12 {
        width: 100%;
        max-width: 100%;
    }

    .logo-strip-image {
        width: 100%;
        height: auto;
        min-height: 100px;
        object-fit: contain;
    }
}
/* ===================================
   BLINK TEXT SECTION
=================================== */

.blink-text-section {
    background:#d6a84f;

    padding: 10px;

    overflow: hidden;

    border-top: 2px solid #d6a84f;
    border-bottom: 2px solid #d6a84f;
}

.blink-content {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 18px;

    flex-wrap: wrap;

    text-align: center;
}

.blink-icon {
    color: #ffd45c;

    font-size: 22px;

    animation: blinkIcon 1s infinite;
}

.blink-content h2 {
    margin: 0;

    color: #071c1b;

    font-size: 24px;

    font-weight: 700;
}

.blink-text {
    animation: blinkText 1.2s infinite;
}

.blink-call-btn {
    display: inline-block;

    padding: 10px 22px;

    background: #fff;

    color: #8b0000;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: 0.3s;
}

.blink-call-btn:hover {
    background: #d6a84f;

    color: #fff;
}


/* TEXT BLINK ANIMATION */

@keyframes blinkText {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.25;
    }

}


/* ICON BLINK */

@keyframes blinkIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

}


/* MOBILE */

@media (max-width: 767px) {

    .blink-text-section {
        padding: 18px 12px;
    }

    .blink-content {
        gap: 8px 12px;
    }

    .blink-content h2 {
        width: 100%;

        font-size: 17px;
    }

    .blink-icon {
        font-size: 18px;
    }

    .blink-call-btn {
        padding: 9px 18px;

        font-size: 13px;
    }

}
/* CERTIFICATE IMAGE SECTION */

.certificate-section {
    padding: 80px 0;
    background: #f8f5ec;
}

.certificate-image-box {
    width: 100%;
    background: #ffffff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.certificate-image-box img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}


/* MOBILE */

@media (max-width: 767px) {

    .certificate-section {
        padding: 50px 15px;
    }

    .certificate-image-box {
        padding: 7px;
    }

}