@import url('https://fonts.googleapis.com/css2?family=Marcellus&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary: #7a0000;
    --secondary: #ffb703;
    --dark: #120505;
    --black: #070202;
    --light: #fff8e7;
    --white: #ffffff;
    --text: #555555;
    --gradient: linear-gradient(135deg, #7a0000, #bd3b00, #ffb703);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--light);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

.section-padding {
    padding: 50px 0;
}
/* Promo Top Header */
.promo-top-header {
    background: linear-gradient(90deg, #120505, #7a0000, #120505);
    padding: 10px 0;
    color: #fff;
    border-bottom: 2px solid #ffb703;
}

.promo-header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.promo-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
}

.promo-left i {
    color: #ffb703;
    font-size: 20px;
}

.blink-text {
     
    color: var(--secondary);
    letter-spacing: 0.3px;
}
 

.promo-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-right a {
    color: #fff;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.promo-call {
    background: linear-gradient(135deg, #ffb703, #ff7b00);
    color: #120505 !important;
}

.promo-whatsapp {
    background: #25d366;
}

.promo-right a:hover {
    transform: translateY(-2px);
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 767px) {
    .promo-header-wrap {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .promo-left {
        justify-content: center;
        font-size: 14px;
        line-height: 1.5;
    }

    .promo-right {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .promo-right a {
        font-size: 14px;
        padding: 8px 13px;
    }
}

@media (max-width: 420px) {
    .promo-right {
        flex-direction: column;
    }

    .promo-right a {
        width: 100%;
        justify-content: center;
    }
}
/* Top Logo Section */
.top-logo-section {
    background: #fff;
    padding: 5px;
   
}

.top-logo-box img {
    width: 100%;
   
    object-fit: contain;
    padding: 12px;
}
 

/* Navbar */
.custom-navbar {
    background:var(--primary);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.navbar-brand {
    color: var(--white) !important;
    font-family: 'Marcellus', serif;
    font-size: 26px;
    font-weight: 700;
}

.navbar-brand span {
    color: var(--secondary);
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 8px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-call-btn {
    background: var(--gradient);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 183, 3, 0.25);
}

.nav-call-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.navbar-toggler {
    border: none;
    color: #fff;
    font-size: 25px;
    box-shadow: none !important;
}

/* Hero */
.hero-section {
    position: relative;
    background:linear-gradient(#7a000052, #0e0400), url(images/bg0.png) center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.min-vh-hero {
    min-height: 720px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 183, 3, 0.15);
    border: 1px solid rgba(255, 183, 3, 0.45);
    color: var(--secondary);
    padding: 9px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-weight: 600;
}

.hero-content h1 {
    font-family: 'Marcellus', serif;
    font-size: 68px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 680px;
    color: #f5e7d1;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 35px;
}

.btn-main,
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-main {
    background: var(--gradient);
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-main:hover,
.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-4px);
}

.hero-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 45px;
}

.hero-info div {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    min-width: 145px;
}

.hero-info strong {
    display: block;
    color: var(--secondary);
    font-size: 30px;
}

.hero-info span {
    color: #fff;
    font-size: 14px;
}

.hero-card {
    background: rgba(255, 248, 231, 0.95);
    color: var(--dark);
    padding: 42px;
    border-radius: 35px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
    border: 5px solid rgba(255, 183, 3, 0.4);
}

.hero-card-icon {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 25px;
}

.hero-card h3 {
    font-family: 'Marcellus', serif;
    font-size: 34px;
	font-weight: bold;
    color: var(--primary);
}

.hero-card p {
    color: #000;
    line-height: 1.8;
}

.hero-card a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 13px 24px;
    border-radius: 50px;
    margin-top: 10px;
    font-weight: 700;
}

 

/* Marquee */
.marquee-section {
    background: var(--primary);
    color: var(--secondary);
    padding: 12px 0;
    font-size: 18px;
    font-weight: 700;
}

/* Section Title */
.section-title {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 55px;
}

.section-title span {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-family: 'Marcellus', serif;
    color: #7a0000;
    font-size: 46px;
    font-weight: 800;
    margin: 12px 0;
}

.section-title p {
    font-size: 17px;
	    color: #000;
    line-height: 1.7;
}

.light-title span,
.light-title h2,
.light-title p {
    color: #fff;
}

.light-title span {
    color: var(--secondary);
}

/* About */
.about-section {
    background:
        radial-gradient(circle at top left, rgba(255,183,3,0.22), transparent 35%),
        #fff8e7;
}

.about-image-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    
}

.about-image-wrap img {
    width: 100%;
    
    object-fit: cover;
}

 
.about-content {
    background: #fff;
    border-radius: 35px;
    padding: 45px;
    box-shadow: 0 20px 55px rgba(122, 0, 0, 0.12);
    border-left: 7px solid var(--primary);
}

.small-title {
    color: var(--primary);
    font-weight: 800;
}

.about-content h3 {
    font-family: 'Marcellus', serif;
    font-size: 40px;
	font-weight: bold;
    color: var(--dark);
    margin: 12px 0 20px;
}

.about-content p {
    line-height: 1.85;
	    color: #000;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 28px;
}

.about-points div {
    background: #fff5d9;
    padding: 15px;
    border-radius: 15px;
    color: var(--dark);
    font-weight: 600;
}

.about-points i {
    color: var(--primary);
    margin-right: 8px;
}

/* Services */
.services-section {
    background:
        linear-gradient(rgba(18,5,5,0.96), rgba(18,5,5,0.96)),
        radial-gradient(circle at center, #7a0000, #120505);
    position: relative;
}

.service-card {
    background: linear-gradient(145deg, #fff8e7, #fff);
    padding: 18px;
    border-radius: 28px;
     
    position: relative;
    overflow: hidden;
    transition: 0.35s;
    border: 1px solid rgba(255, 183, 3, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
	text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-12px);
}

.service-card:hover::before {
    width: 220px;
    height: 220px;
    opacity: 0.25;
}
 
.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 24px;
}

.service-card h4 {
    color: var(--primary);
    font-family: 'Marcellus', serif;
    font-size: 27px;
    font-weight: 800;
	    text-align: center;
}

.service-card p {
    line-height: 1.75;
    margin: 5px 0;
	text-align: center;
    color: #000;
}

.service-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    text-align: center;
    background: linear-gradient(135deg, #7a0000, #ff7b00);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 700;
}

.service-card a:hover {
    color: #fff;
    transform: translateY(-2px);
}
.service-img {
    width: 100%;
    
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    border: 4px solid #ffb703;
   
}

.service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(122, 0, 0, 0.45));
    z-index: 1;
}

.service-img img {
    width: 100%;
    
    object-fit: cover;
    transition: 0.45s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}
@media (max-width: 767px) {
    .service-img {
        height: 190px;
    }
}

@media (max-width: 420px) {
    .service-img {
        height: 175px;
    }
}
/* CTA */
.cta-section {
    background: #fff;
    padding: 50px 0;
}

.cta-box {
    background: var(--gradient);
    color: #fff;
    border-radius: 35px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    box-shadow: 0 22px 55px rgba(122, 0, 0, 0.22);
}

.cta-box span {
    font-weight: 700;
    color: #fff3bf;
}

.cta-box h2 {
    font-family: 'Marcellus', serif;
    font-size: 40px;
    margin: 8px 0 0;
}

.cta-box a {
    background: #fff;
    color: var(--primary);
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 800;
    white-space: nowrap;
}

/* Why Choose */
.why-section {
    background: #fff8e7;
}

.why-card {
	    color: #000;
    background: #fff;
    padding: 35px 25px;
    border-radius: 28px;
    text-align: center;
    min-height: 270px;
    transition: 0.3s;
    box-shadow: 0 15px 40px rgba(122, 0, 0, 0.12);
}

.why-card:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-10px);
}

.why-card i {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: #fff1c8;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 22px;
}

.why-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 26px;
    color: var(--primary);
}

.why-card:hover h4,
.why-card:hover p {
    color: #fff;
}

/* Process */
.process-section {
    background:linear-gradient(#7a0000e3, rgba(18, 5, 5, 0.94)), url(images/bg0.png) center / cover fixed;
}

.process-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 183, 3, 0.3);
    border-radius: 28px;
    padding: 35px;
    color: #fff;
    min-height: 260px;
    transition: 0.3s;
}

.process-card:hover {
    background: rgba(255, 183, 3, 0.12);
    transform: translateY(-8px);
}

.process-card span {
    color: var(--secondary);
    font-size: 45px;
    font-weight: 800;
}

.process-card h4 {
    font-family: 'Marcellus', serif;
    font-size: 30px;
    margin: 12px 0;
	color:#ffb703;
}

.process-card p {
    color: #fff;
    line-height: 1.7;
}

/* Testimonials */
.testimonial-section {
    background: #fff;
}

.testimonial-card {
    background: #fff8e7;
    border-radius: 28px;
    padding: 32px;
    min-height: 260px;
    box-shadow: 0 18px 45px rgba(122, 0, 0, 0.12);
    border-bottom: 5px solid var(--primary);
}

.featured-testimonial {
    background: var(--primary);
    color: #fff;
}

.stars {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 18px;
}

.testimonial-card p {
    line-height: 1.8;
}

.testimonial-card h5 {
    color: var(--primary);
    font-weight: 800;
    margin-top: 20px;
}

.featured-testimonial h5 {
    color: var(--secondary);
}

/* Contact */
.contact-section {
    background:
        radial-gradient(circle at top right, rgba(122,0,0,0.15), transparent 35%),
        #fff8e7;
}

.contact-info-box {
    background: var(--dark);
    color: #fff;
    border-radius: 35px;
    padding: 42px;
    height: 100%;
}

.contact-info-box span {
    color: var(--secondary);
    font-weight: 800;
}

.contact-info-box h2 {
    font-family: 'Marcellus', serif;
    font-size: 40px;
    margin: 12px 0 20px;
}

.contact-info-box p {
    color: #f2dfc1;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-top: 24px;
    align-items: center;
}

.contact-item i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.contact-item h5 {
    margin-bottom: 4px;
    color: #fff;
}

.contact-item a,
.contact-item p {
    color: var(--secondary);
    margin: 0;
    font-weight: 700;
}

.contact-form {
    background: #fff;
    border-radius: 35px;
    padding: 42px;
    box-shadow: 0 20px 55px rgba(122, 0, 0, 0.14);
}

.contact-form h3 {
    font-family: 'Marcellus', serif;
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ead8b5;
    background: #fffaf0;
    padding: 15px 18px;
    border-radius: 14px;
    outline: none;
    color: var(--dark);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.contact-form button {
    border: none;
    background: #25d366;
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    font-weight: 800;
    width: 100%;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, rgba(18, 5, 5, 0.96), rgba(122, 0, 0, 0.96)),
        url("images/bg0.png") center/cover no-repeat;
    color: #fff;
    padding: 75px 0 20px;
}

.footer-box h4 {
    font-family: 'Marcellus', serif;
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 26px;
}

.footer-box p {
    color: #fff;
    line-height: 1.8;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #fff;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-call {
    color: #fff;
    background: var(--gradient);
    padding: 12px 22px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 800;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 45px;
    padding-top: 18px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #fff;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 18px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons a {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.28);
}

.float-call {
    background: var(--primary);
}

.float-whatsapp {
    background: #25d366;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark);
        padding: 18px;
        margin-top: 15px;
        border-radius: 18px;
    }

    .nav-call-btn {
        display: inline-block;
        margin-top: 12px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .min-vh-hero {
        min-height: auto;
        padding: 90px 0;
    }

    .hero-card {
        margin-top: 45px;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
    }

    .about-image-wrap img {
        height: 430px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 65px 0;
    }

    .top-logo-box {
       
        border-radius: 14px;
    }

    .top-logo-box img {
        padding: 6px;
    }

    .main-logo-box {
        transform: scale(1);
    }

    .navbar-brand {
        font-size: 21px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-main,
    .btn-whatsapp {
        justify-content: center;
        width: 100%;
    }

    .hero-info {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-card {
        padding: 30px;
        border-radius: 25px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .about-content {
        padding: 30px;
    }

    .about-content h3 {
        font-size: 32px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .about-image-wrap img {
        height: 330px;
    }

    .cta-box {
        padding: 30px 22px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-box a {
        white-space: normal;
        text-align: center;
    }

    .contact-info-box,
    .contact-form {
        padding: 30px;
        border-radius: 25px;
    }

    .contact-info-box h2,
    .contact-form h3 {
        font-size: 31px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 18px;
    }

    .floating-buttons a {
        width: 52px;
        height: 52px;
        font-size: 21px;
    }
}

@media (max-width: 420px) {
    

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .service-card {
        padding: 28px 22px;
    }
}
/* Quick Astrology Services */
.quick-services-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}
 
 
.quick-services-left {
    position: relative;
    z-index: 2;
    background: linear-gradient(145deg, #120505, #7a0000);
    padding: 42px;
    border-radius: 35px;
    color: #fff;
    box-shadow: 0 25px 60px rgba(122, 0, 0, 0.25);
    border: 4px solid rgba(255, 183, 3, 0.35);
}

.quick-subtitle {
    display: inline-block;
    color: #120505;
    background: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 18px;
}

.quick-services-left h2 {
    font-family: 'Marcellus', serif;
    font-size: 44px;
    line-height: 1.15;
	color:#ffb703;
    margin-bottom: 18px;
}

.quick-services-left p {
    color: #fff;
    line-height: 1.8;
    margin-bottom: 28px;
}

.quick-call-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.11);
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 183, 3, 0.35);
    margin-bottom: 25px;
}

.quick-call-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffb703, #ff7b00);
    color: #120505;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.quick-call-box span {
    display: block;
    color: #fff;
    font-weight: 600;
    margin-bottom: 4px;
}

.quick-call-box a {
    color: #ffb703;
    font-size: 23px;
    font-weight: 800;
}

.quick-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25d366;
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}

.quick-main-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.quick-services-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.quick-service-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 24px;
    box-shadow: 0 15px 38px rgba(122, 0, 0, 0.11);
    border-left: 6px solid #7a0000;
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.quick-service-item::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 115px;
    height: 115px;
    background: rgba(255, 183, 3, 0.2);
    border-radius: 50%;
    transition: 0.35s ease;
}

.quick-service-item:hover {
    transform: translateX(10px);
    border-left-color: #ffb703;
}

.quick-service-item:hover::before {
    width: 150px;
    height: 150px;
}

.quick-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7a0000, #ff7b00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.quick-service-item h4 {
    font-family: 'Marcellus', serif;
    color: #7a0000;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 8px;
}

.quick-service-item p {
    margin: 0;
    line-height: 1.7;
    color: #5c4a3a;
}

/* Quick Services Responsive */
@media (max-width: 991px) {
    .quick-services-left {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .quick-services-section {
        padding: 65px 0;
    }

    .quick-services-left {
        padding: 30px;
        border-radius: 28px;
        text-align: center;
    }

    .quick-services-left h2 {
        font-size: 34px;
    }

    .quick-call-box {
        flex-direction: column;
        text-align: center;
    }

    .quick-call-box a {
        font-size: 20px;
    }

    .quick-main-btn {
        width: 100%;
    }

    .quick-service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        border-left: none;
        border-top: 6px solid #7a0000;
    }

    .quick-service-item:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 420px) {
    .quick-services-left h2 {
        font-size: 30px;
    }

    .quick-service-item {
        padding: 22px 18px;
    }

    .quick-service-item h4 {
        font-size: 22px;
    }
}
/* Featured 4 Services Section */
.featured-services-section {
    padding: 90px 0;
    background:linear-gradient(#7a0000e3, rgba(18, 5, 5, 0.94)), url(images/bg0.png) center / cover fixed;
    position: relative;
    overflow: hidden;
}
.featured-services-section span {
   color:#fff;
}
.featured-services-section h2 {
   color:#ffb703;
}
.featured-services-section p {
   color:#fff;
}
.featured-services-section::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 280px;
    height: 280px;
    background: rgba(122, 0, 0, 0.09);
    border-radius: 50%;
}

.featured-services-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 300px;
    height: 300px;
    background: rgba(255, 183, 3, 0.18);
    border-radius: 50%;
}

.featured-service-card {
    position: relative;
    z-index: 2;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 18px 45px rgba(122, 0, 0, 0.13);
    border: 1px solid rgba(122, 0, 0, 0.08);
    transition: 0.35s ease;
}

.featured-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(122, 0, 0, 0.2);
}

.featured-service-img {
    width: 100%;
    height: 230px;
    overflow: hidden;
    position: relative;
}

.featured-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(122, 0, 0, 0.55));
}

.featured-service-img img {
    width: 100%;
     
    object-fit: cover;
    transition: 0.45s ease;
}

.featured-service-card:hover .featured-service-img img {
    transform: scale(1.08);
}

.featured-service-content {
    padding: 26px 22px 30px;
    text-align: center;
}

.featured-service-content h4 {
    font-family: 'Marcellus', serif;
    color: #7a0000;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 14px;
}

.featured-service-content p {
    color: #000;
    line-height: 1.7;
    margin-bottom: 22px;
    font-size: 15px;
}

.featured-service-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #7a0000, #ff7b00);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(122, 0, 0, 0.2);
    transition: 0.3s ease;
}

.featured-service-content a:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .featured-service-img {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .featured-services-section {
        padding: 65px 0;
    }

    .featured-service-img {
        height: 240px;
    }

    .featured-service-content h4 {
        font-size: 24px;
    }
}

@media (max-width: 420px) {
    .featured-service-img {
        height: 220px;
    }

    .featured-service-content {
        padding: 24px 18px 28px;
    }
}
/* Unique CTR Section */
.unique-ctr-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 183, 3, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(122, 0, 0, 0.18), transparent 35%),
        #fff8e7;
    overflow: hidden;
}

.unique-ctr-box {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(18, 5, 5, 0.96), rgba(122, 0, 0, 0.96)),
        url("images/bg0.png") center/cover no-repeat;
    border-radius: 42px;
    padding: 55px;
    color: #fff;
    box-shadow: 0 30px 80px rgba(122, 0, 0, 0.28);
    border: 5px solid rgba(255, 183, 3, 0.45);
}

.unique-ctr-box::before {
    content: "ॐ";
    position: absolute;
    right: 35px;
    top: -35px;
    font-size: 160px;
    line-height: 1;
    font-family: serif;
    color: rgba(255, 183, 3, 0.09);
    font-weight: 800;
}

.unique-ctr-box::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(255, 183, 3, 0.35);
    border-radius: 50%;
}

.ctr-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.ctr-glow-one {
    width: 170px;
    height: 170px;
    background: rgba(255, 183, 3, 0.16);
    left: 45%;
    top: -80px;
}

.ctr-glow-two {
    width: 120px;
    height: 120px;
    background: rgba(255, 123, 0, 0.18);
    right: 120px;
    bottom: -45px;
}

.unique-ctr-content,
.unique-ctr-action {
    position: relative;
    z-index: 2;
}

.ctr-small-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 183, 3, 0.15);
    border: 1px solid rgba(255, 183, 3, 0.45);
    color: #ffb703;
    padding: 9px 18px;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 18px;
}

.unique-ctr-content h2 {
    font-family: 'Marcellus', serif;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 800;
    margin-bottom: 18px;
}

.unique-ctr-content p {
    color: #f7e3c2;
    font-size: 17px;
    line-height: 1.8;
    max-width: 760px;
    margin-bottom: 25px;
}

.ctr-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ctr-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 15px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ctr-points i {
    color: #ffb703;
}

.unique-ctr-action {
    background: rgba(255, 248, 231, 0.96);
    color: #120505;
    border-radius: 32px;
    padding: 35px 26px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.ctr-phone-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, #7a0000, #ff7b00);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    animation: ctrPulse 1.6s infinite;
}

@keyframes ctrPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(255, 123, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 123, 0, 0);
    }
}

.unique-ctr-action span {
    display: block;
    color: #7a0000;
    font-weight: 800;
    margin-bottom: 8px;
}

.ctr-phone-number {
    display: block;
    color: #120505;
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 20px;
}

.ctr-phone-number:hover {
    color: #7a0000;
}

.ctr-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    width: 100%;
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 800;
}

.ctr-whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
    .unique-ctr-box {
        padding: 42px 32px;
    }

    .unique-ctr-content {
        text-align: center;
    }

    .unique-ctr-content h2 {
        font-size: 40px;
    }

    .unique-ctr-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .ctr-points {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .unique-ctr-section {
        padding: 65px 0;
    }

    .unique-ctr-box {
        border-radius: 30px;
        padding: 35px 22px;
    }

    .unique-ctr-content h2 {
        font-size: 32px;
    }

    .unique-ctr-content p {
        font-size: 16px;
    }

    .ctr-points span {
        width: 100%;
        justify-content: center;
    }

    .ctr-phone-number {
        font-size: 23px;
    }
}