/* =========================================
    1. GLOBAL RESET & BASE STYLES
    ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* =========================================
    2. HEADER STYLES
    ========================================= */
.vedic-header {
    display: flex;
    height: 100px;
    width: 100%;
    overflow: hidden;
    background-color: #fcc442;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo-container {
    position: relative;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding-left: 40px;
    padding-right: 60px;
    z-index: 10;
}

.logo-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 20;
    text-align: center;
}

.logo-img {
    height: 50px;
    margin-bottom: 5px;
}

/* Slanted Divider */
.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: -25px;
    width: 50px;
    height: 100%;
    background-color: #333;
    transform: skewX(-20deg);
    z-index: 15;
    border-left: 15px solid #fff;
}

.nav-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    color: #000;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: #333;
    text-decoration: underline;
}

.search-bar {
    background-color: #fcf4e8;
    border: 1px solid #000;
    border-radius: 50px;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    width: 250px;
    height: 45px;
}

.search-icon {
    color: #333;
    margin-right: 10px;
    font-size: 1.1rem;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #333;
    width: 100%;
}

.search-bar input::placeholder {
    color: #555;
    opacity: 0.8;
}

/* =========================================
    3. HERO SECTION STYLES
    ========================================= */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 10%;
    /*background-color: #000;*/
    background-image: url(images/img.png);
    background-size: cover;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ddd;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-primary:hover {
    background: #f39c12;
    color: #fff;
    border-color: #f39c12;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #f39c12;
    border-color: #f39c12;
    color: #fff;
}

.hero-img {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-img img {
    width: 400px;
    height: 500px;
    border-radius: 50%;
    animation: rotate 6s linear infinite;
    opacity: 0.3;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* =========================================
    4. ABOUT SECTION STYLES
    ========================================= */
.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 10%;
    gap: 80px;
    background-color: #fff;
    color: #333;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    color: #000;
    font-family: 'Playfair Display', serif;
}

.about-content h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #e74c3c;
    margin-top: 10px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Roboto Slab', serif;
    color: #555;
    margin-bottom: 25px;
}

.btn-orange {
    background: #f39c12;
    color: #fff;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: 'Tienne', serif;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #d35400;
}

.contact-box {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #c0392b;
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    width: fit-content;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
}

.contact-box img {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    padding: 8px;
    object-fit: contain;
}

.about-image {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* =========================================
    5. ZODIAC WHEEL SECTION
    ========================================= */
.zodiac-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
    color: #000;
    border-top: 1px solid #ddd;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.zodiac-header h2 {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
}

.zodiac-header h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #e74c3c;
    margin: 15px auto 0;
}

.zodiac-header p {
    max-width: 700px;
    margin: 0 auto 60px;
    font-family: 'Roboto Slab', serif;
    color: #666;
    line-height: 1.6;
}

.zodiac-wheel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 700px;
    margin: 0 auto;
}

.center-bg-gif {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 650px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.9;
}

.zodiac-card {
    --zodiac-bg: #fff2cc;
    --zodiac-hover: #f89c1c;
    --icon-bg: #f89c1c;
    --icon-border: #d98200;

    position: absolute;
    background: var(--zodiac-bg);
    padding: 10px 25px 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 2;
    width: 160px;
    box-sizing: border-box;
}

.zodiac-card .icon-box {
    background: var(--icon-bg);
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    width: 35px;
    height: 35px;
}

.zodiac-card .icon-box svg,
.zodiac-card .icon-box img {
    width: 100%;
    height: auto;
    display: block;
    fill: #fff;
}

.zodiac-card .zodiac-title {
    font-size: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    margin: 0;
    color: #000;
    transition: color 0.3s ease-in-out;
}

.zodiac-card:hover, .zodiac-card.is-active {
    background: var(--zodiac-hover);
    transform: scale(1.1);
}

.zodiac-card:hover .zodiac-title, .zodiac-card.is-active .zodiac-title {
    color: #fff;
}

/* Zodiac Positions */
.pos-aries { top: 5%; left: 50%; transform: translateX(-50%); }
.pos-taurus { top: 18%; left: 22%; }
.pos-gemini { top: 38%; left: 10%; }
.pos-cancer { top: 58%; left: 10%; }
.pos-leo { bottom: 18%; left: 22%; }
.pos-virgo { bottom: 5%; left: 38%; }
.pos-pisces { bottom: 5%; right: 38%; }
.pos-libra { top: 18%; right: 22%; }
.pos-scorpio { top: 38%; right: 10%; }
.pos-sagittarius { top: 58%; right: 10%; }
.pos-capricorn { bottom: 25%; right: 15%; }
.pos-aquarius { bottom: 15%; right: 26%; }

/* =========================================
    6. SECTION 2 & JOURNEY
    ========================================= */
.section2 {
    display: flex;
    overflow: hidden;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
}

.section2 img {
    max-width: 100%;
    height: auto;
}

.astro-journey-container {
    background-color: #f6f6ff;
    padding: 80px 10%;
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    position: relative;
}

.astro-header {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 80px;
    color: #1a1a1a;
    line-height: 1.3;
}

.astro-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 200px;
}

.col-side { flex: 1; padding: 0 40px; }
.col-center {
    flex: 0 0 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.line-connector {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #333;
    z-index: 0;
}

.astro-row:first-of-type .line-connector { top: 50%; }
.astro-row:last-of-type .line-connector { bottom: 50%; }

.astro-title { font-size: 1.8rem; font-weight: normal; margin: 0; line-height: 1.3; color: #000; }
.astro-desc { font-family: 'Roboto Slab', serif; font-size: 1rem; color: #666; line-height: 1.6; margin: 0; }

.text-right { text-align: right; }
.text-left { text-align: left; }

.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #e6e6ee;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.icon-highlighted {
    background-color: #f6f6ff;
    border: 4px solid #1a1a50;
}

.astro-icon-svg { width: 45px; height: 45px; fill: #c5a870; }

/* =========================================
    7. TESTIMONIALS
    ========================================= */
.testimonial-container-main {
    padding: 50px 0;
    background-color: #fff;
    
    border-bottom: 1px solid #9c9c9c;
}

.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 40px auto;
    max-width: 1100px;
}

.astro-header-small h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.astro-header-small h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: #f39c12;
    margin: 10px auto 0;
}

.astro-header-small p {
    color: #444;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: center;
}

.testimonial-images {
    display: grid;
    grid-template-columns: repeat(3, 90px);
    grid-auto-rows: 90px;
    column-gap: 10px;
    row-gap: 0px;
    justify-items: center;
    align-items: center;
}

/* Hexagon Grid Logic */
.testimonial-images .img-wrapper:nth-child(1) { grid-column: 1; grid-row: 1; }
.testimonial-images .img-wrapper:nth-child(2) { grid-column: 3; grid-row: 1; }
.testimonial-images .img-wrapper:nth-child(3) { grid-column: 2; grid-row: 2; }
.testimonial-images .img-wrapper:nth-child(4) { grid-column: 1; grid-row: 3; }
.testimonial-images .img-wrapper:nth-child(5) { grid-column: 3; grid-row: 3; }
.testimonial-images .img-wrapper:nth-child(6) { grid-column: 2; grid-row: 4; }

.testimonial-images img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 7px solid #b5b5b5;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-images img:hover, .testimonial-images img.active {
    border-color: orange;
}

.testimonial-divider {
    width: 2px;
    background: #bbb;
    min-height: 280px;
}

.testimonial-box {
    background: orange;
    color: white;
    padding: 25px;
    border-radius: 15px;
    max-width: 500px;
}

.testimonial { display: none; }
.testimonial.active { display: block; }
.testimonial strong { display: block; margin-top: 10px; font-weight: bold; }
.testimonial span { color: #fdd49c; }

/* =========================================
    8. ZODIAC CALCULATOR FORM
    ========================================= */
.zodiac-form-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    border-width: 1px;
    padding: 50px 20px;
    align-content: center;
    justify-content: flex-end;

}

.zodiac-form-box {
    background-color: #faf9f4;
    border: 3px solid #000;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    max-width: 900px;
    flex-wrap: wrap;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group {
    flex: 1;
    text-align: left;
    min-width: 200px;
}

.input-group label {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 15px;
    color: #000;
}

.input-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
    background-color: #fff;
    color: #666;
    outline: none;
}

.btn-result {
    background-color: #ff7f00;
    color: #fff;
    font-size: 1.2rem;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    transition: background 0.3s;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
}

.btn-result:hover { background-color: #e06b00; }

#result-display {
    margin-top: 30px;
    padding: 20px;
    display: none;
    border: 1px dashed #ccc;
    background: #faf9f4;
}

/* =========================================
   RESULT TABLE STYLES
   ========================================= */
.planet-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.planet-table th, 
.planet-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    font-family: 'Roboto', sans-serif;
}

.planet-table th {
    background-color: #f39c12; /* Theme Orange */
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.planet-table tr:hover {
    background-color: #f9f9f9;
}

.result-location {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 500;
}


/* =========================================
    9. RESPONSIVE QUERIES
    ========================================= */
@media (max-width: 1024px) {
    .vedic-header { height: auto; flex-direction: column; padding-bottom: 10px; }
    .logo-container { width: 100%; justify-content: center; padding: 10px; clip-path: none; }
    .logo-container::after { display: none; }
    .nav-container { flex-direction: column; gap: 15px; padding: 20px; width: 100%; }
    nav { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 900px) {
    .hero, .about-section, .astro-journey-container, .zodiac-section { padding: 60px 5%; }
    .hero { flex-direction: column; text-align: center; justify-content: center; }
    .hero-img { position: relative; right: auto; top: auto; transform: none; margin-top: 50px; }
    .buttons { justify-content: center; }
    .about-section { flex-direction: column; text-align: center; }
    .about-content h2::after { margin: 10px auto; }
    .contact-box { margin: 20px auto 0; }
    
    /* Zodiac Wheel Mobile */
    .zodiac-wheel-container { height: auto; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 600px; margin-top: 30px; }
    .center-bg-gif { display: none; }
    .zodiac-card { position: relative; top: auto; left: auto; right: auto; bottom: auto; transform: none; width: 45%; justify-content: flex-start; }
    .zodiac-card:hover { transform: none; }

    /* Journey Mobile */
    .astro-row { flex-direction: column; text-align: center; margin-bottom: 50px; }
    .line-connector { display: none; }
    .col-center { margin: 20px 0; order: 1; }
    .col-side { padding: 0; flex: auto; }
    .row-standard .col-left { order: 0; }
    .row-standard .col-right { order: 2; }
    .row-reverse .col-left { order: 2; }
    .row-reverse .col-right { order: 0; }
    .text-right, .text-left { text-align: center; }

    /* Testimonials Mobile */
    .testimonial-section { flex-direction: column; gap: 20px; }
    .testimonial-divider { display: none; }
    .zodiac-form-box { flex-direction: column; align-items: stretch; padding: 25px; }
    .btn-result { width: 100%; margin-top: 10px; }
}


/* =========================================
    About Us Page
    ========================================= */

    /* --- Guided Section Styles --- */
.guided-section {
    position: relative;
    background-color: #f0efeb; /* Paper/Cream color */
    /* Optional: Add a texture url if you have one */
    /* background-image: url('texture-paper.png'); */
    padding: 150px 20px;
    text-align: center;
    overflow: hidden; /* Clips the corner sunbursts */
    font-family: 'Roboto', sans-serif;
}

/* Container for Decorations to sit behind text */
.decor-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Allows clicking through to buttons */
    z-index: 1;
}

/* Sunburst SVGs */
.sunburst-corner {
    position: absolute;
    width: 250px;
    height: 250px;
}

.sunburst-corner svg {
    width: 100%;
    height: 100%;
}

.top-left {
    top: -20px;
    left: -20px;
}

.bottom-right {
    bottom: -20px;
    right: -20px;
}

/* Vertical Gold Lines */
.vertical-line {
    position: absolute;
    width: 2px;
    height: 60%; /* Occupies 60% of section height */
    background-color: #d4af37; /* Gold color */
    top: 50%;
    transform: translateY(-50%);
}

.left-line {
    left: 5%;
}

.right-line {
    right: 5%;
}

/* Stars */
.decor-star {
    position: absolute;
    color: #d4af37;
    font-size: 24px;
    opacity: 0.8;
}

.star-1 { top: 10%; left: 25%; font-size: 30px; }
.star-2 { bottom: 20%; right: 20%; font-size: 20px; }
.star-3 { bottom: 35%; right: 15%; font-size: 35px; }


/* Content Layout */
.guided-content {
    position: relative;
    z-index: 2; /* Sits above decorations */
    max-width: 800px;
    margin: 0 auto;
}

.guided-content h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 4rem; /* Large Headline */
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 25px;
}

.guided-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Buttons */
.guided-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-guided {
    padding: 15px 40px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    display: inline-block;
    min-width: 160px;
}

/* Read More (Brown) */
.btn-brown {
    background-color: #6d5d4b; /* Taupe/Brown */
    color: #fff;
    border: 1px solid #6d5d4b;
}

.btn-brown:hover {
    background-color: #55483a;
    color: #fff;
}

/* Consult Now (Transparent) */
.btn-outline-dark {
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-outline-dark:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .guided-content h2 {
        font-size: 2.5rem;
    }
    
    .vertical-line {
        display: none; /* Hide lines on mobile to save space */
    }
    
    .guided-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-guided {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   MENTOR SECTION STYLES
   ========================================= */
.mentor-section {
    /* padding: 80px 10%; */
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

/* Layout Container */
.mentor-container {
    display: flex;
    align-items: flex-start; /* Aligns top of image with top of text */
    justify-content: center;
    gap: 60px; /* Space between image and text */
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Column: Image --- */
.mentor-image-wrapper {
    flex: 1; /* Takes up equal space initially */
    max-width: 500px;
}

.mentor-img {
    width: 100%;
    height: auto;
    border-radius: 30px; /* The rounded corners from the design */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); /* Soft shadow */
    display: block;
    object-fit: cover;
}

/* --- Right Column: Text --- */
.mentor-content {
    flex: 1;
    padding-top: 10px; /* Slight offset to align with image top */
    align-items: center;
    justify-content: center;
}

/* Heading: KNOW YOUR MENTOR */
.mentor-title {
    font-family: 'Playfair Display', serif; /* Serif font */
    font-size: 1.6rem;
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Subheading: Name & Title */
.mentor-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #a01a1a; /* Dark Red / Maroon color */
    margin-bottom: 25px;
    font-weight: 700;
}

/* Paragraphs */
.mentor-content p {
    font-size: 0.95rem;
    color: #555; /* Dark Grey text */
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify; /* Makes the text block look neat and square */
}

/* Signature */
.signature-box {
    display: flex;
    justify-content: flex-end; /* Pushes signature to the right */
    margin-top: 20px;
    padding-right: 20px;
}

.signature-img {
    height: 100px; /* Adjust based on your signature image size */
    width: auto;
    opacity: 0.8;
}

/* --- Responsive Design (Mobile) --- */
@media (max-width: 900px) {
    .mentor-container {
        flex-direction: column; /* Stack vertically */
        align-items: center;
        gap: 40px;
    }

    .mentor-image-wrapper {
        width: 100%;
        max-width: 400px; /* Limit image size on mobile */
    }

    .mentor-content {
        text-align: center; /* Center text on mobile */
        padding-top: 0;
    }

    .mentor-content p {
        text-align: left; /* Keep paragraphs readable */
    }

    .signature-box {
        justify-content: center; /* Center signature on mobile */
        padding-right: 0;
    }
}

/* =========================================
   SERVICES / EMPOWER SECTION
   ========================================= */
.services-section {
    padding: 80px 5%;
    background-color: #fff;
    max-width: 1300px;
    margin: 0 auto;
}

/* Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Columns */
    gap: 40px; /* Space between cards */
    margin-top: 50px;
}

/* =========================================
   ASTRO HEADER STYLES (Global Title)
   ========================================= */

.astro-header {
    text-align: center;
    margin-bottom: 60px; /* Space between header and the content below */
    padding: 0 20px;
}

/* Main Heading (h2) */
.astro-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    position: relative;
    display: inline-block; /* Keeps the underline relative to text width if needed */
    width: 100%;
}

/* The Orange Underline */
.astro-header h2::after {
    content: "";
    display: block;
    width: 100px;       /* Length of the line */
    height: 3px;        /* Thickness */
    background-color: #f39c12; /* Your Theme Orange */
    margin: 15px auto 0; /* Centers the line below text */
}

/* Description Text (p) */
.astro-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;        /* Dark Grey for readability */
    line-height: 1.6;
    max-width: 700px;   /* Prevents text from stretching too wide */
    margin: 0 auto;     /* Centers the block */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .astro-header {
        margin-bottom: 40px;
    }

    .astro-header h2 {
        font-size: 2rem; /* Smaller font on mobile */
    }

    .astro-header h2::after {
        margin-top: 10px;
    }
}

/* Card Container */
.service-card {
    position: relative;
    cursor: pointer;
}

/* Image Container */
.img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Makes images perfectly square */
    overflow: hidden; /* Ensures zoom effect stays inside */
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover: Zoom Image slightly */
.service-card:hover .img-container img {
    transform: scale(1.1);
}

/* Default Title (Below Image) */
.default-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
    margin-top: 15px;
    color: #1a1a1a;
    transition: opacity 0.3s;
}

/* Hover: Hide default title when box appears */
.service-card:hover .default-title {
    opacity: 0;
}

/* --- THE WHITE OVERLAY BOX --- */
.hover-box {
    position: absolute;
    top: 20%;
    left: -20px; /* Pulls box to the left like design */
    width: 80%;
    background-color: #fff;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #eee;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-out;
    pointer-events: none; /* Let clicks pass through if needed */
}

/* Hover: Show Box */
.service-card:hover .hover-box {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hover-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #000;
}

.hover-box p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 15px;
}

.arrow-link {
    color: #000;
    font-size: 1.2rem;
    text-decoration: none;
    transition: margin-left 0.3s;
}

.arrow-link:hover {
    margin-left: 5px; /* Slight movement on hover */
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
        gap: 60px; /* More vertical space */
    }

    /* On mobile, center the overlay box differently so it fits */
    .hover-box {
        left: 50%;
        transform: translateX(-50%) translateY(20px); /* Centered */
        width: 90%;
        top: 20%;
    }

    .service-card:hover .hover-box {
        transform: translateX(-50%) translateY(0);
    }
}

/* =========================================
   FAQ SECTION STYLES
   ========================================= */
.faq-section {
    padding: 80px 5%;
    background-color: #fff; /* Clean white background */
}

/* Layout Grid */
.faq-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Side: Image Styling --- */
.faq-image-side {
    flex: 1;
    position: relative; /* Needed for absolute positioning of layers */
    min-width: 300px;
    padding: 20px; /* Space for the offset shadow */
}

.faq-main-img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    z-index: 2; /* Sits on top */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

.faq-img-backdrop {
    position: absolute;
    top: 40px; /* Push down */
    left: 40px; /* Push right */
    width: 100%; /* Matches parent width */
    height: 100%; /* Matches parent height (approx) */
    background-color: #ccc; /* The Grey Shadow Color */
    border-radius: 20px;
    z-index: 1; /* Sits behind */
    /* Fix overlap issue since img isn't filling parent exactly due to padding */
    width: calc(100% - 40px); 
    height: calc(100% - 40px);
}

/* --- Right Side: Accordion --- */
.faq-list {
    flex: 1.2; /* Takes slightly more space than image */
}

.faq-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Open State Styling */
.faq-item.active {
    border-color: #f39c12; /* Orange border when open */
    background-color: #fffaf0; /* Very light orange bg */
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #888;
}

.faq-item.active .faq-question {
    color: #d35400; /* Dark orange text */
}

.faq-item.active .faq-question i {
    transform: rotate(180deg); /* Flip arrow up */
    color: #d35400;
}

/* The Answer (Hidden by default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}

.faq-answer p {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .faq-container {
        flex-direction: column;
    }

    .faq-image-side {
        width: 100%;
        max-width: 500px;
        margin-bottom: 30px;
    }
    
    .faq-img-backdrop {
        /* Adjust offset for mobile if needed */
        top: 30px;
        left: 30px;
    }

    .faq-list {
        width: 100%;
    }
}

/* =========================================
   CONTACT HERO SECTION
   ========================================= */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff9ec; /* The cream base color */
    overflow: hidden; /* Clips the shapes that stick out */
    padding: 60px 20px;
}

/* --- The Geometric Shapes --- */
.geo-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Sits behind text */
    pointer-events: none;
}

.geo-shape {
    position: absolute;
    transform: rotate(45deg); /* The diagonal angle */
    opacity: 0.9;
}

/* 1. Large Yellow Band on Left */
.shape-yellow-left {
    background-color: #fcf0a4; /* Pastel Yellow */
    width: 600px;
    height: 1000px;
    top: 0;
    left: -200px;
    transform-origin: top left;
}

/* 2. Orange Corner Top Left */
.shape-orange-top {
    background-color: #fcdbb3; /* Pastel Peach */
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
}

/* 3. Grey Triangle Bottom Left */
.shape-grey-bottom {
    background-color: #cdd3d5; /* Light Grey */
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: 0;
}

/* 4. Purple/Grey Band on Right */
.shape-purple-right {
    background-color: #b0b0c0; /* Muted Purple/Grey */
    width: 400px;
    height: 800px;
    top: -100px;
    right: -150px;
}

/* 5. Yellow/Orange Band Bottom Right */
.shape-yellow-right {
    background-color: #fcefdc; /* Lighter Yellow/Orange */
    width: 500px;
    height: 500px;
    bottom: -200px;
    right: -100px;
}

/* --- Text Content --- */
.contact-hero-content {
    position: relative;
    z-index: 2; /* Sits on top of shapes */
    text-align: center;
    max-width: 700px;
}

.contact-hero-content h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: none; /* Keep natural case */
}

.contact-hero-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .contact-hero-section {
        min-height: 400px;
    }

    .contact-hero-content h2 {
        font-size: 2.2rem;
    }

    /* Adjust shapes for mobile so they don't cover text */
    .shape-yellow-left { width: 300px; left: -100px; }
    .shape-purple-right { width: 200px; right: -80px; }
}

/* =========================================
   CONTACT INFO SECTION
   ========================================= */
.contact-info-section {
    padding: 80px 7%;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

.contact-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 100%;
    margin: 0 auto;
}

/* --- Left Side: Text --- */
.contact-text-side {
    flex: 1;
}

/* Titles with Red Underline */
.contact-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-main-title::after {
    content: '';
    display: block;
    width: 100%; /* Line matches text width */
    height: 3px;
    background-color: #c0392b; /* Dark Red */
    margin-top: 10px;
}

.contact-subtext {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Contact Methods Row (Phone/Email) */
.contact-methods {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Orange Icon Circles */
.icon-circle {
    width: 50px;
    height: 50px;
    background-color: #ed7948; /* The specific orange from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.method-details {
    display: flex;
    flex-direction: column;
}

.method-details strong {
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 2px;
}

.method-details span {
    font-size: 0.9rem;
    color: #555;
}

/* Secondary Title */
.contact-sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.contact-sub-title::after {
    content: '';
    display: block;
    width: 60px; /* Shorter line for sub-title */
    height: 3px;
    background-color: #c0392b;
    margin-top: 10px;
}

/* Checklist */
.contact-checklist {
    list-style: none;
    padding: 0;
}

.contact-checklist li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #555;
}

.contact-checklist li i {
    color: #ed7948; /* Orange checkmark */
    font-size: 1.2rem;
}

/* --- Right Side: Image --- */
.contact-image-side {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.zodiac-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px; /* Rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }

    .contact-image-side {
        justify-content: center;
    }
}

/* =========================================
   CONTACT FORM SECTION
   ========================================= */
.form-section {
    padding: 80px 10%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.form-container {
    display: flex;
    width: 100%;
    max-width: 1100px;
    gap: 60px; /* Space between image and form */
    align-items: flex-start; /* Align tops */
}

/* --- Left Side: Poster Image --- */
.form-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    
}

.poster-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 5px; /* Soft rounded corners */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    
}

/* --- Right Side: Form Container --- */
.form-wrapper {
    flex: 1;
    border: 1px solid #777; /* Thin dark grey border */
    border-radius: 30px;    /* Large rounded corners */
    padding: 40px;
    background-color: #fff;
}

/* Form Layout */
.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

/* Labels */
.form-group label {
    display: block;
    font-family: 'Tienne', serif; /* Matching the serif font in image */
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
}

/* Inputs & Textarea */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #555;
    border: 1px solid #888;
    border-radius: 8px; /* Slightly rounded inputs */
    outline: none;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #f39c12; /* Highlight orange on focus */
}

/* Submit Button */
.btn-submit {
    background-color: #ff6600; /* Vivid Orange */
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Tienne', serif;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #e65c00;
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .form-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .form-image-side, 
    .form-wrapper {
        width: 100%;
        max-width: 600px;
    }

    .form-row {
        flex-direction: column; /* Stack names on mobile */
        gap: 0;
    }
}

/* =========================================
   WHY CONNECT SECTION
   ========================================= */
.connect-section {
    padding: 80px 5%;
    background-color: #fff;
    text-align: center;
}

/* Timeline Container */
.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Equal Columns */
    max-width: 1100px;
    margin: 50px auto 0;
    position: relative;
    align-items: flex-end; /* Aligns bars to the bottom */
}

/* Individual Item */
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Icons */
.icon-wrapper {
    font-size: 3rem;
    color: #f39c12; /* Default Orange */
    margin-bottom: 15px;
    border: 2px solid #f39c12; /* Shield/Circle Border effect */
    padding: 20px;
    border-radius: 50%; /* Makes it circular, adjust border-radius for shield shape if using SVG */
    /* To mimic the shield shape exactly, you'd usually use an SVG image, but circle is standard CSS */
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
}

.timeline-item:hover .icon-wrapper {
    transform: translateY(-5px);
}

/* Text */
.timeline-item h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px; /* Ensures alignment even if text length varies */
}

/* --- Pin Marker (The Stick and Ball) --- */
.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 80px; /* Height of the stick */
    width: 100%;
}

.pin-head {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    z-index: 2;
}

.pin-line {
    width: 3px;
    flex: 1; /* Fills remaining height */
}

/* --- Base Bar (The thick bottom line) --- */
.base-bar {
    width: 100%;
    height: 40px; /* Thick bar height */
    margin-top: -1px; /* Overlap slightly to avoid gaps */
}

/* --- Color Variables for specific columns --- */

/* 1. Privacy (Orange) */
.orange-pin { background-color: #f2711c; }
.orange-line { background-color: #f2711c; }
.bar-orange { background-color: #f2711c; border-top-left-radius: 5px; border-bottom-left-radius: 5px; }

/* 2. Predictions (Cream/Beige) */
.cream-pin { background-color: #fceabb; }
.cream-line { background-color: #fceabb; }
.bar-cream { background-color: #fceabb; }

/* 3. Experience (Red) */
.red-pin { background-color: #e74c3c; }
.red-line { background-color: #e74c3c; }
.bar-red { background-color: #e74c3c; }

/* 4. Session (Yellow) */
.yellow-pin { background-color: #f1c40f; }
.yellow-line { background-color: #f1c40f; }
.bar-yellow { background-color: #f1c40f; border-top-right-radius: 5px; border-bottom-right-radius: 5px; }


/* --- Responsive Mobile View --- */
@media (max-width: 768px) {
    .timeline-container {
        grid-template-columns: 1fr; /* Stack vertically */
        gap: 30px;
    }

    /* Hide the complex pin/bar structure on mobile for cleaner look */
    .timeline-marker, .base-bar {
        display: none;
    }

    .timeline-item {
        background: #f9f9f9;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .icon-wrapper {
        margin-bottom: 10px;
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .timeline-item h3 {
        min-height: auto;
        margin-bottom: 0;
    }
}

/* =========================================
   MAP SECTION
   ========================================= */
.map-section {
    width: 100%;
    position: relative;
    
    line-height: 0; /* Removes any tiny white gap below the iframe */
}

.map-section iframe {
    width: 100%;
    height: 450px; /* Adjust height to match your preference */
    display: block;
    filter: grayscale(0%); /* Change to 100% if you want a black/white map */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .map-section iframe {
        height: 300px;
    }
}

/* =========================================
   PERSONALIZED SERVICES SECTION
   ========================================= */
.personalized-section {
    /* background-color: #f5f0e6; Creamy paper-like background */
    padding: 150px 20px;
    background-image: url(images/bg.png);
    text-align: center;
    /* Optional: If you have the texture image, add it here:
       background-image: url('your-texture-file.png'); 
       background-size: cover; */
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Heading Styling */
.personalized-section h2 {
    font-family: 'Roboto Condensed', sans-serif; /* Condensed font from image */
    font-size: 3.5rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Subtext Styling */
.personalized-section p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666; /* Muted grey text */
    line-height: 1.6;
    margin-bottom: 45px;
}

/* Button Layout */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between buttons */
}

/* General Button Styles */
.btn-box {
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px; /* Ensures buttons are same width */
    display: inline-block;
    font-family: 'Roboto Condensed', sans-serif;
}

/* Orange Solid Button */
.btn-solid {
    background-color: #d3862b; /* The specific brownish-orange */
    color: #fff;
    border: 1px solid #d3862b;
}

.btn-solid:hover {
    background-color: #b56f20;
    border-color: #b56f20;
}

/* Transparent Border Button */
.btn-border {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-border:hover {
    background-color: #000;
    color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .personalized-section {
        padding: 60px 20px;
    }

    .personalized-section h2 {
        font-size: 2.2rem; /* Smaller font on mobile */
    }

    .personalized-section p br {
        display: none; /* Let text wrap naturally on mobile */
    }

    .action-buttons {
        flex-direction: column; /* Stack buttons */
        align-items: center;
        gap: 15px;
    }

    .btn-box {
        width: 100%;
        max-width: 250px;
    }
}

/* =========================================
   HOROSCOPE NAV BAR
   ========================================= */
.horoscope-nav {
    display: flex;
    width: 100%;
    background-color: #f1c40f; /* Vivid Yellow/Orange from image */
    font-family: 'Roboto', sans-serif;
    overflow: hidden; /* Ensures no scrollbars from slanted elements */
}

.nav-item {
    flex: 1; /* Makes all items equal width */
    text-align: center;
    color: white;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative; /* Needed to anchor the slanted divider */
    transition: background-color 0.3s;
    white-space: nowrap; /* Prevents text breaking on smaller screens */
}

.nav-item:hover {
    background-color: #d4ac0d; /* Slightly darker on hover */
}

/* --- The Slanted White Divider --- */
/* We apply this to every item EXCEPT the last one */
.nav-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0; /* Position at the right edge */
    width: 2px; /* Thickness of the white line */
    background-color: #fff;
    transform: skewX(-20deg); /* Creates the diagonal slant */
    transform-origin: bottom;
    z-index: 10;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .horoscope-nav {
        flex-direction: column; /* Stack vertically on mobile */
    }

    .nav-item {
        border-bottom: 1px solid rgba(255,255,255,0.5); /* Simple divider for mobile */
    }

    /* Remove the slanted divider on mobile */
    .nav-item:not(:last-child)::after {
        display: none;
    }
}

/* =========================================
   ZODIAC GRID SECTION
   ========================================= */
.zodiac-grid-section {
    background-color: #faefe3; /* The Peach/Cream background */
    padding: 60px 5%;
}

.zodiac-grid-container {
    display: grid;
    /* 6 Columns by default like the image */
    grid-template-columns: repeat(6, 1fr); 
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}

/* Individual Card Styling */
.zodiac-box {
    background-color: #dce1e6; /* The Blue-Grey card background */
    border-radius: 12px;       /* Soft rounded corners */
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    aspect-ratio: 1 / 1; /* Keeps the cards square */
}

/* Hover Effect */
.zodiac-box:hover {
    transform: translateY(-5px); /* Gentle float up */
    background-color: #cfd4d9;   /* Slightly darker grey on hover */
}

/* Icon Styling */
.zodiac-icon {
    font-size: 3rem;      /* Large icon size */
    color: #b59566;       /* Gold/Bronze color from image */
    margin-bottom: 10px;
    line-height: 1;
}

/* Text Styling */
.zodiac-name {
    font-family: 'Playfair Display', serif; /* Matching the serif font */
    font-size: 1.1rem;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet: 4 Columns */
@media (max-width: 1024px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Mobile: 3 Columns */
@media (max-width: 768px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .zodiac-box {
        padding: 15px 5px;
    }
    
    .zodiac-icon {
        font-size: 2.5rem;
    }
}

/* Small Mobile: 2 Columns */
@media (max-width: 480px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* =========================================
   TRANSFORM SERVICES SECTION
   ========================================= */
.transform-section {
    padding: 80px 5%;
    background-color: #fff;
}

.transform-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0; /* Gaps handled by min-height of rows */
}

/* --- Row Layout --- */
.step-row {
    display: grid;
    /* 4 Columns: Number | Line | Text | Icon */
    grid-template-columns: 100px 60px 1fr 80px; 
    align-items: flex-start; /* Align to top */
    min-height: 120px; /* Space between steps */
}

/* --- Column 1: Numbers --- */
.num-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.num-bubble {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Playfair Display', serif;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Specific Colors for Bubbles */
.color-1 { background-color: #8b0000; } /* Dark Red */
.color-2 { background-color: #d35400; } /* Orange */
.color-3 { background-color: #f39c12; } /* Light Orange */
.color-4 { background-color: #f1c40f; } /* Yellow */

/* Decorative Arc (Pseudo-element) */
.num-bubble::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border-right: 6px solid;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-left: 2px solid transparent;
    top: -15px;
    left: 10px;
    z-index: -1;
    opacity: 0.6;
}
/* Match arc colors to bubbles */
.color-1::after { border-right-color: #8b0000; }
.color-2::after { border-right-color: #d35400; }
.color-3::after { border-right-color: #f39c12; }
.color-4::after { border-right-color: #f1c40f; }


/* --- Column 2: Timeline (Line & Dot) --- */
.line-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: #000;
    border-radius: 50%;
    margin-top: 27px; /* Aligns dot with the center of the text roughly */
    z-index: 2;
}

.timeline-line {
    position: absolute;
    top: 27px; /* Start from the dot */
    bottom: -30px; /* Extend to next row */
    width: 2px;
    background-color: #000;
    z-index: 1;
}

.step-row:last-child .timeline-line {
    display: none; /* Hide line for last item */
}

/* --- Column 3: Content --- */
.content-col {
    padding-left: 20px;
    padding-top: 15px; /* Visual alignment with dot */
}

.content-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-col p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* --- Column 4: Icons --- */
.icon-col {
    display: flex;
    justify-content: center;
    padding-top: 15px;
}

.icon-yellow {
    font-size: 3rem;
    color: #fbf53f; /* Bright Neon Yellow from image */
    /* Add a slight text-shadow/stroke to make it pop against white if needed */
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.1)); 
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .step-row {
        grid-template-columns: 60px 1fr; /* 2 Columns: Number | Content */
        gap: 20px;
        margin-bottom: 40px;
        min-height: auto;
        position: relative;
    }

    /* Hide the complex timeline line/dot and separate icon column on mobile */
    .line-col, .icon-col {
        display: none; 
    }

    .num-col {
        justify-content: flex-start;
    }

    .num-bubble {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Adjust arc for smaller bubble */
    .num-bubble::after {
        width: 70px;
        height: 70px;
        top: -10px;
        left: 5px;
    }

    .content-col {
        padding: 0;
    }
}


/* =========================================
   KUNDLI BANNER SECTION
   ========================================= */
.kundli-banner {
    position: relative;
    background-color: #03122b; /* Deep Space Blue */
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden; /* Clips the planets at the edges */
}

/* Container for text */
.kundli-content {
    position: relative;
    z-index: 10; /* Ensures text is above planets */
    max-width: 800px;
    margin: 0 auto;
}

/* Heading */
.kundli-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Paragraph */
.kundli-content p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #dbe4f0; /* Light blue-white for readability */
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* The Gold Button */
.btn-kundli {
    display: inline-block;
    background-color: #e09236; /* The specific Gold/Orange color */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 8px; /* Slightly rounded corners */
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-kundli:hover {
    background-color: #c77e2a; /* Darker gold on hover */
}

/* --- PLANET DECORATIONS (Pure CSS) --- */
.planet {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

/* 1. Top Left Orange Planet */
.orange-planet {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 5%;
    /* Gradient to make it look 3D */
    background: radial-gradient(circle at 30% 30%, #e67e22, #a04000); 
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.4);
}

/* 2. Top Right Purple Planet with Ring */
.purple-planet {
    width: 70px;
    height: 70px;
    top: 60px;
    right: 10%;
    background: radial-gradient(circle at 30% 30%, #5b42f3, #2a1b75);
    box-shadow: 0 0 15px rgba(91, 66, 243, 0.4);
}

/* The Ring for the Purple Planet */
.purple-planet .ring {
    position: absolute;
    width: 120%;
    height: 30%;
    border: 2px solid rgba(150, 150, 255, 0.6);
    border-radius: 50%;
    top: 50%;
    left: -10%;
    transform: translateY(-50%) rotate(-20deg);
}

/* 3. Bottom Right Red Planet */
.red-planet {
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 15%;
    background: radial-gradient(circle at 30% 30%, #c0392b, #641e16);
    opacity: 0.8;
}

/* Optional: Tiny Stars Background */
.stars {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.3; /* Subtle stars */
    z-index: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .kundli-content h2 {
        font-size: 2.2rem;
    }
    
    /* Move planets slightly for mobile so they don't cover text */
    .orange-planet { width: 60px; height: 60px; top: 20px; left: -10px; }
    .purple-planet { width: 50px; height: 50px; top: 20px; right: -10px; }
    .red-planet { bottom: 20px; right: 20px; }
}

/* =========================================
   KUNDLI FORM SECTION
   ========================================= */
.kundli-form-section {
    padding: 80px 5%;
    background-color: #fff; /* Clean white background */
    display: flex;
    justify-content: center;
}

.kundli-container {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center image and form */
    gap: 60px; /* Space between form and image */
    max-width: 1100px;
    width: 100%;
}

/* --- Left Side: Form Card --- */
.kundli-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft shadow like image */
    border: 1px solid #f0f0f0;
    width: 100%;
    max-width: 450px; /* Fixed width for the card look */
}

.form-title {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Input Fields */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Roboto', sans-serif;
}

.form-control:focus {
    border-color: #2f80ed; /* Highlight blue on focus */
}

.form-control::placeholder {
    color: #aaa;
}

/* Radio Buttons */
.radio-group {
    display: flex;
    gap: 20px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
}

.radio-label input {
    cursor: pointer;
    accent-color: #2f80ed; /* Makes radio button blue */
}

/* Submit Button */
.btn-kundli-submit {
    width: 100%;
    background-color: #2f80ed; /* Bright Blue */
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    font-family: 'Roboto', sans-serif;
}

.btn-kundli-submit:hover {
    background-color: #1d6ad6; /* Darker blue on hover */
}

/* --- Right Side: Image --- */
.kundli-image-wrapper {
    flex: 1;
    max-width: 550px;
}

.kundli-side-img {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded corners for the image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .kundli-container {
        flex-direction: column; /* Stack vertically on mobile */
        align-items: center;
        gap: 40px;
    }

    .kundli-card, 
    .kundli-image-wrapper {
        max-width: 100%;
        width: 100%;
    }
    
    /* Optional: Put image on top on mobile if preferred */
    /* .kundli-image-wrapper { order: -1; } */
}


/* =========================================
   REPORT CTA SECTION
   ========================================= */
.report-cta-section {
    background-color: #dfd2bc; /* The specific beige/tan background */
    padding: 80px 20px;
    text-align: center;
}

.report-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Serif Name Styling */
.dr-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 400; /* Regular weight looks more elegant like image */
    text-transform: uppercase;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Sans-Serif Question Styling */
.cta-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 600; /* Semi-bold */
    color: #000;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Description Text */
.cta-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 35px;
    line-height: 1.6;
}

/* Gold/Brown Button */
.btn-get-report {
    display: inline-block;
    background-color: #ae8045; /* The gold/brown color */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 15px 50px; /* Wide padding like the image */
    border-radius: 8px; /* Slightly rounded corners */
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-get-report:hover {
    background-color: #8f6733; /* Darker shade on hover */
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .report-cta-section {
        padding: 60px 20px;
    }

    .dr-name {
        font-size: 1.6rem;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .cta-desc br {
        display: none; /* Removes manual line break on mobile */
    }
    
    .btn-get-report {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   KUNDLI INFO TEXT SECTION
   ========================================= */
.kundli-info-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.info-container {
    max-width: 1160px; /* Limits width for better readability */
    margin: 0 auto;
}

/* Main Heading */
.info-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #222;
    line-height: 1.2;
}

.highlight-gold {
    color: #ae8045; /* The gold/brown accent color */
}

/* Subheadings */
.text-block h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 600;
}

/* Paragraphs */
.text-block p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1.7; /* Good line height for long reading */
    color: #555;
    margin-bottom: 15px;
    text-align: justify; /* Makes the text blocks look neat */
}

/* Lists */
.info-list {
    margin: 15px 0 20px 20px;
    padding-left: 15px;
}

.info-list li {
    font-family: 'Roboto', sans-serif;
    color: #555;
    margin-bottom: 8px;
    list-style-type: disc; /* Standard bullet points */
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .kundli-info-section {
        padding: 50px 20px;
    }

    .info-main-title {
        font-size: 2rem;
        text-align: center; /* Center title on mobile */
    }

    .text-block h3 {
        font-size: 1.5rem;
    }

    .text-block p {
        text-align: left; /* Keep paragraphs left-aligned on mobile for easier reading */
    }
}

/* =========================================
   CALCULATE STARS BANNER
   ========================================= */
.calc-stars-banner {
    /* background-color: #faf9f6; Very light off-white/cream */
    padding: 150px 20px;
    background-image: url(images/banner.png);
    text-align: center;
}

.calc-stars-banner h2 {
    font-family: 'Roboto Condensed', sans-serif; /* Matches the condensed bold look */
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0;
    text-transform: capitalize;
}

/* Responsive */
@media (max-width: 768px) {
    .calc-stars-banner {
        padding: 40px 20px;
    }

    .calc-stars-banner h2 {
        font-size: 2rem;
    }
}

/* =========================================
   CALCULATOR GRID SECTION
   ========================================= */
.calculator-grid-section {
    background-color: #f7f3f0; /* Light Off-White/Grey background */
    padding-bottom: 80px;
    font-family: 'Roboto', sans-serif;
}

/* Orange Header Strip */
.calc-header-strip {
    background-color: #e69632; /* The specific orange/gold */
    padding: 20px;
    text-align: center;
    margin-bottom: 50px;
}

.calc-header-strip h2 {
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin: 0;
}

/* Grid Container */
.calc-grid-container {
    display: grid;
    /* 4 Columns layout */
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Card */
.calc-card {
    background-color: #fff;
    border-radius: 12px; /* Soft rounded corners */
    padding: 30px 15px;
    text-align: center;
    text-decoration: none; /* Removes underline from links */
    color: #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Very subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.calc-card:hover {
    transform: translateY(-5px); /* Lift effect on hover */
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Icon Wrapper */
.icon-wrap {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Title Text */
.calc-card h3 {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    color: #1a1a1a;
}

/* --- Responsive Design --- */

/* Tablet: 2 Columns */
@media (max-width: 900px) {
    .calc-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile: 2 Columns (smaller gap) or 1 Column */
@media (max-width: 500px) {
    .calc-grid-container {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns to look like apps */
        gap: 15px;
    }

    .calc-header-strip h2 {
        font-size: 1.1rem;
    }

    .calc-card {
        padding: 20px 10px;
    }

    .icon-wrap {
        width: 50px;
        height: 50px;
    }

    .calc-card h3 {
        font-size: 0.9rem;
    }
}


/* =========================================
   HOROSCOPE FORM SECTION
   ========================================= */
.horoscope-form-section {
    padding: 80px 5%;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.horoscope-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    width: 100%;
}

/* --- Left Side: Form Card --- */
.horoscope-card {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    /* Soft floating shadow */
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
    border: 1px solid #fcfcfc;
    width: 100%;
    max-width: 450px;
}

.form-title {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #eee; /* Very subtle border like image */
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    outline: none;
    font-family: 'Roboto', sans-serif;
    background-color: #fff;
}

.form-control:focus {
    border-color: #a855f7; /* Purple focus border */
}

/* Gradient Button */
.btn-horoscope-submit {
    width: 100%;
    /* Gradient from Purple to Blue */
    background: linear-gradient(90deg, #9b5de5, #4361ee);
    color: #fff;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 15px;
    font-family: 'Roboto', sans-serif;
    transition: opacity 0.3s;
}

.btn-horoscope-submit:hover {
    opacity: 0.9;
}

/* --- Right Side: Image --- */
.horoscope-image-wrapper {
    flex: 1;
    max-width: 550px;
}

.horoscope-side-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: block;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .horoscope-container {
        flex-direction: column;
        gap: 40px;
    }
    
    /* Put image on top for mobile (optional) */
    .horoscope-image-wrapper { order: -1; }
}

/* =========================================
   CALCULATOR INFO TEXT SECTION
   ========================================= */
.calc-info-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

/* The Blue Border Box */
.calc-info-box {
    padding: 50px;
    max-width: 1160px;
    width: 100%;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    color: #444;
}

/* Main Heading */
.calc-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #ae8045; /* Gold/Bronze color */
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Subheadings */
.calc-info-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #000;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: justify;
}

/* Body Text */
.calc-info-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    
}

.calc-intro {
    margin-bottom: 30px;

}

/* Lists Styling */
.calc-list, .simple-list {
    margin-left: 20px;
    margin-bottom: 20px;
    
}

.calc-list li, .simple-list li {
    margin-bottom: 8px;
    list-style-type: disc; /* Bullet points */
    color: #555;
    line-height: 1.5;
}

.calc-list li strong {
    color: #333;
}

/* Footer Text */
.calc-footer-text {
    font-weight: 500;
    color: #222;
    margin-top: 20px;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .calc-info-box {
        padding: 25px; /* Reduce padding on mobile */
        border-width: 2px;
    }

    .calc-main-title {
        font-size: 1.8rem;
    }

    .calc-info-box h3 {
        font-size: 1.4rem;
    }

    .calc-info-box p {
        text-align: left; /* Easier to read on small screens */
    }
}

/* =========================================
   COSMIC BANNER SECTION
   ========================================= */
.cosmic-banner {
    /* background-color: #111; Deep Black/Grey Background */
    padding: 150px 20px;
    background-image: url(images/banner1.jpg);
    text-align: center;
    background-repeat: no-repeat; /* Prevents image from repeating */
  background-size: cover; /* Scales the image to cover the entire background */
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
}



/* Heading Text */
.cosmic-banner h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    text-transform: capitalize;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cosmic-banner {
        padding: 40px 20px;
    }

    .cosmic-banner h1 {
        font-size: 2.2rem;
    }

    .cosmic-icons {
        gap: 15px;
        font-size: 1rem;
    }

    .center-sun {
        font-size: 2rem;
    }
}

/* =========================================
   GREY HOROSCOPE NAV BAR
   ========================================= */
.horoscope-nav-grey {
    display: flex;
    width: 100%;
    background-color: #8c867f; /* The Taupe/Grey color from the image */
    font-family: 'Roboto', sans-serif;
    overflow: hidden; /* Hides the tips of the slanted lines */
}

.h-nav-link {
    flex: 1; /* Makes all 4 items equal width */
    text-align: center;
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    font-size: 1rem;
    font-weight: 400;
    position: relative; /* Needed to anchor the separator */
    transition: background-color 0.3s;
    white-space: nowrap;
}

.h-nav-link:hover {
    background-color: #756f68; /* Slightly darker on hover */
}

/* --- The Slanted White Divider --- */
/* We add this line to every item EXCEPT the last one */
.h-nav-link:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0; /* Align to the right edge of the link */
    width: 2px; /* Thickness of the white line */
    background-color: #fff;
    transform: skewX(-20deg); /* The diagonal tilt */
    transform-origin: bottom;
    z-index: 10;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .horoscope-nav-grey {
        flex-direction: column; /* Stack vertically on phones */
    }

    .h-nav-link {
        border-bottom: 1px solid rgba(255,255,255,0.3); /* Simple divider for mobile */
        padding: 12px;
    }

    /* Remove the slanted divider on mobile */
    .h-nav-link:not(:last-child)::after {
        display: none;
    }
}

/* =========================================
   ZODIAC GRID SECTION
   ========================================= */
.zodiac-grid-section {
    background-color: #faf3ed; /* Light Blush/Beige background */
    padding: 60px 5%;
}

.zodiac-grid-container {
    display: grid;
    /* 6 Columns by default like the image */
    grid-template-columns: repeat(6, 1fr); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Card Styling */
.zodiac-box {
    background-color: #dbe0e2; /* The Grey card background */
    border-radius: 12px;       /* Rounded corners */
    padding: 25px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;     /* Removes link underline */
    transition: transform 0.3s ease, background-color 0.3s ease;
    aspect-ratio: 1 / 1;       /* Keeps cards square */
}

/* Hover Effect */
.zodiac-box:hover {
    transform: translateY(-5px); /* Lift up effect */
    background-color: #ced3d6;   /* Slightly darker grey on hover */
}

/* Icon Styling */
.zodiac-icon {
    font-size: 3rem;      /* Large icon size */
    color: #bca07d;       /* Gold/Bronze color from image */
    margin-bottom: 10px;
    line-height: 1;
}

/* Text Styling */
.zodiac-name {
    font-family: 'Playfair Display', serif; /* Matching the Serif font */
    font-size: 1.1rem;
    color: #000;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* =========================================
   RESPONSIVE ADJUSTMENTS
   ========================================= */

/* Tablet: 4 Columns */
@media (max-width: 1024px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Large Mobile: 3 Columns */
@media (max-width: 768px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .zodiac-icon {
        font-size: 2.5rem;
    }
    
    .zodiac-name {
        font-size: 1rem;
    }
}

/* Small Mobile: 2 Columns */
@media (max-width: 480px) {
    .zodiac-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .zodiac-box {
        padding: 20px 5px;
    }
}

/* =========================================
   COSMIC GUIDE SECTION
   ========================================= */
.cosmic-guide-section {
    padding: 80px 5%;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
}

.guide-container {
    display: flex;
    align-items: center; /* Vertically center the text with the image */
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Left Side: Text --- */
.guide-text {
    flex: 1; /* Takes up 50% space */
}

.guide-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: #000;
    line-height: 1.3;
    margin-bottom: 30px;
}

.guide-text p {
    font-size: 1rem;
    color: #555; /* Soft grey text */
    line-height: 1.7; /* Generous line height for readability */
    margin-bottom: 20px;
    text-align: left;
}

/* --- Right Side: Image --- */
.guide-image-wrapper {
    flex: 1; /* Takes up 50% space */
    display: flex;
    justify-content: flex-end; /* Aligns image to the right */
}

.guide-img {
    width: 100%;
    max-width: 500px; /* Limits image size so it doesn't get too huge */
    height: 500px;
    border-radius: 20px; /* The rounded corners from your image */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Responsive Design --- */
@media (max-width: 900px) {
    .guide-container {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 40px;
    }

    .guide-text {
        order: 1; /* Text comes first */
        text-align: left;
    }

    .guide-image-wrapper {
        order: 2; /* Image below text on mobile */
        justify-content: center;
        width: 100%;
    }

    .guide-img {
        max-width: 100%;
    }

    .guide-text h2 {
        font-size: 2rem;
    }
}

/* =========================================
   HOROSCOPE TEXT DETAILS SECTION
   ========================================= */
.horoscope-details-section {
    padding: 80px 20px;
    background-color: #fff;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

.details-container {
    max-width: 1160px; /* Readability width */
    margin: 0 auto;
}

/* Headings */
.main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
}

.highlight-gold {
    color: #b59566; /* The specific gold/bronze color from image */
}

.sub-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: #222;
    margin-top: 35px;
    margin-bottom: 15px;
}

/* Paragraphs */
.details-container p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: left; /* Image shows left-aligned text */
}

/* Lists */
.details-list {
    list-style-type: disc; /* Standard bullets */
    margin-left: 20px;
    padding-left: 15px;
    margin-bottom: 20px;
}

.details-list li {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.details-list li strong {
    color: #333; /* Darker color for bold parts */
}

/* Spacing between the two big blocks */
.spacer-large {
    height: 80px;
    width: 100%;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .horoscope-details-section {
        padding: 50px 20px;
    }

    .main-heading {
        font-size: 1.8rem;
    }

    .sub-heading {
        font-size: 1.4rem;
        margin-top: 25px;
    }

    .spacer-large {
        height: 50px;
    }
}

/* =========================================
   NEWSLETTER SECTION
   ========================================= */
.newsletter-section {
    background-color: #e8e4d9; /* The Beige Background */
    padding: 60px 5%;
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

/* Orange underline for heading */
.newsletter-text h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background-color: #e67e22;
    margin-top: 5px;
}

.newsletter-text p {
    font-family: 'Roboto', sans-serif;
    color: #333;
    font-size: 1rem;
    max-width: 400px;
}

/* The Pill-Shaped Form */
.newsletter-form-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.pill-form {
    background-color: #444; /* Dark Grey Container */
    border-radius: 50px;
    padding: 5px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pill-form input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    padding: 15px 20px;
    font-size: 1rem;
    flex: 1;
}

.pill-form input::placeholder {
    color: #bbb;
}

.pill-form button {
    background-color: #f36f21; /* Bright Orange Button */
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s;
}

.pill-form button:hover {
    background-color: #d35400;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.main-footer {
    background-color: #e67e22; /* Deep Orange Background */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* 4 Columns layout */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Column 1: About */
.about-col {
    text-align: center; /* Center aligning logo and text like image */
}

.footer-logo {
    height: 80px;
    margin-bottom: 15px;
    background: white; /* Optional: if logo needs white bg to pop */
    border-radius: 50%; /* Optional: if logo is circular */
    padding: 5px;
}

.about-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ffe6cc; /* Light orange-white text */
}

/* Column 2 & 3: Links */
.links-col, .services-col {
    text-align: center; /* Centering lists as per image */
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a, 
.services-col ul li {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s;
}

.services-col ul li {
    list-style-position: inside;
    list-style-type: disc; /* Bullet points for services */
}

.footer-col ul li a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Column 4: Contact */
.contact-col {
    text-align: left;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-row i {
    margin-top: 4px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #e67e22;
    background: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Copyright Bar */
.copyright-bar {
    background-color: #e6e6fa; /* Lavender/White tint */
    color: #333;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .newsletter-container {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form-wrapper {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Stack vertically on mobile */
        text-align: center;
        gap: 50px;
    }

    .contact-col {
        text-align: center;
    }

    .contact-row {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    /* Re-align bullets for mobile center */
    .services-col ul li {
        list-style: none; /* Remove bullets on mobile for cleaner look */
    }
}