/* 
   Project: Astrologer Pt. Kundan Swami g (Bhrghuvanshi)
   Theme: Premium Light Mode (Reference Structure)
   Font: Cinzel (Headings), Poppins (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    /* Colors */
    --primary-bg: #FFFFFF;
    --secondary-bg: #FFF9F0;
    /* Soft Warm White for sections */
    --accent-gold: #D4AF37;
    --accent-gold-dark: #B4941F;
    --accent-orange: #FF5722;
    /* Stronger Call to Action Orange */
    --text-dark: #222222;
    --text-light: #555555;
    --text-white: #FFFFFF;
    --border-color: #E0E0E0;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Spacing */
    --container-width: 1200px;
    --header-height: 65px;

    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--primary-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    /* Ensure link underline is removed */
    cursor: pointer;
}

.logo i {
    font-size: 1.8rem;
    color: var(--accent-orange);
    flex-shrink: 0;
}

.logo-text h2 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--text-dark);
    text-transform: uppercase;
    /* User requested style */
    line-height: 1.1;
}

.logo-text span {
    display: block;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    color: var(--accent-gold-dark);
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
    height: 100%;
}

.nav-links li a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.nav-links li a:hover,
.nav-links li a.active,
.dropdown:hover>.dropdown-toggle {
    color: var(--accent-orange);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 10px 0;

    /* Stronger hiding mechanism */
    display: none;
    opacity: 0;
    visibility: hidden;

    transition: all 0.3s ease;
    border-top: 3px solid var(--accent-orange);
    flex-direction: column;
    gap: 0;
    z-index: 9999;
}

.dropdown:hover .dropdown-menu {
    display: flex;
    /* Show on hover */
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    text-transform: capitalize;
    white-space: nowrap;
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background: var(--secondary-bg);
    color: var(--accent-orange);
    padding-left: 25px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.menu-toggle i {
    transition: transform 0.3s ease;
}

.menu-toggle:active {
    transform: scale(0.95);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--accent-orange), #FF8A65);
    color: var(--text-white);
    font-weight: 600;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

/* Section Common */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: var(--accent-orange);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.section-title h2 {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
}

/* Page Hero (Service Pages) */
/* Page Hero (Service Pages) - Base Styles */
.page-hero {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: white;
    margin-bottom: 40px;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
}

/* Overlay to ensure text readability on all backgrounds */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 10, 30, 0.6);
    /* Dark overlay */
    z-index: 1;
}

.page-hero h1,
.page-hero p {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 3rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-hero p {
    color: #FFD700;
    /* Gold color for subtitle */
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

/* Individual Service Backgrounds */
.hero-vashikaran {
    background-image: url('../assets/Services/vashikaran_specialist.jpeg');
}

.hero-love {
    background-image: url('../assets/Services/love_problem_solution.jpeg');
}

.hero-marriage {
    background-image: url('../assets/Services/marriage_astrology.jpeg');
}

.hero-husband-wife {
    background-image: url('../assets/Services/husband_wife_dispute.jpeg');
}

.hero-divorce {
    background-image: url('../assets/Services/divorce_problem.jpeg');
}

.hero-family {
    background-image: url('../assets/Services/family_problem.jpeg');
}

.hero-business {
    background-image: url('../assets/Services/business_problem.jpeg');
}

.hero-childless {
    background-image: url('../assets/Services/childless_couple.jpeg');
}

.hero-enemy {
    background-image: url('../assets/Services/enemy_protection.jpeg');
}

.hero-health {
    background-image: url('../assets/Services/health_solution.jpeg');
}

/* General Hero (About, Contact, etc.) */
.general-hero {
    background: linear-gradient(rgba(5, 5, 10, 0.6), rgba(5, 5, 10, 0.6)), url('../assets/premium_hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    /* Increased padding */
    text-align: center;
    color: #FFFFFF;
    position: relative;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
    border-bottom: 3px solid var(--accent-gold);
}

.general-hero h1 {
    font-size: 3.5rem;
    /* Larger font */
    color: #FFFFFF;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9);
    margin-bottom: 15px;
    font-weight: 700;
}

.general-hero p {
    color: var(--accent-gold);
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Hero Section with Form (Home) */
.hero {
    /* Changed from white overlay to dark overlay to show the background */
    background: linear-gradient(rgba(10, 10, 25, 0.75), rgba(10, 10, 25, 0.6)), url('../assets/premium_hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 20px 0;
    min-height: auto;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: #FFFFFF;
    /* Deep Purple for contrast */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-text .highlight {
    color: var(--accent-gold);
}

.hero-text p {
    font-size: 1.15rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Enquiry Form Card */
.enquiry-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.enquiry-form-header h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.enquiry-form-header p {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
    display: block;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: #fcfcfc;
    transition: all 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-group {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    max-height: 150px;
    overflow-y: auto;
    background: #fdfdfd;
}

.checkbox-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.checkbox-item:last-child {
    margin-bottom: 0;
}

.checkbox-item input[type="checkbox"] {
    margin-right: 10px;
    width: 16px;
    height: 16px;
    accent-color: var(--accent-gold);
}

.checkbox-item label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.btn-gold {
    width: 100%;
    background: #cba335;
    background: linear-gradient(to right, #d4af37, #b4941f);
    color: white;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(180, 148, 31, 0.4);
    transition: transform 0.2s;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(180, 148, 31, 0.5);
}


/* Services Grid - Dense */
.service-dense-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    transition: var(--transition);
    border-radius: 8px;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-gold);
}

.service-item img {
    height: 180px;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

/* Content Sections */
.content-block {
    margin-bottom: 40px;
}

.content-block p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

/* Footer */
footer {
    background: #151515;
    color: #aaa;
    padding-top: 70px;
    font-size: 0.95rem;
}

.footer-widget h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--accent-orange);
}

.footer-links li a {
    display: block;
    margin-bottom: 12px;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.footer-links li a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 2rem;
        color: #000000 !important;
        cursor: pointer;
        z-index: 10001;
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        width: 100vw;
        height: calc(100vh - 65px);
        background-color: #FFFFFF !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        box-shadow: none;
        display: none;
        z-index: 10000;
        overflow-y: auto;
        gap: 0;
    }

    /* Mobile Dropdown Styling - Seamless Integration */
    .dropdown {
        display: block;
        width: 100%;
        height: auto;
        flex: none;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li a {
        display: block;
        padding: 18px 20px;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--text-dark);
        transition: all 0.3s ease;
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        background: var(--secondary-bg);
        color: var(--accent-orange);
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        display: block;
        padding: 0;
        background: #f9f9f9;
        min-width: 100%;
        margin: 0;
    }

    .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 18px 20px;
        text-align: center;
        font-size: 1rem;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--text-dark);
    }

    .dropdown-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown-menu li a {
        padding: 15px 20px;
        font-size: 0.95rem;
        font-weight: 500;
        text-transform: uppercase;
        color: var(--text-dark);
        display: block;
        background: transparent;
    }

    .dropdown-menu li a:hover {
        background: var(--secondary-bg);
        color: var(--accent-orange);
        padding-left: 20px;
    }

    .logo-text h2 {
        font-size: 0.9rem;
        /* Adjusted for mobile */
        line-height: 1.2;
    }

    .logo-text span {
        display: none;
        /* Hide tagline on mobile to save space */
    }

    .logo i {
        font-size: 1.6rem;
    }

    .nav-container {
        padding: 0 15px;
        position: relative;
        /* Ensure relative context */
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero {
        padding: 10px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text .btn {
        display: block;
        width: 100%;
        margin: 0 0 15px 0 !important;
        /* Force vertical spacing and remove inline left margin */
        text-align: center;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    /* Side Positioning */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
    color: white;
}

/* Navbar WhatsApp */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Space between Menu and WhatsApp */
}

.nav-whatsapp {
    color: #25d366;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-whatsapp:hover {
    transform: scale(1.1);
    color: #1ebe57;
}

@media (max-width: 768px) {
    .nav-controls {
        flex-direction: row;
        /* Ensure they are side by side */
    }
}

/* Awards Section Styling */
.award-item img {
    border: 8px solid #fff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    /* Soft shadow behind the frame */
    transition: transform 0.3s ease;
    background: #fff;
    /* Ensure background is white if image has transparency */
}

.award-item img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.award-item p {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--accent-gold-dark);
    margin-top: 20px;
    text-transform: uppercase;
    font-weight: 700;
    display: inline-block;
    border-bottom: 3px solid var(--accent-gold);
    padding-bottom: 5px;
    letter-spacing: 1px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.awards-grid .award-item img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    background-color: #f9f9f9;
}

/* Guru & Owner Frame Style */
.guru-frame {
    border: 3px solid var(--accent-gold);
    padding: 12px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;

    /* Fix for image size */
    max-height: 60vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto 20px auto;
    display: block;
    object-fit: contain;
}

.guru-frame:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Special class for owner image to fit design (No white border) */
.owner-feature-img {
    border: none;
    padding: 0;
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    width: 100%;
}

.owner-feature-img:hover {
    transform: translateY(-5px);
}

/* Testimonials / Review Section */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    display: none;
}

.review-card.visible {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.stars.negative {
    color: #ff4444;
}

/* ------------------------------------------------------------------- */
/* Premium Banner Slider Section */
/* ------------------------------------------------------------------- */

.banner-slider-section {
    padding: 20px 0 60px 0;
    margin-top: 20px;
    border-top: 5px solid var(--accent-gold);
    /* Only bottom padding */
    background: var(--primary-bg);
    position: relative;
}

.banner-slider-section .swiper {
    width: 100%;
    /* 16:9 Aspect Ratio approximation or fixed height */
    height: auto;
    /* Removed border and radius for full flush look */
    /* border-radius: 15px; */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    /* border: 3px solid #fff; */
    overflow: hidden;
}


/* Make slides look premium and uniform */
.banner-slider-section .swiper-slide {
    background: #fff;
    /* Clean background frame */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    /* Fixed unified height for specific alignment on PC */
    overflow: hidden;
}

.banner-slider-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    /* Fill the slide height */
    object-fit: contain;
    /* Ensure NO cropping ever */
    object-position: center;
    transition: transform 0.5s ease;
}

/* Slight zoom effect on active slide (optional) */
.banner-slider-section .swiper-slide-active img {
    transform: scale(1.02);
}

/* Navigation Arrows - Hidden as requested */
.banner-slider-section .swiper-button-next,
.banner-slider-section .swiper-button-prev {
    display: none !important;
}

/* Pagination Dots */
.banner-slider-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.6;
}

.banner-slider-section .swiper-pagination-bullet-active {
    background: var(--accent-orange);
    opacity: 1;
    width: 25px;
    /* Long pill shape for active */
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
/* Tablet adjustments */
@media (max-width: 992px) {
    .banner-slider-section .swiper-slide {
        height: 450px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .banner-slider-section .swiper-slide {
        height: 380px;
        /* Adjusted fixed height for mobile */
    }

    .banner-slider-section .swiper-button-next,
    .banner-slider-section .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .banner-slider-section .swiper-button-next:after,
    .banner-slider-section .swiper-button-prev:after {
        font-size: 0.9rem;
    }
}

.user-info {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-weight: bold;
    color: var(--accent-gold-dark);
}

/* Service Ticker Section */
/* Service Ticker Section */
.service-ticker-section {
    background: linear-gradient(135deg, var(--accent-orange), #FF8A65);
    overflow: hidden;
    padding: 18px 0;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
    border-bottom: none;
}

.mobile-ticker {
    display: none;
}

.desktop-ticker {
    display: block;
}

@media (max-width: 992px) {
    .mobile-ticker {
        display: block;
        margin: 20px 0;
        border-radius: 8px;
        /* Optional: for better look on mobile */
    }

    .desktop-ticker {
        display: none;
    }
}

.ticker-track {
    display: inline-block;
    animation: scroll-left 45s linear infinite;
}

.ticker-item {
    display: inline-block;
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 40px;
    letter-spacing: 1.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.ticker-item i {
    margin-right: 12px;
    color: #FFD700;
    font-size: 1.3rem;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.service-ticker-section:hover .ticker-track {
    animation-play-state: paused;
}

/* Custom adjustment for Money & Finance image to show bottom content */
.money-img-adjust {
    object-position: bottom center !important;
}

/* Sticky Bottom Consultation Button */
/* Sticky Bottom Consultation Button */
.sticky-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: #25d366;
    color: #fff;
    text-align: center;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 700;
    z-index: 9999;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 50px;
}

.sticky-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translate(-50%, -5px);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.sticky-whatsapp-btn i {
    font-size: 22px;
}

/* Adjust footer to ensure content is visible above the sticky button */
footer {
    padding-bottom: 120px;
}

/* Move existing floating icon up */
.whatsapp-float {
    bottom: 100px !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .sticky-whatsapp-btn {
        bottom: 0;
        left: 0;
        right: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        padding: 15px 0;
        font-size: 16px;
    }

    .sticky-whatsapp-btn:hover {
        transform: none;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .whatsapp-float {
        bottom: 80px !important;
    }

    footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 600px) {
    .sticky-whatsapp-btn {
        padding: 12px 0;
    }
}