* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #6b2c91;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 0.5rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.lang-toggle {
    background-color: #ffd700;
    color: #6b2c91;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background-color: #ffed4e;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.85) 0%, rgba(255, 215, 0, 0.85) 100%), url('assets/Avyakta Banner.jpeg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 4rem 0;
    text-align: center;
    min-height: 40vh;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: #ffd700;
    color: #6b2c91;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #6b2c91;
    color: #ffd700;
}


/* Hero Carousel */
.hero-with-carousel {
    position: relative;
    padding: 0;
    min-height: 40vh;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1) translate3d(0,0,0);
    will-change: transform;
}

.hero-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.6) 0%, rgba(255, 215, 0, 0.5) 100%);
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.active img {
    animation: kbZoom 6s ease-in-out forwards;
}

@keyframes kbZoom {
    0% { transform: scale(1) translate3d(0,0,0); }
    100% { transform: scale(1.08) translate3d(0,0,0); }
}

.hero-overlay {
    position: relative;
    z-index: 2;
    padding: 1.69rem 0;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    border: none;
    font-size: 2rem;
    line-height: 1;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
}

.carousel-btn:hover { background: rgba(0, 0, 0, 0.5); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }

@media (max-width: 768px) {
    .hero-overlay { padding: 4rem 1rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1.05rem; }
}

/* Carousel dots */
.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dots .dot:hover { background: rgba(255, 255, 255, 0.85); transform: scale(1.1); }
.carousel-dots .dot.active { background: #fff; transform: scale(1.25); box-shadow: 0 0 0 2px rgba(0,0,0,0.2) inset; }

.carousel-dots .dot:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff;
    transform: scale(1.25);
}
/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8e44ad 0%, #ffd700 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feature-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.feature-link:hover {
    text-decoration: none;
}

.feature-link h3 {
    color: #6b2c91;
    margin-bottom: 1rem;
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.content h2 {
    color: #6b2c91;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content h2:first-child {
    margin-top: 0;
}

.content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    padding: 1rem 0;
}

.values-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

/* Destinations Section */
.destinations {
    padding: 3rem 0;
}

.destinations .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.destination-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffd700;
    transition: all 0.3s ease;
}

.destination-card:hover {
    box-shadow: 0 5px 20px rgba(142, 68, 173, 0.3);
    transform: translateY(-5px);
}

.destination-card h3 {
    color: #6b2c91;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.destination-card p {
    margin-bottom: 1rem;
    color: #666;
}

.destination-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 0 1rem 0;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.destination-card ul {
    list-style: none;
    padding: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 5px 20px rgba(142, 68, 173, 0.3);
    transform: translateY(-5px);
}

.service-card h3 {
    color: #6b2c91;
    margin-bottom: 1rem;
}

.btn-link {
    color: #6b2c91;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #6b2c91;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8e44ad 0%, #ffd700 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.cta-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cta-section .btn {
    background-color: white;
    color: #6b2c91;
    font-weight: 600;
}

.cta-section .btn:hover {
    background-color: #f8f9fa;
}

/* Ad Section */
.ad-section {
    padding: 2rem 0;
    background-color: #f8f9fa;
    margin: 2rem 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.ad-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #25d366;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.destination-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.destination-card ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #ffd700;
}

.contact-card h3 {
    color: #6b2c91;
    margin-bottom: 0.75rem;
}

.contact-card p {
    margin-bottom: 0.6rem;
    color: #555;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #6b2c91;
    margin-bottom: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #dcdfe4;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.form-group select {
    padding: 0.8rem;
    border: 1px solid #dcdfe4;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background-color: white;
}

.form-group select:focus {
    border-color: #ffd700;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
}

.contact-form .btn {
    margin-top: 0.5rem;
    border: none;
    cursor: pointer;
}

/* Rashi Chakra Section - Circular 3D Wheel (50% size) */
.rashi-chakra-section {
    background: linear-gradient(135deg, #1a0a2e 0%, #3d2463 25%, #6b2c91 50%, #3d2463 75%, #1a0a2e 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.rashi-chakra-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 30% 70%, rgba(142, 68, 173, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 237, 78, 0.1) 0%, transparent 50%);
    animation: cosmicShift 25s ease-in-out infinite alternate;
}

@keyframes cosmicShift {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

.rashi-chakra-section h2 {
    text-align: center;
    color: #ffd700;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-shadow: 0 0 24px rgba(255, 215, 0, 1),
                 0 0 40px rgba(255, 237, 78, 0.6),
                 0 4px 16px rgba(0, 0, 0, 0.85);
    position: relative;
    z-index: 2;
    font-weight: bold;
    letter-spacing: 2px;
}

.chakra-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
    position: relative;
    z-index: 1;
}

.circle-chakra {
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(61, 36, 99, 0.9) 0%, rgba(107, 44, 145, 0.95) 60%, rgba(26, 10, 46, 0.95) 100%);
    border: 3px solid #ffd700;
    box-shadow:
        0 10px 30px rgba(255, 215, 0, 0.4),
        0 20px 50px rgba(0, 0, 0, 0.35),
        inset 0 0 25px rgba(255, 215, 0, 0.2);
    animation: wheelRotate 90s linear infinite;
}

.circle-chakra::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow:
        0 0 15px rgba(255, 215, 0, 0.6),
        inset 0 0 25px rgba(255, 215, 0, 0.15);
}

.circle-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 215, 0, 0.5);
    animation: ringPulse 4s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@keyframes wheelRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.circle-center {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 215, 0, 0.35) 0%, rgba(107, 44, 145, 0.4) 60%, rgba(61, 36, 99, 0.95) 100%);
    border: 2px solid #ffd700;
    box-shadow:
        0 0 25px rgba(255, 215, 0, 0.8),
        0 0 45px rgba(255, 215, 0, 0.5),
        inset 0 0 25px rgba(255, 215, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: centerPulse 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes centerPulse {
    0%, 100% {
        box-shadow:
            0 0 25px rgba(255, 215, 0, 0.8),
            0 0 45px rgba(255, 215, 0, 0.5),
            inset 0 0 25px rgba(255, 215, 0, 0.3);
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        box-shadow:
            0 0 35px rgba(255, 215, 0, 1),
            0 0 70px rgba(255, 237, 78, 0.7),
            inset 0 0 35px rgba(255, 215, 0, 0.5);
        transform: translate(-50%, -50%) scale(1.07);
    }
}

.circle-sign {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: rotate(calc(var(--i) * 30deg)) translateY(-115px) rotate(calc(var(--i) * -30deg));
    text-align: center;
}

.sign-symbol {
    font-size: 1.8rem;
    color: #ffd700;
    text-shadow: 0 0 18px rgba(255, 215, 0, 0.9),
                 0 0 30px rgba(212, 160, 23, 0.6);
    animation: symbolGlow 3s ease-in-out infinite;
}

.sign-name {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.7);
}

@keyframes symbolGlow {
    0%, 100% { filter: brightness(1); text-shadow: 0 0 18px rgba(255, 215, 0, 0.9), 0 0 30px rgba(255, 215, 0, 0.6); }
    50% { filter: brightness(1.25); text-shadow: 0 0 26px rgba(255, 215, 0, 1), 0 0 45px rgba(255, 237, 78, 0.8); }
}

.om-symbol {
    font-size: 2.2rem;
    color: #ffd700;
    text-shadow: 0 0 22px rgba(255, 215, 0, 1),
                 0 0 40px rgba(255, 215, 0, 0.7),
                 0 0 60px rgba(255, 237, 78, 0.5);
    animation: omGlow 3s ease-in-out infinite;
}

@keyframes omGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.center-text {
    font-size: 0.85rem;
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.9);
}

/* Responsive for Rashi Chakra */
@media (max-width: 768px) {
    .rashi-chakra-section { padding: 3rem 0; }
    .rashi-chakra-section h2 { font-size: 2rem; margin-bottom: 2.5rem; }
    .chakra-container { min-height: 360px; }
    .circle-chakra { width: 210px; height: 210px; }
    .circle-sign { transform: rotate(calc(var(--i) * 30deg)) translateY(-95px) rotate(calc(var(--i) * -30deg)); width: 60px; }
    .sign-symbol { font-size: 1.6rem; }
    .sign-name { font-size: 0.7rem; }
    .circle-center { width: 70px; height: 70px; }
    .om-symbol { font-size: 1.9rem; }
}

@media (max-width: 480px) {
    .rashi-chakra-section h2 { font-size: 1.6rem; margin-bottom: 2rem; }
    .chakra-container { min-height: 320px; }
    .circle-chakra { width: 190px; height: 190px; }
    .circle-sign { transform: rotate(calc(var(--i) * 30deg)) translateY(-85px) rotate(calc(var(--i) * -30deg)); width: 54px; }
    .sign-symbol { font-size: 1.4rem; }
    .sign-name { font-size: 0.65rem; }
    .circle-center { width: 60px; height: 60px; }
    .om-symbol { font-size: 1.7rem; }
    .center-text { font-size: 0.75rem; }
}

/* Footer */
footer {
    background-color: #6b2c91;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #6b2c91;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1rem;
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        background-color: rgba(255, 215, 0, 0.2);
        border-bottom: none;
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .destinations .container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .form-group {
        min-width: 100%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 1rem;
    }
    .nav-links a {
        font-size: 0.9rem;
    }
    .logo {
        font-size: 1.6rem;
    }
}
