@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* --- Base Styles & Variables --- */
:root {
    --primary-color: #ff7e00;
    /* Orange */
    --primary-hover: #e67100;
    --dark-bg: #11112b;
    /* Dark blue for hero/footer */
    --light-bg: #fdfcfb;
    --gray-bg: #f9f9f9;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --font-heading: 'Philosopher', sans-serif;
    --font-body: 'Philosopher', sans-serif;
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1,
h2,
h3 {
    font-size: 24px;
}

p {
    font-size: 18px !important;
    color: #000000 !important;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--gray-bg);
}

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

/* Typography Utilities */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

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

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

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

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* --- Header Section --- */
.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.top-bar {
    background-color: #212529;
    padding: 10px 0;
    color: var(--white);
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background-color: var(--primary-color);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    background-color: transparent;
    border-radius: 0 0 10px 10px;
    box-shadow: none;
    margin-top: -1px;
    /* overlap border */
}

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

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-weight: bold;
    color: var(--text-dark);
    font-size: 20px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background-color: #fdfbf8;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-position: center center;
    background-repeat: repeat;
    padding: 50px 0 70px;
    /* Reduced from 80px 0 120px */
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    color: var(--text-dark);
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features span {
    color: var(--white);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: var(--primary-color);
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-spin-img {
    border-radius: 50%;
    opacity: 0.9;
    mix-blend-mode: screen;
    max-width: 75%;
    animation: heroSpin 30s linear infinite;
    transform-origin: center center;
}

@keyframes heroSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --- About Section --- */
.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text .section-title::after {
    margin: 15px 0 25px 0;
    width: 50px;
    height: 2px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #777;
}

.about-text .btn {
    border-radius: 2px;
    padding: 10px 30px;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.contact-box-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-box {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px dashed rgba(255, 126, 0, 0.5);
    /* subtle dashed border around white circle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.contact-icon i {
    color: var(--primary-color);
}

.contact-details span {
    font-size: 0.95rem;
    opacity: 1;
    display: block;
    margin-bottom: 5px;
}

.contact-details h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.dots-decoration {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dots-decoration span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ddd;
}

.dots-decoration span:first-child {
    background-color: var(--primary-color);
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    padding: 20px;
    /* Space for the background decorations */
    z-index: 1;
}

.about-image-wrapper .bg-square {
    position: absolute;
    top: 40px;
    left: -20px;
    width: 90%;
    height: 90%;
    background-color: #f7f7f7;
    z-index: -1;
}

.about-image {
    position: relative;
    z-index: 2;
}

.about-image img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper .border-decoration {
    position: absolute;
    bottom: -10px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-bottom: 2px solid var(--primary-color);
    border-left: 2px solid var(--primary-color);
    z-index: 3;
}

/* --- Services Section Slider --- */
.services-slider-wrapper {
    position: relative;
    margin-top: 40px;
}

.services-slider-container {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    --visible-cards: 4;
    --gap: 30px;
}

.services-track .service-card {
    flex: 0 0 calc((100% - (var(--visible-cards) - 1) * var(--gap)) / var(--visible-cards));
    box-sizing: border-box;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(242, 114, 38, 0.3);
}

.slider-btn.prev-btn {
    left: -10px;
}

.slider-btn.next-btn {
    right: -10px;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background-color: #f5f5f5;
    color: #ccc;
    box-shadow: none;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot.active {
    width: 25px;
    border-radius: 5px;
    background-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .services-track {
        --visible-cards: 3;
    }
}

@media (max-width: 991px) {
    .services-track {
        --visible-cards: 2;
    }
}

@media (max-width: 575px) {
    .services-track {
        --visible-cards: 1;
        gap: 20px;
        --gap: 20px;
    }

    .slider-btn {
        display: none;
        /* Hide arrow buttons on small screens, users will swipe */
    }
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Background image overlay for active/hover */
.service-card::before {
    content: '';
    position: absolute;
    /* Make the pseudo-element larger so rotation doesn't reveal edges */
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: url('../images/chakra-bg.png');
    background-size: 70%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

@keyframes spinChakra {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.service-card:hover,
.service-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to bottom, #fcae47, #f27226);
}

.service-card:hover::before,
.service-card.active::before {
    visibility: visible;
    opacity: 0.15;
    animation: spinChakra 25s linear infinite;
}

.service-card .icon-wrapper {
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .icon-wrapper,
.service-card.active .icon-wrapper {
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    /* Or matching serif font */
    transition: var(--transition);
}

.service-card:hover h3,
.service-card.active h3 {
    color: var(--white);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #666;
    transition: var(--transition);
}

.service-card:hover p,
.service-card.active p {
    color: #ffffff;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--primary-color);
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
}

.service-card:hover .read-more,
.service-card.active .read-more {
    color: var(--white);
    border-bottom-color: var(--white);
}

/* --- Reflections Section --- */
.reflections {
    background-color: #fdfbf8;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-repeat: repeat;
    position: relative;
}

.reflections-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.reflections-image-box {
    flex: 5;
    position: relative;
}

.reflections-image-box img {
    width: 100%;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.play-btn::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    z-index: -1;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.reflections-info {
    flex: 7;
}

.reflections-info h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.info-paragraph {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 35px;
}

.info-paragraph p {
    color: #666;
    line-height: 1.8;
}

.experience-badge {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.experience-badge .icon-box {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 126, 0, 0.2);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text .small-text {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 5px;
}

.badge-text .large-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

/* --- Happy Customers Section --- */
.customers-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.customer-avatars {
    flex: 1;
    position: relative;
    height: 300px;
}

.avatar {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

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

/* Positioning avatars in a circle-like pattern */
.avatar-1 {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-color: var(--primary-color);
}

.avatar-2 {
    top: 20%;
    left: 40%;
}

.avatar-3 {
    top: 80%;
    left: 40%;
}

.avatar-4 {
    top: 35%;
    right: 10%;
}

.avatar-5 {
    top: 65%;
    right: 10%;
}

.testimonial-box {
    flex: 1;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.testimonial-box::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 6rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.testimonial-box p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.testimonial-box .author h4 {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-box .author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* --- Advice Section --- */
.advice-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advice-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.advice-card:hover {
    transform: translateY(-5px);
}

.advice-card i {
    font-size: 1.8rem;
    color: var(--white);
    background-color: var(--primary-color);
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin: 10px auto 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.advice-card i::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1.5px dashed var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    animation: spinChakra 10s linear infinite;
}

.advice-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advice-card p {
    font-size: 0.95rem;
}

/* --- Testimonials Section --- */
.testimonials {
    background-color: #fdfbf8;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-repeat: repeat;
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    color: var(--dark-color) !important;
}

.testimonials-title::after {
    background: var(--primary-color) !important;
    margin: 15px auto 0 !important;
}

.testimonials-subtitle {
    color: #666;
}

.testimonials-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.testimonials-track-container {
    flex: 1;
    overflow: hidden;
    padding: 65px 10px 30px 10px;
    margin: -65px -10px -30px -10px;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.testi-card {
    flex: 0 0 calc(50% - 15px);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 40px 35px 35px;
    text-align: center;
    position: relative;
}

.testi-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    margin-top: -65px;
}

.testi-avatar img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testi-quote-icon {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #fff;
}

.testi-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testi-name {
    color: var(--dark-color);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.testi-role {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Testimonial Buttons */
.testi-btn {
    background: transparent;
    border: none;
    color: #999;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.testi-btn:hover {
    color: var(--primary-color);
}

.testi-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

/* Testimonial Dots */
.testi-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testi-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testi-dot.active {
    background-color: var(--primary-color);
    width: 25px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testi-card {
        flex: 0 0 100%;
        margin-top: 65px;
    }

    .testi-btn {
        display: none;
    }
}

/* --- Blogs Section --- */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.blog-img {
    position: relative;
    height: 240px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-img .category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-content {
    padding: 25px;
}

.blog-content .meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.blog-content .meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.blog-content h3 a:hover {
    color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    background-color: var(--gray-bg);
    color: var(--text-dark);
    font-weight: 600;
}

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

/* --- Why Choose Us Section --- */
.why-choose-us {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 50%, #0d0d2b 100%);
    padding: 80px 0;
}

/* White text for ALL dark/overlay sections */
.why-choose-us p,
.why-choose-us h1,
.why-choose-us h2,
.why-choose-us h3,
.why-choose-us h4,
.services-cta h1,
.services-cta h2,
.services-cta h3,
.services-cta h4 {
    color: #ffffff !important;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background-image: url('../images/chakra-bg.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.07;
    animation: spinChakra 60s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/bg_astrology.png');
    background-size: 250px;
    background-repeat: repeat;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
}

.wcu-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 126, 0, 0.08) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.why-choose-us .section-title {
    color: #fff !important;
}

/* Separator */
.wcu-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 25px;
}

.wcu-separator .sep-line {
    width: 80px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-color));
}

.wcu-separator .sep-line:last-child {
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.wcu-separator i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Counters */
.wcu-counters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.wcu-counter-item {
    text-align: center;
    flex: 1;
}

.compass-icon {
    width: 130px;
    height: 130px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 2px solid rgba(255, 200, 100, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: radial-gradient(circle, rgba(255, 126, 0, 0.08) 0%, transparent 70%);
    transition: var(--transition);
}

.compass-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 200, 100, 0.25);
    animation: spinChakra 20s linear infinite;
}

.compass-icon::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 200, 100, 0.15);
}

/* Star decorations on compass */
.compass-icon .counter-num {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', serif;
    z-index: 2;
}

.wcu-counter-item h4 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 400;
}

.wcu-counter-item.highlight h4 {
    color: var(--primary-color);
}

.wcu-counter-item:hover .compass-icon {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 126, 0, 0.2);
}


/* --- Zodiac Sign Section --- */
.zodiac-section {
    background-color: var(--primary-color);
    padding: 80px 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

.zodiac-section h2 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.zodiac-divider {
    width: 80px;
    height: 3px;
    background-color: #fff;
    margin: 0 auto 25px;
}

.zodiac-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 45px;
}

.zodiac-form-container {
    background-color: #0a1c2a;
    padding: 40px;
    border-radius: 8px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.zodiac-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.zodiac-form .form-group {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.zodiac-form .submit-group {
    flex: 0 0 auto;
}

.zodiac-form label {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #ffffff !important;
    margin-bottom: 15px;
}

.zodiac-form input {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff !important;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.zodiac-form input:focus {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.zodiac-form input::placeholder {
    color: #ffffff !important;
    opacity: 1 !important;
}

.zodiac-form input::-webkit-datetime-edit-fields-wrapper,
.zodiac-form input::-webkit-datetime-edit-text,
.zodiac-form input::-webkit-datetime-edit-minute,
.zodiac-form input::-webkit-datetime-edit-hour,
.zodiac-form input::-webkit-datetime-edit-day,
.zodiac-form input::-webkit-datetime-edit-month,
.zodiac-form input::-webkit-datetime-edit-year,
.zodiac-form input::-webkit-datetime-edit-ampm {
    color: #ffffff !important;
}

.zodiac-form input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.7;
    cursor: pointer;
}

.btn-zodiac {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 16px 35px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-zodiac:hover {
    background-color: #fff;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .zodiac-form {
        flex-direction: column;
        align-items: stretch;
    }

    .zodiac-form .submit-group {
        margin-top: 10px;
    }
}

/* --- Footer --- */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 80px;
    margin-top: auto;
}

.footer p {
    color: #ffffff !important;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer ul li {
    margin-bottom: 15px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-list i {
    color: var(--primary-color);
    width: 25px;
    margin-top: 5px;
}

.links-list li {
    position: relative;
    padding-left: 20px;
}

.links-list li::before {
    content: "■";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
}

.links-list a {
    color: #ffffff;
}

.links-list a:hover {
    color: var(--primary-color);
}

.recent-posts .post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.recent-posts .post img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts .post a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.recent-posts .post a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #ff7e00;
    padding: 20px 0;
    font-size: 0.9rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .advice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-actions .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 50px;
    }

    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-grid {
        flex-direction: column-reverse;
    }

    .about-text .section-title::after {
        margin: 15px auto 0;
    }

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

    .customers-content {
        flex-direction: column;
    }

    .customer-avatars {
        width: 100%;
        height: 250px;
        margin-bottom: 30px;
    }

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

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

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

/* --- About Us Page CSS --- */

.page-header {
    background-color: #0a0a1a;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 40px 0 40px;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.breadcrumb {
    background: rgba(255, 255, 255, 0.2);
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    padding: 8px 30px;
    border-radius: 30px;
}

.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-box {
    background: #ff7e00;
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.contact-box-icon {
    background: #fff;
    color: #ff7e00;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
}

.wcu-stats-section {
    background-color: #fdfbf8;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-repeat: repeat;
    background-attachment: scroll;
    position: relative;
    border-top: 5px solid rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid rgba(0, 0, 0, 0.05);
}

.stats-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    color: var(--text-dark);
}

.stat-icon-bg {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    position: relative;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #ff7e00;
}

.stat-icon-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px dashed rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    animation: rotateDashedCircle 15s linear infinite;
}

@keyframes rotateDashedCircle {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.stat-item h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: #fdfbf8;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 126, 0, 0.1);
    color: #ff7e00;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.mvv-card h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.mvv-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-page-section {
    padding: 80px 0 0;
    position: relative;
    z-index: 10;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info-block .section-title {
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    border-bottom: none;
}

.contact-info-block .section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60%;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon-bg {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    color: var(--white);
    margin: 0;
}

.contact-icon-bg::before {
    border-color: var(--primary-color);
}

.contact-method-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-form-block {
    background-color: #f8f6f0;
    padding: 50px;
    border-radius: 5px;
    margin-bottom: -150px;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

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

.contact-map-section {
    position: relative;
    z-index: 1;
}

.contact-map-section iframe {
    display: block;
}

@media (max-width: 991px) {

    .about-page-grid,
    .contact-page-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-block {
        margin-bottom: 50px;
    }

    .contact-page-section {
        padding: 60px 0;
    }

    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .stats-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .stats-grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Our Team Section Styles
   ============================ */
.our-team-section {
    background-color: #fff;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-repeat: repeat;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 126, 0, 0.13);
}

.team-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4;
    background: #f9f6f0;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 126, 0, 0.85) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
}

.team-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #ff7e00;
    font-weight: 700;
    font-size: 0.8rem;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease;
}

.team-consult-btn:hover {
    background: #ff7e00;
    color: #fff;
}

.team-info {
    padding: 22px 20px 24px;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.team-role {
    display: inline-block;
    color: #ff7e00;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.team-exp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    background: #f9f6f0;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.team-exp i {
    color: #ff7e00;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 126, 0, 0.3);
    color: #ff7e00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.team-social a:hover {
    background: #ff7e00;
    color: #fff;
    border-color: #ff7e00;
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   Services Page Styles
   ============================ */
.services-intro {
    background-color: #f9f6f0;
}

.services-all-section {
    background-color: #f9f6f0;
}

.services-grid-4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Light Row Card */
.service-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
    padding: 40px 28px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7e00, #ffb347);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 126, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff4ea, #ffe0bf);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ff7e00;
    transition: background 0.35s ease, transform 0.35s ease;
    position: relative;
}

.service-card-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1.5px dashed rgba(255, 126, 0, 0.35);
    border-radius: 50%;
    animation: rotateDashedCircle 12s linear infinite;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #ff7e00, #ffb347);
    color: #fff;
    transform: scale(1.08);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
    color: var(--text-dark);
    font-family: var(--font-heading);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 22px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ff7e00;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 12px;
}

/* Dark Row */
.services-row-dark {
    background-color: #fdfbf8;
    background-image: url('../images/bg_astrology.png');
    background-size: 300px;
    background-repeat: repeat;
}

.service-card-dark {
    background: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
}

/* CTA Banner */
.services-cta {
    background: linear-gradient(135deg, #1a0533 0%, #0d0d2b 100%);
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.services-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 5, 30, 0.75);
}

.services-cta .container {
    position: relative;
    z-index: 2;
}

.services-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.services-cta p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Responsive */
@media (max-width: 1100px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
    }
}

.advice-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
    margin-top: auto;
    /* Push to bottom if flex container */
    padding-top: 15px;
    /* Add some space above */
}

.advice-read-more:hover {
    gap: 12px;
}

/* --- Service & Advice Cards Hover Astro Background --- */
.advice-card,
.service-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.advice-card::after,
.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background-image: url('../images/chakra-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: spinChakra 30s linear infinite;
    pointer-events: none;
}

.advice-card:hover,
.service-card:hover {
    background: linear-gradient(to bottom, #f59b2a, #ff7e00);
}

.advice-card:hover::after,
.service-card:hover::after {
    opacity: 0.18;
    /* Spinning astrology wheel shows up */
}

/* Adjust texts and links to white on hover */
.advice-card:hover h3,
.advice-card:hover h4,
.advice-card:hover p,
.advice-card:hover .advice-read-more,
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-card-link {
    color: #fff;
    position: relative;
    z-index: 2;
}

.advice-card:hover .advice-read-more,
.service-card:hover .service-card-link {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Adjust icons on hover to match screenshot */
.advice-card:hover i {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.advice-card:hover i::after {
    border: 1.5px solid #fff;
    animation: none;
    /* Solid border instead of spinning dashed */
}

.service-card:hover .service-card-icon {
    background: transparent;
    border: 2px solid #fff;
}

.service-card:hover .service-card-icon i {
    color: #fff;
}

.service-card:hover .service-card-icon::before {
    border: 1.5px solid #fff;
    animation: none;
}

/* --- Hero Section Custom Circle & Image --- */
.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center horizontally */
    position: relative;
    min-height: 420px;
    /* Reduced from 500px */
}

.hero-custom-circle {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    /* Centers perfectly inside relative parent */
    width: 400px;
    /* Reduced from 480px */
    height: 400px;
    border: 1.5px solid rgba(255, 126, 0, 0.3);
    border-radius: 50%;
    animation: heroSpin 25s linear infinite;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-dot {
    position: absolute;
    width: 18px;
    /* Reduced from 20px */
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 50%;
    /* Position the dots along the circle */
    transform: rotate(var(--r)) translate(200px);
    /* Reduced from 240px */
}

.circle-rays {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    /* Adjust inset slightly */
    border-radius: 50%;
    /* Sunburst radiating lines */
    background: repeating-conic-gradient(from 0deg,
            transparent 0deg,
            transparent 5deg,
            rgba(255, 126, 0, 0.2) 5deg,
            rgba(255, 126, 0, 0.2) 6deg);
    -webkit-mask-image: radial-gradient(circle, transparent 40%, black 100%);
    mask-image: radial-gradient(circle, transparent 40%, black 100%);
}

.hero-person-img {
    position: relative;
    z-index: 2;
    width: 320px;
    /* Reduced from 380px */
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    /* Match hero background to create a gap between lines and image */
    border: 12px solid #fdfbf8;
    /* Reduced border thickness slightly */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

@media (max-width: 991px) {
    .hero-image {
        margin-top: 40px;
        min-height: 420px;
    }

    .hero-custom-circle {
        width: 400px;
        height: 400px;
    }

    .circle-dot {
        transform: rotate(var(--r)) translate(200px);
    }

    .hero-person-img {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        min-height: 320px;
    }

    .hero-custom-circle {
        width: 300px;
        height: 300px;
    }

    .circle-dot {
        width: 15px;
        height: 15px;
        transform: rotate(var(--r)) translate(150px);
    }

    .hero-person-img {
        width: 250px;
        height: 250px;
        border-width: 10px;
    }
}

/* ============================
   Our Team Page Styles
   ============================ */
.team-page-section {
    background-color: #fcfaf5;
    /* Slightly warmer cream background */
}

.team-horizontal-layout {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Alternating background for rows */
.team-row {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(131, 42, 174, 0.07);
    border-left: 6px solid #ff7e00;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(131, 42, 174, 0.12);
}

/* Decorative orange circle watermark in background */
.team-row::before {
    content: '☽';
    position: absolute;
    font-size: 200px;
    color: rgba(255, 126, 0, 0.04);
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    line-height: 1;
}

.team-row.reverse {
    flex-direction: row-reverse;
    border-left: none;
    border-right: 6px solid #832aae;
}

.team-row.reverse::before {
    right: auto;
    left: -20px;
}

/* Image Column */
.team-img-col {
    flex: 0 0 380px;
}

.team-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.team-img-wrapper img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    display: block;
}

.team-img-badge {
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #ff7e00, #e65c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(255, 126, 0, 0.4);
    border: 3px solid #fff;
}

/* Content Column */
.team-content-col {
    flex: 1;
    text-align: left;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.team-tag {
    background: #fff4eb;
    color: #ff7e00;
    border: 1px solid #ffd9b3;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-content-col h3 {
    color: #832aae;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin: 0 0 12px 0;
    letter-spacing: 0.5px;
}

.team-content-col .role {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0e0ff;
}

.team-content-col p {
    font-size: 1rem;
    color: #666;
    line-height: 1.85;
    margin-bottom: 30px;
}

.team-page-buttons {
    display: flex;
    gap: 15px;
}

.status-btn {
    display: inline-block;
    padding: 10px 35px;
    font-size: 0.9rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    border-radius: 6px;
    text-align: center;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    min-width: 140px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.status-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-online {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.btn-busy {
    background: linear-gradient(135deg, #cb2d3e, #ef473a);
}

.btn-offline {
    background: linear-gradient(135deg, #536976, #292e49);
}

/* Responsive Team Page Layout */
@media (max-width: 1100px) {
    .team-img-col {
        flex: 0 0 300px;
    }

    .team-content-col h3 {
        font-size: 1.8rem;
    }

    .team-row {
        padding: 35px;
        gap: 40px;
    }
}

@media (max-width: 991px) {

    .team-row,
    .team-row.reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        border-left: none;
        border-right: none;
        border-top: 6px solid #ff7e00;
    }

    .team-row.reverse {
        border-top-color: #832aae;
    }

    .team-img-col {
        flex: 0 0 auto;
        width: 100%;
        max-width: 350px;
    }

    .team-content-col {
        text-align: center;
    }

    .team-tags {
        justify-content: center;
    }

    .team-page-buttons {
        justify-content: center;
    }

    .team-row::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .team-row {
        padding: 20px;
    }

    .team-page-buttons {
        flex-direction: column;
        align-items: center;
    }

    .team-content-col h3 {
        font-size: 1.5rem;
    }
}

/* Dropdown Menu */
.nav-links .dropdown {
    position: relative;
}

.nav-links .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-links .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-links .dropdown-menu li {
    display: block;
    margin: 0;
}

.nav-links .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-links .dropdown-menu a:hover {
    background-color: var(--primary-color);
    padding-left: 25px;
    color: var(--white);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.floating-buttons a {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white !important;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.floating-buttons a:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    background-color: #25D366;
}

.float-call {
    background-color: #c89531;
    /* Golden color matching the image */
}.premium-cta p { color: #fff !important; }
.inner-page-header { padding: 60px 0 40px !important; }

/* --- Top Bar --- */
.top-bar {
    background: #1a0533;
    color: #fff;
    padding: 8px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar-left a {
    color: #fff;
    margin-right: 20px;
    text-decoration: none;
    transition: 0.3s;
}
.top-bar-left a i {
    color: var(--primary-color);
    margin-right: 8px;
}
.top-bar-left a:hover {
    color: var(--primary-color);
}
.top-bar-right a {
    color: #fff;
    margin-left: 15px;
    transition: 0.3s;
    font-size: 1.1rem;
}
.top-bar-right a:hover {
    color: var(--primary-color);
}
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .top-bar-left a {
        margin: 0 10px;
        display: inline-block;
        margin-bottom: 5px;
    }
}

/* --- Book Consultation Button --- */
.nav-links {
    align-items: center;
}
.nav-btn {
    margin: 0;
}
.btn-book {
    background-color: var(--primary-color);
    color: #fff !important;
    padding: 6px 15px;
    border-radius: 30px !important;
    font-weight: 600;
    font-size: 17px !important;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(255,126,0,0.3);
    transition: all 0.3s ease;
}
.btn-book i {
    font-size: 19px !important;
}
.btn-book:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
    .nav-btn { margin-left: 0; margin-top: 15px; }
    .btn-book { width: 100%; justify-content: center; }
}

/* --- Mobile App Bottom Navigation --- */
.mobile-bottom-nav {
    display: none; /* hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: space-around;
    padding: 10px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.75rem;
    gap: 4px;
    transition: 0.3s;
}

.bottom-nav-item i {
    font-size: 1.2rem;
    color: var(--text-light);
}

.bottom-nav-item:hover, .bottom-nav-item:active {
    color: var(--primary-color);
}

.bottom-nav-item:hover i, .bottom-nav-item:active i {
    color: var(--primary-color);
}

/* --- Mobile Specific Responsiveness --- */
@media (max-width: 768px) {
    /* Hide top bar contact info to save space, rely on bottom nav */
    .top-bar {
        display: none;
    }
    
    /* Ensure body doesn't get hidden behind the bottom nav */
    body {
        padding-bottom: 70px;
    }
    
    .mobile-bottom-nav {
        display: flex;
    }
    
    /* Make the mobile menu button easier to tap */
    .mobile-menu-btn {
        font-size: 28px;
        color: #fff;
    }
    
    /* Ensure no horizontal scrolling */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    /* Reduce hero text sizes for mobile */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
}

/* --- Spinning Zodiac Image --- */
.spinning-zodiac {
    border-radius: 50%;
    animation: spin-slow 20s linear infinite;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Global Mobile App-like Responsiveness --- */
@media (max-width: 768px) {
    /* 1. Prevent Horizontal Scroll and add baseline padding */
    html, body {
        overflow-x: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* 2. Consistent section margins and paddings */
    section {
        padding: 40px 0 !important;
    }

    /* 3. Stack all flex and grid layouts */
    .hero-content,
    .about-grid,
    .services-grid,
    .reflections-wrapper,
    .advice-grid,
    .stats-container,
    .footer-container,
    .wcu-stats-container,
    .mission-vision-wrapper {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .services-track {
        --visible-cards: 1 !important;
        gap: 20px !important;
        --gap: 20px !important;
        display: flex !important;
        flex-direction: row !important; /* Ensure it stays a horizontal row for the slider */
    }

    /* 4. Reset width and flex properties for all children of flex/grid containers */
    .hero-text, .hero-image,
    .about-text, .about-image,
    .reflections-image-box, .reflections-info,
    .footer-section,
    .mission-box, .vision-box,
    .advice-card {
        flex: 1 1 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* 5. Typography adjustments for mobile */
    h1 { font-size: 2.2rem !important; }
    h2, .section-title { font-size: 1.8rem !important; }
    h3 { font-size: 1.4rem !important; }
    h4 { font-size: 1.2rem !important; }
    p { font-size: 1rem !important; line-height: 1.6 !important; }

    /* 6. Alignment for elements that look better centered on mobile */
    .hero-text,
    .about-text,
    .reflections-info,
    .section-header {
        text-align: center !important;
    }

    /* 7. Image responsiveness */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* 8. Buttons full width on mobile like an app */
    .btn {
        width: 100% !important;
        display: block !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }

    /* 9. Reduce Hero Gap */
    .hero-content {
        gap: 15px !important;
    }
    
    .hero-image {
        min-height: 280px !important;
        margin-top: 10px !important;
    }
    
    .hero-custom-circle {
        width: 280px !important;
        height: 280px !important;
    }
    
    .hero-person-img {
        width: 220px !important;
        height: 220px !important;
    }
    
    /* 10. Our Team Native Slider */
    .team-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 20px !important;
        padding-bottom: 20px !important;
        scrollbar-width: none; /* Firefox */
    }
    
    .team-grid::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }

    .team-grid .team-card {
        flex: 0 0 85% !important; /* Show 1 card and peek of the next */
        max-width: 85% !important;
        scroll-snap-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    
    /* 11. Stats Counters 2x2 Grid */
    .wcu-counters {
        flex-wrap: wrap !important;
        gap: 30px 10px !important;
        justify-content: center !important;
    }
    
    .wcu-counter-item {
        flex: 0 0 45% !important; /* 2 items per row */
        max-width: 45% !important;
    }
    
    .compass-icon {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 15px !important;
    }
    
    .compass-icon .counter-num {
        font-size: 2rem !important;
    }
    
    /* 12. Reduce Testimonials Gap */
    .testimonials .section-header {
        margin-bottom: -10px !important;
    }
    
    .testimonials-wrapper {
        margin-top: 0px !important;
        padding-top: 5px !important;
    }
    
    /* 13. Show Book Consultation Button on Mobile Header */
    .nav-links {
        display: flex !important;
        gap: 10px !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    .nav-links > li {
        display: none !important;
    }
    .nav-links > li.nav-btn {
        display: block !important;
        margin-top: 0 !important;
    }
    .btn-book {
        padding: 6px 12px !important;
        font-size: 13px !important;
        width: auto !important;
        justify-content: flex-start !important;
    }
    .btn-book i {
        font-size: 14px !important;
    }

    /* 14. Mobile Menu Toggle State */
    .nav-links.active {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        width: 100% !important;
        background: #fff !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
    }
    
    .nav-links.active > li {
        display: block !important;
        width: 100% !important;
        margin-bottom: 15px !important;
    }
}


/* Extracted <style> blocks */
.inner-page-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 100%);
            position: relative;
            padding: 120px 0 80px;
            text-align: center;
            overflow: hidden;
        }

        .inner-page-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background-image: url('images/chakra-bg.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: spinChakra 60s linear infinite;
        }

        .inner-page-header h1 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 2;
        }

        .breadcrumb a {
            color: var(--primary-color);
            font-weight: 500;
        }

        .premium-section {
            padding: 100px 0;
            position: relative;
        }

        /* Intro Layout */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-text-box {
            position: relative;
        }

        .intro-text-box h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .intro-text-box p {
            color: #666;
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.5s ease;
        }

        .image-frame img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.8s ease;
        }

        .image-frame:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 70px rgba(0, 0, 0, 0.2);
        }

        .image-frame:hover img {
            transform: scale(1.05);
        }

        .image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255, 126, 0, 0.5);
            border-radius: 20px;
            pointer-events: none;
            margin: 15px;
        }

        /* Dark Section (What is Vedic Astrology) */
        .dark-mystic-section {
            background: linear-gradient(135deg, #1a0533 0%, #0d0d2b 100%);
            color: #fff;
            text-align: center;
        }

        .dark-mystic-section h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 30px;
        }

        .dark-mystic-section p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.9;
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .separator-icon {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* Services Grid Premium */
        .premium-bg {
            background-color: #fdfbf8;
            background-image: url('images/bg_astrology.png');
            background-size: 300px;
        }

        .services-premium-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .srv-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }

        .srv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 126, 0, 0.05) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .srv-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(255, 126, 0, 0.15);
        }

        .srv-card:hover::before {
            opacity: 1;
        }

        .srv-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 126, 0, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }

        .srv-card:hover .srv-icon {
            background: var(--primary-color);
            color: #fff;
        }

        .srv-card h4 {
            font-size: 1.3rem;
            font-family: 'Philosopher', sans-serif;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        @media (max-width: 1200px) {
            .services-premium-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .services-premium-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .services-premium-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Two Columns List */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .list-box {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
            border-top: 4px solid var(--primary-color);
        }

        .list-box h3 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 25px;
        }

        .custom-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .custom-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #666;
            line-height: 1.7;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .custom-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Final CTA */
        .premium-cta {
            background: linear-gradient(rgba(13, 13, 43, 0.9), rgba(26, 5, 51, 0.9)), url('images/vedic-astrology.jpg') center/cover fixed;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            border-top: 5px solid var(--primary-color);
        }

        .premium-cta h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            color: #fff;
        }

        .premium-cta p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 991px) {

            .intro-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
.inner-page-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 100%);
            position: relative;
            padding: 120px 0 80px;
            text-align: center;
            overflow: hidden;
        }

        .inner-page-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background-image: url('images/chakra-bg.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: spinChakra 60s linear infinite;
        }

        .inner-page-header h1 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 2;
        }

        .breadcrumb a {
            color: var(--primary-color);
            font-weight: 500;
        }

        .premium-section {
            padding: 100px 0;
            position: relative;
        }

        /* Intro Layout */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .intro-text-box {
            position: relative;
        }

        .intro-text-box h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .intro-text-box p {
            color: #666;
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .image-frame img {
            width: 100%;
            display: block;
            transition: transform 0.7s ease;
        }

        .image-frame:hover img {
            transform: scale(1.05);
        }

        .image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255, 126, 0, 0.5);
            border-radius: 20px;
            pointer-events: none;
            margin: 15px;
        }

        /* Dark Section (What is Vedic Astrology) */
        .dark-mystic-section {
            background: linear-gradient(135deg, #1a0533 0%, #0d0d2b 100%);
            color: #fff;
            text-align: center;
        }

        .dark-mystic-section h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 30px;
        }

        .dark-mystic-section p {
            color: #ffffff !important;
            line-height: 1.9;
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
        }

        .separator-icon {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px;
        }

        /* Services Grid Premium */
        .premium-bg {
            background-color: #fdfbf8;
            background-image: url('images/bg_astrology.png');
            background-size: 300px;
        }

        .services-premium-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .srv-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 30px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center;
        }

        .srv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 126, 0, 0.05) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .srv-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(255, 126, 0, 0.15);
        }

        .srv-card:hover::before {
            opacity: 1;
        }

        .srv-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 126, 0, 0.1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }

        .srv-card:hover .srv-icon {
            background: var(--primary-color);
            color: #fff;
        }

        .srv-card h4 {
            font-size: 1.3rem;
            font-family: 'Philosopher', sans-serif;
            color: var(--text-dark);
            margin-bottom: 0;
        }

        @media (max-width: 1200px) {
            .services-premium-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 991px) {
            .services-premium-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .services-premium-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Two Columns List */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .list-box {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
            border-top: 4px solid var(--primary-color);
        }

        .list-box h3 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .list-box p {
            color: #666;
            margin-bottom: 30px;
            line-height: 1.7;
        }

        .custom-list {
            list-style: none;
            padding: 0;
        }

        .custom-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #444;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .custom-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.1rem;
        }

        /* Final CTA */
        .premium-cta {
            background: linear-gradient(rgba(13, 13, 43, 0.9), rgba(26, 5, 51, 0.9)), url('images/vedic-astrology.jpg') center/cover fixed;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            border-top: 5px solid var(--primary-color);
        }

        .premium-cta h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            color: #fff;
        }

        .premium-cta p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 991px) {

            .intro-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
.inner-page-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 100%);
            position: relative;
            padding: 120px 0 80px;
            text-align: center;
            overflow: hidden
        }

        .inner-page-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background-image: url('images/chakra-bg.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .1;
            animation: spinChakra 60s linear infinite
        }

        .inner-page-header h1 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(255, 255, 255, .7);
            position: relative;
            z-index: 2
        }

        .breadcrumb a {
            color: var(--primary-color);
            font-weight: 500
        }
.inner-page-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 100%);
            position: relative;
            padding: 120px 0 80px;
            text-align: center;
            overflow: hidden
        }

        .inner-page-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background-image: url('images/chakra-bg.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .1;
            animation: spinChakra 60s linear infinite
        }

        .inner-page-header h1 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(255, 255, 255, .7);
            position: relative;
            z-index: 2
        }

        .breadcrumb a {
            color: var(--primary-color);
            font-weight: 500
        }

        .premium-section {
            padding: 100px 0;
            position: relative
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }

        .intro-text-box h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2
        }

        .intro-text-box p {
            color: #666;
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 20px
        }

        .image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
            transition: all .5s ease
        }

        .image-frame img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform .8s ease
        }

        .image-frame:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 70px rgba(0, 0, 0, .2)
        }

        .image-frame:hover img {
            transform: scale(1.05)
        }

        .image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255, 126, 0, .5);
            border-radius: 20px;
            pointer-events: none;
            margin: 15px
        }

        .premium-bg {
            background-color: #fdfbf8;
            background-image: url('images/bg_astrology.png');
            background-size: 300px
        }

        .services-premium-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px
        }

        .srv-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 30px;
            border: 1px solid rgba(0, 0, 0, .05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
            transition: all .4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center
        }

        .srv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 126, 0, .05) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity .4s ease
        }

        .srv-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(255, 126, 0, .15)
        }

        .srv-card:hover::before {
            opacity: 1
        }

        .srv-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 126, 0, .1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all .4s ease
        }

        .srv-card:hover .srv-icon {
            background: var(--primary-color);
            color: #fff
        }

        .srv-card h4 {
            font-size: 1.3rem;
            font-family: 'Philosopher', sans-serif;
            color: var(--text-dark);
            margin-bottom: 0
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px
        }

        .list-box {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
            border-top: 4px solid var(--primary-color)
        }

        .list-box h3 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 25px
        }

        .custom-list {
            list-style: none;
            padding: 0;
            margin: 0
        }

        .custom-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #666;
            line-height: 1.7;
            font-weight: 500;
            font-size: 1.05rem
        }

        .custom-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.1rem
        }

        .premium-cta {
            background: linear-gradient(rgba(13, 13, 43, .9), rgba(26, 5, 51, .9)), url('images/vedic-astrology.jpg') center/cover fixed;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            border-top: 5px solid var(--primary-color)
        }

        .premium-cta h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            color: #fff
        }

        .premium-cta p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .8)
        }

        @media(max-width:1200px) {
            .services-premium-grid {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:991px) {

            .intro-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .services-premium-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:576px) {
            .services-premium-grid {
                grid-template-columns: 1fr
            }
        }
.inner-page-header {
            background: linear-gradient(135deg, #0d0d2b 0%, #1a0533 100%);
            position: relative;
            padding: 120px 0 80px;
            text-align: center;
            overflow: hidden
        }

        .inner-page-header::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background-image: url('images/chakra-bg.png');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            opacity: .1;
            animation: spinChakra 60s linear infinite
        }

        .inner-page-header h1 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3.5rem;
            color: #fff;
            margin-bottom: 15px;
            position: relative;
            z-index: 2
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 1rem;
            color: rgba(255, 255, 255, .7);
            position: relative;
            z-index: 2
        }

        .breadcrumb a {
            color: var(--primary-color);
            font-weight: 500
        }

        .premium-section {
            padding: 100px 0;
            position: relative
        }

        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center
        }

        .intro-text-box h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            line-height: 1.2
        }

        .intro-text-box p {
            color: #666;
            line-height: 1.9;
            font-size: 1.1rem;
            margin-bottom: 20px
        }

        .image-frame {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
            transition: all .5s ease
        }

        .image-frame img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform .8s ease
        }

        .image-frame:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 70px rgba(0, 0, 0, .2)
        }

        .image-frame:hover img {
            transform: scale(1.05)
        }

        .image-frame::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255, 126, 0, .5);
            border-radius: 20px;
            pointer-events: none;
            margin: 15px
        }

        .dark-mystic-section {
            background: linear-gradient(135deg, #1a0533 0%, #0d0d2b 100%);
            color: #fff;
            text-align: center
        }

        .dark-mystic-section h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 30px
        }

        .dark-mystic-section p {
            color: rgba(255, 255, 255, .8);
            line-height: 1.9;
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto
        }

        .separator-icon {
            color: var(--primary-color);
            font-size: 2rem;
            margin-bottom: 20px
        }

        .premium-bg {
            background-color: #fdfbf8;
            background-image: url('images/bg_astrology.png');
            background-size: 300px
        }

        .services-premium-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px
        }

        .srv-card {
            background: #fff;
            border-radius: 15px;
            padding: 35px 30px;
            border: 1px solid rgba(0, 0, 0, .05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
            transition: all .4s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            text-align: center
        }

        .srv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 126, 0, .05) 100%);
            z-index: -1;
            opacity: 0;
            transition: opacity .4s ease
        }

        .srv-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(255, 126, 0, .15)
        }

        .srv-card:hover::before {
            opacity: 1
        }

        .srv-icon {
            width: 70px;
            height: 70px;
            background: rgba(255, 126, 0, .1);
            color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin: 0 auto 20px;
            transition: all .4s ease
        }

        .srv-card:hover .srv-icon {
            background: var(--primary-color);
            color: #fff
        }

        .srv-card h4 {
            font-size: 1.3rem;
            font-family: 'Philosopher', sans-serif;
            color: var(--text-dark);
            margin-bottom: 0
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px
        }

        .list-box {
            background: #fff;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
            border-top: 4px solid var(--primary-color)
        }

        .list-box h3 {
            font-family: 'Philosopher', sans-serif;
            font-size: 2rem;
            color: var(--text-dark);
            margin-bottom: 25px
        }

        .custom-list {
            list-style: none;
            padding: 0;
            margin: 0
        }

        .custom-list li {
            position: relative;
            padding-left: 35px;
            margin-bottom: 15px;
            color: #666;
            line-height: 1.7;
            font-weight: 500;
            font-size: 1.05rem
        }

        .custom-list li i {
            position: absolute;
            left: 0;
            top: 4px;
            color: var(--primary-color);
            font-size: 1.1rem
        }

        .premium-cta {
            background: linear-gradient(rgba(13, 13, 43, .9), rgba(26, 5, 51, .9)), url('images/vedic-astrology.jpg') center/cover fixed;
            padding: 100px 0;
            text-align: center;
            color: #fff;
            border-top: 5px solid var(--primary-color)
        }

        .premium-cta h2 {
            font-family: 'Philosopher', sans-serif;
            font-size: 3rem;
            margin-bottom: 25px;
            color: #fff
        }

        .premium-cta p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto 40px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .8)
        }

        @media(max-width:1200px) {
            .services-premium-grid {
                grid-template-columns: repeat(3, 1fr)
            }
        }

        @media(max-width:991px) {

            .intro-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 40px
            }

            .services-premium-grid {
                grid-template-columns: repeat(2, 1fr)
            }
        }

        @media(max-width:576px) {
            .services-premium-grid {
                grid-template-columns: 1fr
            }
        }

/* Extracted inline styles */
.custom-style-1 {
    max-height: 50px;
}
.custom-style-2 {
    color:var(--primary-color);font-weight:600;letter-spacing:2px;text-transform:uppercase;margin-bottom:10px;display:block;
}
.custom-style-3 {
    text-align:center;max-width:700px;margin:0 auto;
}
.custom-style-4 {
    font-family:'Philosopher',sans-serif;font-size:2.8rem;color:var(--text-dark);margin-bottom:20px;
}
.custom-style-5 {
    color:#666;font-size:1.1rem;line-height:1.8;
}
.custom-style-6 {
    background-color:#fff;
}
.custom-style-7 {
    color:var(--text-light);max-width:600px;margin:15px auto 40px;font-size:1.05rem;line-height:1.8;
}
.custom-style-8 {
    color: #ffffff; margin-bottom: 20px; line-height: 1.6; font-size: 15px;
}
.custom-style-9 {
    display: flex; gap: 15px;
}
.custom-style-10 {
    width: 35px; height: 35px; background-color: var(--primary-color); display: flex; justify-content: center; align-items: center; border-radius: 5px; color: white;
}
.custom-style-11 {
    --r: 0deg;
}
.custom-style-12 {
    --r: 60deg;
}
.custom-style-13 {
    --r: 120deg;
}
.custom-style-14 {
    --r: 180deg;
}
.custom-style-15 {
    --r: 240deg;
}
.custom-style-16 {
    --r: 300deg;
}
.custom-style-17 {
    border-radius: 15px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.custom-style-18 {
    color: coral;
}
.custom-style-19 {
    color: var(--text-light); max-width: 600px; margin: 15px auto 0;
}
.custom-style-20 {
    position:relative; z-index:2;
}
.custom-style-21 {
    color:#fff; font-family:'Philosopher',sans-serif; font-size:2.8rem;
}
.custom-style-22 {
    color:rgba(255,255,255,0.7); max-width:800px; margin:0 auto;
}
.custom-style-23 {
    position: relative; z-index: 2;
}
.custom-style-24 {
    color: #fff; font-size: 3.5rem; margin-bottom: 10px;
}
.custom-style-25 {
    color: #ff7e00;
}
.custom-style-26 {
    color: #ff7e00; text-decoration: none;
}
.custom-style-27 {
    color: #fff; margin: 0 10px;
}
.custom-style-28 {
    color: #fff;
}
.custom-style-29 {
    color: var(--text-light); margin-bottom: 30px; max-width: 400px;
}
.custom-style-30 {
    font-size: 1.5rem;
}
.custom-style-31 {
    color: #ff7e00; margin-bottom: 5px;
}
.custom-style-32 {
    margin-bottom: 30px; border-bottom: none;
}
.custom-style-33 {
    width: 100%; text-transform: uppercase;
}
.custom-style-34 {
    border:0;
}
.custom-style-35 {
    color: #fff; font-size: 3rem; margin-bottom: 10px;
}
.custom-style-36 {
    margin-bottom: 60px;
}
.custom-style-37 {
    color: var(--text-dark);
}
.custom-style-38 {
    margin: 10px 0 20px;
}
.custom-style-39 {
    color: #ff7e00; font-size: 1.5rem;
}
.custom-style-40 {
    max-width: 650px; margin: 0 auto; color: var(--text-light);
}
.custom-style-41 {
    color:#ff7e00;
}
.custom-style-42 {
    background:#f0e8f7; object-fit:contain;
}
.custom-style-43 {
    color:var(--primary-color); font-weight:600; letter-spacing:2px; text-transform:uppercase; margin-bottom:10px; display:block;
}
.custom-style-44 {
    background-color: #fff;
}
.custom-style-45 {
    font-family: 'Philosopher', sans-serif; font-size: 2.8rem; color: var(--text-dark); margin-bottom: 20px;
}
.custom-style-46 {
    color: var(--text-light); max-width: 600px; margin: 15px auto 40px; font-size: 1.05rem; line-height: 1.8;
}
.custom-style-47 {
    color: #ffffff;
}
.custom-style-48 {
    text-align:center; max-width:700px; margin:0 auto;
}
.custom-style-49 {
    font-family:'Philosopher',sans-serif; font-size:2.8rem; color:var(--text-dark); margin-bottom:20px;
}
.custom-style-50 {
    color:#666; font-size:1.1rem; line-height:1.8;
}
.custom-style-51 {
    padding: 18px 45px; font-size: 1.2rem; border-radius: 30px;
}
.custom-style-52 {
    max-width: 100%; border-radius: 10px;
}
.custom-style-53 {
    color: var(--text-dark); margin-bottom: 15px;
}
.custom-style-54 {
    margin-bottom: 20px;
}
.custom-style-55 {
    color: var(--text-light); max-width: 700px; margin: 0 auto 50px;
}
.custom-style-56 {
    color: var(--text-light); max-width: 650px; margin: 20px auto 0;
}
.custom-style-57 {
    padding-top: 0;
}
.custom-style-58 {
    text-transform: uppercase; padding: 15px 40px; font-size: 1rem;
}
.custom-style-59 {
    margin-right: 8px;
}
.custom-style-60 {
    text-align:center; max-width:800px; margin:0 auto 50px;
}
.custom-style-61 {
    margin-top:20px; color:#666;
}
.custom-style-62 {
    margin-bottom:15px; color:#666;
}
.custom-style-63 {
    text-align:center; max-width:800px; margin:40px auto 0;
}
.custom-style-64 {
    background-color: #f8f9fa;
}
.custom-style-65 {
    text-align:center; margin-bottom:50px;
}
.custom-style-66 {
    grid-template-columns: repeat(4, 1fr);
}
.custom-style-67 {
    font-family:'Philosopher',sans-serif; font-size:2.2rem; font-weight:bold;
}
.custom-style-68 {
    margin-top:10px; color:#666; font-size:0.95rem;
}

/* Team Features Grid */
.team-features {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.team-feature-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 126, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 126, 0, 0.3);
}

.team-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.team-feature-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .team-features {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .team-features {
        grid-column: span 1;
    }
}

/* Fallback for gap in flexbox */
.team-horizontal-layout .team-row:not(:last-child) {
    margin-bottom: 50px;
}
