/* =========================
   GLOBAL VARIABLES
========================= */

:root {
    --primary-color: #8d1b24;
    --secondary-color: #d29a35;
    --dark-color: #24100e;
    --light-bg: #fff8f1;
    --text-color: #444;
    --white: #ffffff;
}


/* =========================
   GLOBAL CSS
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Cinzel', serif;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 90px 0;
}


/* =========================
   TOP BAR
========================= */

.top-bar {
    background: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 17px;
}

.top-bar p {
    margin: 0;
}

.top-bar i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.top-bar a {
    color: var(--white);
}

.top-bar a:hover {
    color: var(--secondary-color);
}


/* =========================
   THREE LOGO HEADER
========================= */

.logo-header {
    background: #ffffff;
    padding: 18px 0;
    border-bottom: 1px solid #eeeeee;
}
 /* =========================
   THREE LOGO HEADER
========================= */

.three-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.header-logo {
    flex: 1;
    display: flex;
    align-items: center;
}

.left-logo {
    justify-content: flex-start;
}

.center-logo {
    justify-content: center;
}

.right-logo {
    justify-content: flex-end;
}

.header-logo img {
    
    width: 100%;
    height: auto;
    object-fit: contain;
}

.center-logo img {
    max-width: 100%;
}


/* =========================
   MOBILE LOGO LAYOUT
========================= */

@media (max-width: 767px) {

    .three-logo-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .header-logo {
        width: 100%;
        justify-content: center;
    }

    .header-logo img {
        max-width: 150px;
    }

    .center-logo img {
        max-width: 220px;
    }

}
/* =========================
   ACTION BAR
========================= */

.action-bar {
    background: var(--primary-color);
    padding: 12px 0;
    color: white;
}

.action-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.online-dot {
    height: 10px;
    width: 10px;
    background: #54d66a;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    border-radius: 5px;
    padding: 11px 22px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--secondary-color);
    color: white;
}

.call-btn:hover {
    background: white;
    color: var(--primary-color);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
}

.whatsapp-btn:hover {
    background: white;
    color: #128c7e;
}
.main-btn{
	background-color:#000;
	color:#fff;
}
/* =========================================
   PREMIUM HERO SECTION - COMPLETE CSS
========================================= */

.premium-hero-section {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #ffffff;
}


/* =========================================
   HERO BACKGROUND IMAGE
========================================= */

.hero-background-image {
    position: absolute;
    inset: 0;

    background-image: url('images/bg.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================
   HERO DARK OVERLAY
========================================= */

.premium-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(25, 5, 4, 0.95) 0%,
            rgba(55, 12, 8, 0.82) 42%,
            rgba(25, 5, 4, 0.58) 100%
        );

    z-index: 1;
}


/* =========================================
   HERO CONTAINER
========================================= */

.premium-hero-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    z-index: 3;
    padding: 75px 0;
}


/* =========================================
   HERO BADGE
========================================= */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 18px;

    border: 1px solid rgba(215, 166, 67, 0.75);

    border-radius: 30px;

    color: #e2ad45;

    font-size: 13px;

    letter-spacing: 1px;

    text-transform: uppercase;

    background: rgba(0, 0, 0, 0.12);
}


.hero-badge i {
    font-size: 13px;
}


/* =========================================
   HERO HEADING
========================================= */

.premium-hero-section h1 {
    font-family: 'Cinzel', serif;

    font-size: 62px;

    line-height: 1.2;

    font-weight: 700;

    margin: 25px 0 20px;

    color: #ffffff;
}


.premium-hero-section h1 span {
    color: #d6a33d;
}


/* =========================================
   HERO DESCRIPTION
========================================= */

.premium-hero-section p {
    max-width: 610px;

    font-size: 17px;

    line-height: 1.8;

    color: #eeeeee;

    margin-bottom: 0;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 30px;
}


.hero-call-btn {
    background: #d29a35;

    color: #ffffff;

    padding: 14px 28px;

    border-radius: 5px;

    font-weight: 600;

    border: 1px solid #d29a35;

    transition: all 0.3s ease;
}


.hero-call-btn:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #8d1b24;
}


.hero-whatsapp-btn {
    background: transparent;

    color: #ffffff;

    padding: 14px 28px;

    border-radius: 5px;

    font-weight: 600;

    border: 1px solid #ffffff;

    transition: all 0.3s ease;
}


.hero-whatsapp-btn:hover {
    background: #25d366;

    border-color: #25d366;

    color: #ffffff;
}


/* =========================================
   HERO TRUST POINTS
========================================= */

.hero-trust-points {
    display: flex;

    align-items: center;

    gap: 25px;

    margin-top: 28px;

    font-size: 13px;

    color: #dddddd;
}


.hero-trust-points span {
    display: flex;

    align-items: center;
}


.hero-trust-points i {
    color: #d29a35;

    margin-right: 7px;
}


/* =========================================
   ASTROLOGER IMAGE AREA
========================================= */

.hero-astrologer-image {
    position: relative;

    height: 560px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    z-index: 2;
}
 
/* =========================================
   ASTROLOGER IMAGE
========================================= */

.hero-astrologer-image > img {
    position: relative;

    z-index: 2;

    max-height: 530px;

    max-width: 100%;

    width: auto;

    height: auto;

    object-fit: contain;

    filter:
        drop-shadow(
            0 20px 30px rgba(0, 0, 0, 0.45)
        );
}


/* =========================================
   FLOATING INFORMATION CARD
========================================= */

.hero-floating-card {
    position: absolute;

    z-index: 4;

    right: 0;

    bottom: 75px;

    display: flex;

    align-items: center;

    gap: 12px;

    background: #ffffff;

    color: #3b1712;

    padding: 14px 18px;

    border-radius: 8px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3);
}


.hero-floating-card > i {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #8d1b24;

    color: #d8a33e;
}


.hero-floating-card strong,
.hero-floating-card small {
    display: block;
}


.hero-floating-card strong {
    font-size: 14px;
}


.hero-floating-card small {
    font-size: 11px;

    color: #777777;
}


/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .premium-hero-section {
        min-height: auto;
    }


    .hero-content {
        padding: 75px 0 30px;
    }


    .premium-hero-section h1 {
        font-size: 48px;
    }


    .premium-hero-section p {
        font-size: 16px;
    }


    .hero-astrologer-image {
        height: 480px;

        margin-top: 20px;
    }


    .hero-circle {
        width: 380px;

        height: 380px;
    }


    .hero-astrologer-image > img {
        max-height: 460px;
    }

}


/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .premium-hero-section {
        min-height: auto;

        background-position: center;
    }


    .hero-background-image {
        background-position: center center;
    }


    .premium-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(25, 5, 4, 0.92),
                rgba(55, 12, 8, 0.82)
            );
    }


    .hero-content {
        padding: 55px 0 20px;

        text-align: center;
    }


    .hero-badge {
        font-size: 10px;

        padding: 8px 14px;
    }


    .premium-hero-section h1 {
        font-size: 38px;

        line-height: 1.3;
    }


    .premium-hero-section p {
        font-size: 14px;

        line-height: 1.7;
    }


    .hero-buttons {
        flex-direction: column;

        align-items: center;

        gap: 12px;
    }


    .hero-buttons .btn {
        width: 100%;

        max-width: 280px;
    }


    .hero-trust-points {
        flex-direction: column;

        gap: 8px;

        align-items: center;

        font-size: 12px;
    }


    .hero-astrologer-image {
        height: 400px;

        margin-top: 20px;
    }


    .hero-circle {
        width: 290px;

        height: 290px;

        bottom: 25px;
    }


    .hero-astrologer-image > img {
        max-height: 390px;

        max-width: 100%;
    }


    .hero-floating-card {
        right: 5px;

        bottom: 30px;

        padding: 10px 12px;
    }


    .hero-floating-card > i {
        width: 35px;

        height: 35px;

        font-size: 14px;
    }


    .hero-floating-card strong {
        font-size: 12px;
    }


    .hero-floating-card small {
        font-size: 10px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .premium-hero-section h1 {
        font-size: 32px;
    }


    .hero-badge {
        font-size: 9px;

        letter-spacing: 0.5px;
    }


    .hero-astrologer-image {
        height: 350px;
    }


    .hero-circle {
        width: 250px;

        height: 250px;
    }


    .hero-astrologer-image > img {
        max-height: 340px;
    }


    .hero-floating-card {
        right: 0;

        bottom: 20px;
    }

} 


/* =========================
   TRUST SECTION
========================= */

.trust-section {
    background: #8d1b24;
    padding: 45px 0;
}

.trust-box {
    padding: 15px;
	background-color:#fff;
}

.trust-box i {
    font-size: 35px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-box h5 {
    font-size: 17px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.trust-box p {
    font-size: 13px;
    margin: 0;
	color:#000;
}


/* =========================
   SECTION HEADING
========================= */

.section-subtitle {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2,
.about-section h2 {
    font-size: 40px;
    color: var(--dark-color);
    margin-top: 12px;
}

.section-heading h2 span,
.about-section h2 span {
    color: var(--primary-color);
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    background: white;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    
    object-fit: cover;
    border-radius: 10px;
}
 

.about-section p {
    line-height: 1.8;
	color:#000;
}

.about-points {
    margin-top: 25px;
}

.about-points div {
    margin-bottom: 12px;
    font-weight: 500;
	color: #000;
}

.about-points i {
    color: var(--primary-color);
    margin-right: 10px;
}


/* =========================
   SERVICES
========================= */

.services-section {
    background:#d29a35;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-top: -52px;
    position: relative;
    margin-bottom: 18px;
    border: 4px solid white;
}

.service-content h3 {
    font-size: 21px;
    color: #8d1b24;
    font-weight: bold;
}

.service-content p {
    font-size: 14px;
    line-height: 1.7;
	color:#000;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
}

.service-link i {
    margin-left: 5px;
}


/* =========================
   CTA
========================= */

.cta-section {
    background:
        linear-gradient(
            rgba(65, 8, 10, 0.92),
            rgba(65, 8, 10, 0.92)
        ),
        url('images/bg.png');

    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin: 15px 0;
}

.cta-content h2 span {
    color: var(--secondary-color);
}

.cta-content p {
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}


/* =========================
   WHY CHOOSE US
========================= */

.why-section {
    background: white;
}

.why-card {
    padding: 35px 20px;
    text-align: center;
    border: 1px solid #eeeeee;
    height: 100%;
    transition: all 0.3s ease;
	background-color:#8d1b24;
}

.why-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.why-card i {
    font-size: 40px;
    color: #d29a35;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    color: #fff;
}

.why-card p {
    font-size: 14px;
    line-height: 1.7;
	color:#fff;
}


/* =========================
   TESTIMONIAL
========================= */

.testimonial-section {
    background: #d29a35;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-card p {
    line-height: 1.8;
    font-style: italic;
}

.testimonial-card h5 {
    font-size: 15px;
    color: var(--primary-color);
}


/* =========================
   FAQ
========================= */

.faq-section {
    background: white;
}

.accordion-item {
    margin-bottom: 12px;
    border: 1px solid #eeeeee;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background: var(--light-bg);
    color: var(--primary-color);
    box-shadow: none;
}


/* =========================
   FOOTER
========================= */

.footer-section {
    background: var(--dark-color);
    color: white;
    padding: 70px 0 25px;
}

.footer-section h3 {
    color: white;
}

.footer-section h3 span {
    color: var(--secondary-color);
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-section p {
    color: #dddddd;
    line-height: 1.8;
}

.footer-section a {
    color: #dddddd;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.footer-social a:hover {
    background: var(--secondary-color);
    color: white;
}

.footer-section hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 35px 0 20px;
}

.copyright {
    color: #bbbbbb;
    font-size: 13px;
}


/* =========================
   FLOATING BUTTONS
========================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-buttons a {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.floating-call {
    background: var(--primary-color);
}

.floating-whatsapp {
    background: #25d366;
}


/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 991px) {

    .hero-section h1 {
        font-size: 48px;
    }

    .section-heading h2,
    .about-section h2 {
        font-size: 34px;
    }

    .header-logo img {
        max-width: 145px;
    }

    .center-logo img {
        max-width: 210px;
    }

}


@media (max-width: 767px) {

    .top-bar {
        text-align: center;
    }

    .top-bar .text-md-end {
        text-align: center !important;
        margin-top: 5px;
    }

    .three-logo-wrapper {
        gap: 8px;
    }

    .header-logo img {
        max-width: 90px;
    }

    .center-logo img {
        max-width: 145px;
    }

    .action-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-section {
        min-height: 600px;
    }

    .min-vh-75 {
        min-height: 600px;
    }

    .hero-section h1 {
        font-size: 40px;
    }

    .hero-section p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .section-padding {
        padding: 65px 0;
    }

    .section-heading h2,
    .about-section h2 {
        font-size: 30px;
    }


    .cta-content h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

}


@media (max-width: 480px) {

    .header-logo img {
        max-width: 100%;
    }

    .center-logo img {
        max-width: 100%;
    }

    .hero-section h1 {
        font-size: 34px;
    }

    .hero-small-title {
        font-size: 12px;
    }

    .trust-box h5 {
        font-size: 14px;
    }

    .trust-box p {
        font-size: 11px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 12px;
    }

    .floating-buttons a {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

}
/* =========================
   ASTROLOGY SERVICES
========================= */

.astrology-services-section {
    background: #ffffff;
    position: relative;
}


/* Service Item */

.astrology-service-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 22px;
    background: #fff8f1;
    border: 1px solid #ead7bd;
    border-radius: 100px 15px 15px 100px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}


/* Decorative Border */

.astrology-service-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: var(--secondary-color);
    transition: all 0.4s ease;
}


/* Hover */

.astrology-service-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(80, 25, 10, 0.12);
    border-color: var(--secondary-color);
}

.astrology-service-item:hover::before {
    width: 100%;
    opacity: 0.04;
}


/* Round Image */

.astrology-service-image {
    width: 135px;
    height: 135px;
    min-width: 135px;
    border-radius: 50%;
    padding: 6px;
    border: 2px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    background: #ffffff;
}


.astrology-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}


.astrology-service-item:hover
.astrology-service-image img {
    transform: scale(1.1);
}


/* Content */

.astrology-service-content {
    position: relative;
    z-index: 1;
}


.astrology-service-content h3 {
    font-size: 20px;
    color: #8d1b24;
    margin-bottom: 8px;
}


.astrology-service-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}


.astrology-service-btn {
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
}


.astrology-service-btn i {
    margin-left: 5px;
    transition: margin 0.3s ease;
}


.astrology-service-btn:hover {
    color: var(--secondary-color);
}


.astrology-service-btn:hover i {
    margin-left: 10px;
}
@media (max-width: 767px) {

    .astrology-service-item {
        gap: 15px;
        padding: 15px;
        border-radius: 80px 12px 12px 80px;
    }

    .astrology-service-image {
        width: 105px;
        height: 105px;
        min-width: 105px;
        padding: 5px;
    }

    .astrology-service-content h3 {
        font-size: 17px;
    }

    .astrology-service-content p {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .astrology-service-btn {
        font-size: 12px;
    }

}
/* =========================
   IMAGE BANNER SECTION
========================= */

.image-banner-section {
    width: 100%;
    overflow: hidden;
}

.image-banner-section img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
@media (max-width: 767px) {

    .image-banner-section img {
        width: 100%;
        height: auto;
        min-height: 180px;
        object-fit: cover;
    }

}
/* =========================================
   HINDI CTR SECTION
========================================= */

.ctr-section {
    padding: 70px 0;

    background:
        linear-gradient(
            135deg,
            #fff8ed,
            #f7ead7
        );
}


.ctr-box {
    position: relative;

    overflow: hidden;

    padding: 55px 40px;

    text-align: center;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #4b0f0b,
            #741c16
        );

    box-shadow:
        0 15px 40px rgba(80, 20, 10, 0.20);
}


/* Decorative Circle */

.ctr-box::before {
    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    border-radius: 50%;

    top: -150px;

    right: -80px;

    border: 1px solid rgba(218, 169, 65, 0.3);
}


.ctr-box::after {
    content: "";

    position: absolute;

    width: 250px;

    height: 250px;

    border-radius: 50%;

    bottom: -150px;

    left: -70px;

    border: 1px solid rgba(218, 169, 65, 0.3);
}


.ctr-content {
    position: relative;

    z-index: 2;
}


.ctr-small-title {
    display: inline-block;

    margin-bottom: 15px;

    color: #e4b653;

    font-size: 15px;

    font-weight: 600;
}


.ctr-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 36px;

    line-height: 1.4;
}


.ctr-content h2 span {
    color: #e2ad45;
}


.ctr-content p {
    max-width: 780px;

    margin: 0 auto;

    color: #f5e8d6;

    font-size: 16px;

    line-height: 1.8;
}


/* Buttons */

.ctr-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;

    margin-top: 30px;
}


.ctr-call-btn,
.ctr-whatsapp-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 14px 25px;

    border-radius: 5px;

    font-weight: 600;

    transition: all 0.3s ease;
}


.ctr-call-btn {
    background: #d6a33d;

    color: #ffffff;
}


.ctr-call-btn:hover {
    background: #ffffff;

    color: #741c16;
}


.ctr-whatsapp-btn {
    background: #25d366;

    color: #ffffff;
}


.ctr-whatsapp-btn:hover {
    background: #ffffff;

    color: #188b42;
}


/* Contact Number */

.ctr-contact {
    margin-top: 25px;

    color: #e4b653;

    font-size: 20px;

    font-weight: 700;
}


.ctr-contact i {
    margin-right: 7px;
}
/* =========================================
   MOBILE WIDTH & SIDE SPACE FIX
========================================= */

@media (max-width: 767px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /*
       Bootstrap row ko forcefully width 100%
       nahi karna hai.
       Bootstrap ki original gutter spacing preserve rahegi.
    */

    .row {
        max-width: none;
    }

    [class*="col-"] {
        min-width: 0;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .premium-hero-section,
    .astrology-services-section,
    .image-banner-section,
    .ctr-section {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .astrology-service-item {
        max-width: 100%;
        min-width: 0;
    }

    .astrology-service-content {
        min-width: 0;
        flex: 1 1 auto;
    }

}