/* Global Styles */
:root {
    --primary-color: #e5903e;
    --secondary-color: #8a5a44;
    --accent-color: #f8c537;
    --light-color: #f9f7f7;
    --dark-color: #2b2d42;
    --text-color: #333;
    --bg-color: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    
    color: var(--primary-color);
    
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--dark-color);
}

.btn-accent:hover {
    background-color: #e6b22e;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 1rem auto;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-color);
}
/* Logo Styles - Different from regular images */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 80px; /* Fixed height for logo */
    width: 165%; /* Maintain aspect ratio */
    max-width: 180px; /* Maximum width */
    transition: all 0.3s ease;
    object-fit: contain; /* Ensures logo doesn't stretch */
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.dropdown {
        position: relative;
    }
    
    .dropdown-menu {
        display: none;
        position: absolute;
        background-color: #fff;
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        z-index: 100;
        top: 100%;
        left: 0;
        border-radius: 4px;
        padding: 5px 0;
    }
    
    .dropdown-menu li {
        padding: 8px 15px;
    }
    
    .dropdown-menu li:hover {
        background-color: #f5f5f5;
    }
    
    .dropdown-menu a {
        color: #333;
        text-decoration: none;
        display: block;
    }
    
    /* Show dropdown on hover */
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    /* Make the dropdown work on mobile */
    @media (max-width: 768px) {
        .dropdown-menu {
            position: static;
            box-shadow: none;
            display: none;
        }
        
        .nav-links.active .dropdown.active .dropdown-menu {
            display: block;
        }
    }
    
/* Hero Section Adjustments */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh; /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Adjust based on your menu bar height */
    box-sizing: border-box;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: #fff; /* Adjust text color as needed */
}

.hero-content h1 {
    margin-top: 0;
    padding-top: 20px;
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Better readability */
}

.hero-btns {
    margin: 2rem 0;
}

/* Moving image container styles */
.image-container {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    margin: 20px auto 0;
    max-width: 800px;
    white-space: nowrap;
}

.moving-image {
    display: inline-block;
    height: 100%;
    width: auto;
    animation: moveRight 15s linear infinite;
}

@keyframes moveRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Adjusted for multiple images */
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
        padding-top: 40px; /* Extra space on smaller screens */
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 90vh;
        padding-top: 70px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .image-container {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 85vh;
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        padding-top: 30px;
    }
    
    .image-container {
        height: 40px;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

/* Logo hover effects */
.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(106, 76, 147, 0.3));
}

/* Differentiate from other images */
img:not(.logo-img) {
    border-radius: 8px; /* Regular images get rounded corners */
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 50px;
        max-width: 130px;
    }
}
/* Star Background Animation */
@keyframes twinkle {
    0% { opacity: 0.2; }
    50% { opacity: 1; }
    100% { opacity: 0.2; }
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.star {
    position: absolute;
    background-color: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4b6cb7 0%, #182848 100%);
    z-index: 0;
}
.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
}

/* Services Container */
.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

/* Service Card */
.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .services-container {
        gap: 20px;
    }
    
    .service-card {
        flex: 1 1 100%;
        min-width: auto;
    }
    
    .service-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
}
.two-column-container {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-block {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-block h3 {
    color: #3a2c6e;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.content-block p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .column {
        gap: 15px;
    }
    
    .content-block {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .content-block {
        padding: 15px;
    }
    
    .content-block h3 {
        font-size: 1.1rem;
    }
    
    .content-block p {
        font-size: 0.9rem;
    }
}
/* Zodiac Signs Section */
/* Zodiac Gallery Styles */
.zodiac-gallery {
    margin: 2rem 0;
}

.gallery-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.zodiac-image {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.zodiac-image:hover {
    transform: translateY(-10px) scale(1.03);
}

.zodiac-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.zodiac-image:hover .zodiac-overlay {
    transform: translateY(0);
}

.zodiac-overlay h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.zodiac-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.zodiac-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.zodiac-nav-btn {
    padding: 0.5rem 1rem;
    background: var(--light-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.zodiac-nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

.zodiac-nav-btn.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-row {
        flex-wrap: wrap;
    }
    
    .zodiac-image {
        width: calc(50% - 1rem);
        height: auto;
        aspect-ratio: 1/1;
    }
}

@media (max-width: 576px) {
    .zodiac-image {
        width: 100%;
    }
    
    .zodiac-nav {
        flex-wrap: wrap;
    }
}
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.zodiac-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 1.5rem;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.zodiac-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

/* Horoscope Section */
.horoscope-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.sign-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.sign-option {
    text-align: center;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sign-option:hover, .sign-option.active {
    background-color: var(--primary-color);
    color: white;
}

.sign-option img {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
}

.horoscope-result {
    display: none;
    animation: fadeIn 0.5s ease;
}

.horoscope-result.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Infographic Section */
.infographic {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.infographic img {
    display: block;
    width: 100%;
    height: auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}
/* Contact Buttons Styles */
.contact-btn {
    position: fixed;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    color: white;
    z-index: 999;
    gap: 8px;
}

.whatsapp-btn {
    left: 30px;
    background-color: #25D366;
}

.call-btn {
    right: 30px;
    background-color: #007bff;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-text {
    font-family: Arial, sans-serif;
    font-weight: bold;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-btn {
        bottom: 20px;
        padding: 10px 15px;
        font-size: 14px;
    }
    
    .whatsapp-btn {
        left: 15px;
    }
    
    .call-btn {
        right: 15px;
    }
    
    /* Hide text on very small screens */
    @media (max-width: 480px) {
        .btn-text {
            display: none;
        }
        
        .contact-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            padding: 0;
        }
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.3rem; }

    .hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: right 0.5s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 0rem;
    }

    .section {
        padding: 3rem 0;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .zodiac-grid {
        grid-template-columns: 1fr;
    }

    .sign-selector {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Container for the moving image */
.image-container {
  position: relative;
  width: 100%;
  height: 100px; /* Adjust based on your image height */
  overflow: hidden;
  margin: 20px 0;
}


/* Hero Section Styles */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    text-align: center;
    padding: 2rem 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-btns {
    margin: 0rem 0;
}

.image-container {
  position: relative;
  width: 100%;
  height: 60px; /* Adjust based on your image height */
  overflow: hidden;
  margin: 20px 0;
  white-space: nowrap; /* Prevent wrapping */
}

.moving-image {
  display: inline-block;
  height: 100%;
  width: auto;
  animation: slideLeftToRight 15s linear infinite;
}

/* Create seamless infinite animation */
@keyframes slideLeftToRight {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Optional: Add multiple copies of the image for smoother transition */
.image-container::before,
.image-container::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: auto;
  background-image: url('image/astrology.png');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .image-container {
    height: 50px;
  }
}

@media (max-width: 480px) {
  .image-container {
    height: 40px;
  }
}   

/* Button styles (if needed) */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #4a90e2;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #3a7bc8;
    transform: translateY(-2px);
}