/* Astrology Website Custom Styles */

:root {
    --primary-color: #d97706;
    --secondary-color: #f59e0b;
    --dark-color: #1a1a2e;
    --light-color: #f5f5f5;
    --white: #ffffff;
    --text-dark: #333333;
    --gold-dark: #b8860b;
    --gold-light: #daa520;
    --orange-dark: #d97706;
    --orange-light: #f59e0b;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
}

/* Global Heading Styles */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.milestone-title,
.expertise-title,
.expertise-card-title,
.service-category-title {
    font-family: 'Poppins', sans-serif !important;
}

/* Navbar Styles - Light Gray/White */
.navbar {
    background-color: #f8f9fa !important;
    box-shadow: none;
    transition: all 0.3s ease;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.navbar-brand img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    padding: 0.6rem 1.2rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.1rem;
    border-radius: 6px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-dark) !important;
    background-color: rgba(184, 134, 11, 0.08);
}

.navbar-nav .nav-link.active {
    color: var(--gold-dark) !important;
    background-color: rgba(184, 134, 11, 0.1);
}

/* Animated underline effect */
/* .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
    transition: transform 0.3s ease;
} */

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Free Kundali Button */
.nav-item .btn-free-kundali {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 0.6rem 1.8rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(217, 119, 6, 0.3);
}

.nav-item .btn-free-kundali:hover {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

/* Hamburger Menu - Modern Design */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(184, 134, 11, 0.25);
}

.navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4);
}

/* Custom Hamburger Icon */
.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 25px;
    height: 20px;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Animated Hamburger to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu - Side Drawer (Left to Right) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #fef3c7 100%);
        padding: 2rem 0;
        box-shadow: 2px 0 30px rgba(0,0,0,0.15);
        z-index: 1050;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        left: 0;
        display: block;
    }
    
    .navbar-collapse.collapsing {
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    /* Mobile Menu Close Button */
    .navbar-collapse::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--gold-dark);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(184, 134, 11, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .navbar-collapse::before:hover {
        background: var(--gold-dark);
        color: white;
        transform: rotate(90deg);
    }
    
    .navbar-nav {
        padding: 3rem 1.5rem 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.2rem !important;
        margin: 0.3rem 0;
        border-left: 4px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        font-size: 1.05rem;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        border-left-color: var(--gold-dark);
        background: linear-gradient(90deg, rgba(184, 134, 11, 0.15), rgba(184, 134, 11, 0.05));
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 0.8rem;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::after {
        opacity: 1;
    }
    
    /* Mobile Dropdown Menu Styles */
    .navbar-nav .dropdown-menu {
        position: static;
        float: none;
        border: none;
        box-shadow: none;
        background: rgba(217, 119, 6, 0.05);
        margin: 0.5rem 0 0.5rem 1.5rem;
        padding: 0.5rem 0;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .dropdown-menu.show {
        max-height: 500px;
        opacity: 1;
        display: block !important;
    }
    
    .navbar-nav .dropdown-item {
        padding: 0.6rem 1rem;
        font-size: 0.95rem;
        color: var(--text-dark);
        border-left: 2px solid transparent;
        transition: all 0.2s ease;
    }
    
    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background: rgba(217, 119, 6, 0.1);
        color: var(--primary-color);
        border-left-color: var(--primary-color);
        padding-left: 1.2rem;
    }
    
    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        transition: transform 0.3s ease;
    }
    
    .navbar-nav .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .nav-item .btn-free-kundali {
        margin-top: 1rem;
        width: 90%;
        margin-left: 1.2rem;
        padding: 0.8rem 2rem !important;
        border-radius: 12px;
    }
}

/* Mobile Overlay Background */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .mobile-overlay {
        display: none;
    }
}

/* Navbar Styles */
.navbar {
    background-color: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.navbar-brand img {
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

/* Desktop Navigation */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    padding: 0.8rem 1.5rem !important;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 0.2rem;
    border-radius: 8px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: rgba(217, 119, 6, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(217, 119, 6, 0.1);
}

/* Animated underline effect */
/* .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: transform 0.3s ease;
} */

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu Styles */
.navbar-nav .dropdown-menu {
    background: white;
    border: 1px solid rgba(217, 119, 6, 0.2);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
}

.navbar-nav .dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar-nav .dropdown-item:hover {
    background: linear-gradient(90deg, rgba(217, 119, 6, 0.1), rgba(217, 119, 6, 0.05));
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 1.8rem;
}

.navbar-nav .dropdown-item:active {
    background-color: rgba(217, 119, 6, 0.15);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Login Button Styling */
.nav-item .btn-outline-primary {
    border: 2px solid var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.6rem 2rem !important;
}

.nav-item .btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.3);
}

/* Hamburger Menu - Modern 3 Line Design */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    position: relative;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(217, 119, 6, 0.25);
}

.navbar-toggler:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(217, 119, 6, 0.4);
}

/* Custom Hamburger Icon */
.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 30px;
    height: 24px;
    display: inline-block;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon span {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Animated Hamburger to X */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
    opacity: 0;
    transform: translateX(-20px);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu - Side Drawer (Left to Right) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
        padding: 2rem 0;
        box-shadow: 2px 0 30px rgba(0,0,0,0.15);
        z-index: 1050;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
    }
    
    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        left: 0;
        display: block;
    }
    
    .navbar-collapse.collapsing {
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    /* Mobile Menu Close Button */
    .navbar-collapse::before {
        content: '\f00d';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 1.5rem;
        color: var(--primary-color);
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(217, 119, 6, 0.1);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .navbar-collapse::before:hover {
        background: var(--primary-color);
        color: white;
        transform: rotate(90deg);
    }
    
    /* Mobile Menu Overlay */
    .navbar-collapse.show ~ .mobile-overlay {
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        padding: 3rem 1.5rem 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 1rem 1.2rem !important;
        margin: 0.3rem 0;
        border-left: 4px solid transparent;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        font-size: 1.05rem;
    }
    
    .navbar-nav .nav-link::before {
        display: none;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        border-left-color: var(--primary-color);
        background: linear-gradient(90deg, rgba(217, 119, 6, 0.15), rgba(217, 119, 6, 0.05));
        transform: translateX(5px);
    }
    
    .navbar-nav .nav-link::after {
        content: '\f054';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        margin-left: auto;
        font-size: 0.8rem;
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .navbar-nav .nav-link:hover::after {
        opacity: 1;
    }
    
    .nav-item .btn-outline-primary {
        margin-top: 1rem;
        width: 90%;
        margin-left: 1.2rem;
        padding: 0.8rem 2rem !important;
        border-radius: 12px;
    }
}

/* Mobile Overlay Background */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

@media (min-width: 992px) {
    .mobile-overlay {
        display: none;
    }
}

/* Hero Section - With Background Slider */
.hero-section {
    min-height: 75vh;
    display: flex;
    align-items: center;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3rem;
}

/* Background Slider Styles */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.7) 0%, rgba(218, 165, 32, 0.6) 50%, rgba(217, 119, 6, 0.7) 100%);
    z-index: 2;
}

/* Decorative elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3));
    z-index: 3;
}

/* Make sure content is above slider */
.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #1a1a1a;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.3);
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #2c2c2c;
    font-weight: 600;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #333;
    font-weight: 400;
    line-height: 1.6;
}

/* Hero Stats/Features */
.hero-features {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #2c2c2c;
    font-weight: 500;
}

.hero-feature-item i {
    color: #1a5f1a;
    font-size: 1.1rem;
}

.hero-feature-item .star-icon {
    color: #fbbf24;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-hero-primary {
    background: #2c2c2c;
    color: white;
    border: 2px solid #2c2c2c;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-hero-primary:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn-hero-secondary {
    background: white;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-hero-secondary:hover {
    background: #2c2c2c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero-light {
    background: rgba(255, 255, 255, 0.9);
    color: #2c2c2c;
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-hero-light:hover {
    background: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

/* Hero Bottom Stats */
.hero-bottom-stats {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.hero-stat i {
    font-size: 1.3rem;
}

.hero-stat-text {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-section {
        min-height: 65vh;
        padding: 3rem 0 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-light {
        width: 100%;
        text-align: center;
    }
    
    .hero-bottom-stats {
        gap: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Buttons */
.btn-custom {
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color);
    border-radius: 2px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.2);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

/* Feature Box */
.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.feature-box:hover {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
}

.feature-box:hover .feature-icon {
    color: white;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

/* Testimonial Cards */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin: 1rem;
    border: 1px solid rgba(217, 119, 6, 0.1);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.15);
    transform: translateY(-5px);
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
    color: white;
    padding: 4rem 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.03" d="M0,160L48,144C96,128,192,96,288,106.7C384,117,480,171,576,181.3C672,192,768,160,864,138.7C960,117,1056,107,1152,117.3C1248,128,1344,160,1392,176L1440,192L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-size: cover;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    padding: 4rem 0;
    color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 3rem 0;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section Spacing */
section {
    padding: 4rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* Footer Styles */
footer {
    background-color: #1a1a2e !important;
}

footer .social-links a {
    display: inline-block;
    transition: all 0.3s ease;
}

footer .social-links a:hover {
    transform: translateY(-3px);
    color: var(--secondary-color) !important;
}

/* Zodiac Signs Section */
.zodiac-card {
    background: white;
    padding: 1.2rem 0.8rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.zodiac-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #f59e0b;
}

.zodiac-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 50%;
    padding: 0.5rem;
}

.zodiac-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zodiac-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 1rem;
}

.zodiac-dates {
    color: #666;
    font-size: 0.85rem;
}

/* Milestones Section */
.milestones-section {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #ea580c 100%);
    position: relative;
    overflow: hidden;
}

.milestones-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.milestone-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.milestone-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.milestone-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.milestone-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.milestone-label {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

/* Expertise Section */
.expertise-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.expertise-card {
    background: white;
    border: 2px solid #f59e0b;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
    border-color: #d97706;
}

.expertise-card-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.expertise-card-text {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Expertise Image Cards */
.expertise-image-card {
    height: 100%;
}

.expertise-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.expertise-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.expertise-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1.5rem;
    color: white;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.expertise-overlay h6 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.expertise-overlay p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.9;
}

.expertise-image-wrapper:hover img {
    transform: scale(1.1);
}

.expertise-image-wrapper:hover .expertise-overlay {
    background: linear-gradient(to top, rgba(245, 158, 11, 0.95), transparent);
}

@media (max-width: 768px) {
    .zodiac-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .zodiac-name {
        font-size: 0.9rem;
    }
    
    .zodiac-dates {
        font-size: 0.75rem;
    }
    
    .milestone-title,
    .expertise-title {
        font-size: 1.8rem;
    }
    
    .milestone-number {
        font-size: 1.5rem;
    }
    
    .expertise-image-wrapper {
        height: 220px;
    }
}

/* Astrology Services Section */
.service-category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    height: 100%;
}

.service-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.25);
}

.service-category-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.service-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-category-card:hover .service-category-img img {
    transform: scale(1.1);
}

.service-category-title {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.95rem;
    margin: 0;
    background: linear-gradient(to bottom, white, #fef3c7);
}

.service-category-card:hover .service-category-title {
    background: linear-gradient(to bottom, #fef3c7, #fde68a);
    color: #d97706;
}

@media (max-width: 768px) {
    .service-category-img {
        height: 150px;
    }
    
    .service-category-title {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
}


/* Make navigation more compact */
        .navbar-nav .nav-link {
            padding: 0.4rem 0.7rem !important;
            font-size: 0.875rem !important;
            margin: 0 0.05rem !important;
        }
        
        .navbar-nav .nav-link i {
            font-size: 0.75rem !important;
        }
        
        .dropdown-menu {
            font-size: 0.85rem !important;
            min-width: 11rem !important;
        }
        
        .dropdown-item {
            padding: 0.4rem 1rem !important;
            font-size: 0.85rem !important;
        }
        
        .dropdown-item i {
            font-size: 0.75rem !important;
            width: 18px !important;
        }
        
        .navbar {
            padding: 0.4rem 0 !important;
        }
        
        .navbar-brand img {
            height: 40px !important;
        }
        
        /* Compact dropdown dividers */
        .dropdown-divider {
            margin: 0.3rem 0 !important;
        }
        
        /* Reduce navbar collapse spacing on mobile */
        @media (max-width: 991.98px) {
            .navbar-nav .nav-link {
                padding: 0.5rem 1rem !important;
                font-size: 0.9rem !important;
            }
        }
/* Floating CTA Buttons */
.floating-cta-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 60px;
}

.floating-btn i {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.floating-btn .btn-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    margin-left: 0;
    transition: all 0.3s ease;
    opacity: 0;
}

.floating-btn:hover .btn-text {
    max-width: 150px;
    margin-left: 10px;
    opacity: 1;
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-btn-kundali {
    background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

.floating-btn-kundali:hover {
    background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
    transform: translateY(-2px);
    color: white;
}

.floating-btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.floating-btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851 0%, #0e6b5e 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .floating-cta-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .floating-btn {
        padding: 12px 16px;
        font-size: 14px;
        min-width: 50px;
    }
    
    .floating-btn i {
        font-size: 20px;
    }
    
    .floating-btn .btn-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .floating-cta-buttons {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-btn {
        padding: 10px 14px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
}

/* OTP Modal Styles */
.otp-input {
    width: 50px;
    height: 50px;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.25);
    outline: none;
}

#otpModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

#otpModal .modal-header {
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

#otpModal .modal-footer {
    border-top: 2px solid #f0f0f0;
}

/* ========================================
   BOOK PUJA SECTION - ATTRACTIVE CTA
======================================== */
.book-puja-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #fcd34d 100%);
    position: relative;
}

.puja-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

/* Content Styles */
.puja-content {
    padding: 2rem 0;
}

.puja-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.puja-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, #d97706, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.puja-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
}

/* Features Grid */
.puja-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.puja-feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.puja-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-text h6 {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* CTA Buttons */
.puja-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-puja-primary {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: white !important;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-puja-primary:hover {
    background: linear-gradient(135deg, #b45309, #d97706);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.4);
}

.btn-puja-outline {
    background: white;
    color: #d97706 !important;
    border: 3px solid #d97706;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-puja-outline:hover {
    background: #d97706;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.3);
}

/* Trust Badges */
.puja-trust-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
}

.trust-badge i {
    font-size: 1.2rem;
}

/* Visual Container */
.puja-visual-container {
    position: relative;
    padding: 2rem;
}

.puja-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.puja-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Floating Cards */
.puja-floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    z-index: 10;
}

.puja-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.puja-card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.puja-card-3 {
    bottom: 10%;
    left: -5%;
    animation-delay: 2s;
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.puja-floating-card h6 {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* Decorative Circles */
.puja-deco-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
}

.puja-deco-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    top: 5%;
    right: 5%;
    animation: rotate 20s linear infinite;
}

.puja-deco-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #d97706, #f59e0b);
    bottom: 10%;
    left: 10%;
    animation: rotate 15s linear infinite reverse;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .puja-title {
        font-size: 2.2rem;
    }
    
    .puja-features {
        grid-template-columns: 1fr;
    }
    
    .puja-floating-card {
        position: static;
        margin: 1rem 0;
        animation: none;
    }
    
    .puja-visual-container {
        padding: 1rem;
    }
    
    .puja-deco-circle {
        display: none;
    }
}

@media (max-width: 767px) {
    .puja-title {
        font-size: 1.8rem;
    }
    
    .puja-description {
        font-size: 1rem;
    }
    
    .puja-cta-buttons {
        flex-direction: column;
    }
    
    .btn-puja-primary,
    .btn-puja-outline {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    .puja-trust-badges {
        gap: 1rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
    }
    
    .puja-features {
        gap: 1rem;
    }
    
    .puja-feature-item {
        padding: 0.8rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
