/* Service Hero Section Styles */
:root {
    --primary-gold: #F8A922;
    --primary-red: #9C1414;
    --primary-blue: #0011ff;
    --text-white: #ffffff;
    --text-dark: #1a1a1a;
    --bg-dark: #0f1419;
    --bg-cosmic: linear-gradient(135deg, #0f1419 0%, #1a1f35 50%, #0f1419 100%);
}

/* Hero Section Container */
.service-hero {
    position: relative;
    background: var(--bg-cosmic);
    padding: 30px 0 80px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.service-hero__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.service-hero__content {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Badge */
.service-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(248, 169, 34, 0.1) 0%, rgba(156, 20, 20, 0.1) 100%);
    border: 1px solid rgba(248, 169, 34, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(248, 169, 34, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(248, 169, 34, 0.2);
    }
}

.service-hero__badge-icon {
    width: 20px;
    height: 20px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Title */
.service-hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(248, 169, 34, 0.3);
}

.service-hero__title-highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.service-hero__title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold) 0%, var(--primary-red) 100%);
    animation: slideIn 1s ease-out 0.5s both;
}

@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

/* Description */
.service-hero__description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.service-hero__description strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Stats */
.service-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.service-hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(248, 169, 34, 0.05);
    border: 1px solid rgba(248, 169, 34, 0.2);
    padding: 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.service-hero__stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(248, 169, 34, 0.2);
    border-color: var(--primary-gold);
}

.service-hero__stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--primary-red) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-hero__stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-white);
}

.service-hero__stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.service-hero__stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
}

/* CTA Buttons */
.service-hero__cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-hero__button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-hero__button:hover::before {
    width: 300px;
    height: 300px;
}

.service-hero__button-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.service-hero__button--primary {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #e09612 100%);
    color: var(--text-dark);
    box-shadow: 0 10px 30px rgba(248, 169, 34, 0.4);
}

.service-hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(248, 169, 34, 0.6);
}

.service-hero__button--secondary {
    background: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--text-white);
}

.service-hero__button--secondary:hover {
    background: rgba(248, 169, 34, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(248, 169, 34, 0.3);
}

/* Right Image Section */
.service-hero__image-wrapper {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-hero__image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.service-hero__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
}

/* Cosmic Background Effect */
.service-hero__cosmic-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(248, 169, 34, 0.2) 0%, transparent 70%);
    animation: cosmicRotate 20s linear infinite;
    z-index: 0;
}

@keyframes cosmicRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Floating Elements */
.service-hero__floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(248, 169, 34, 0.2) 0%, rgba(156, 20, 20, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(248, 169, 34, 0.3);
    z-index: 2;
}

.service-hero__floating-element svg {
    width: 30px;
    height: 30px;
    stroke: var(--primary-gold);
}

.service-hero__floating-element--1 {
    top: 10%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
}

.service-hero__floating-element--2 {
    top: 60%;
    right: 5%;
    animation: float 4s ease-in-out infinite 0.5s;
}

.service-hero__floating-element--3 {
    bottom: 15%;
    left: 5%;
    animation: float 3.5s ease-in-out infinite 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animated Stars Background */
.service-hero__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.service-hero__stars::before,
.service-hero__stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--text-white);
    border-radius: 50%;
    box-shadow: 
        100px 100px 0 var(--text-white),
        200px 300px 0 var(--text-white),
        400px 150px 0 var(--text-white),
        600px 400px 0 var(--text-white),
        800px 250px 0 var(--text-white),
        1000px 350px 0 var(--text-white),
        1200px 150px 0 var(--text-white),
        300px 500px 0 var(--text-white),
        500px 600px 0 var(--text-white),
        700px 200px 0 var(--text-white),
        150px 450px 0 var(--text-white),
        350px 200px 0 var(--text-white),
        550px 450px 0 var(--text-white),
        750px 550px 0 var(--text-white),
        950px 100px 0 var(--text-white);
    animation: twinkle 3s ease-in-out infinite;
}

.service-hero__stars::after {
    animation-delay: 1.5s;
    box-shadow: 
        50px 150px 0 var(--primary-gold),
        250px 250px 0 var(--primary-gold),
        450px 100px 0 var(--primary-gold),
        650px 350px 0 var(--primary-gold),
        850px 200px 0 var(--primary-gold),
        1050px 300px 0 var(--primary-gold),
        1250px 100px 0 var(--primary-gold),
        350px 450px 0 var(--primary-gold),
        550px 550px 0 var(--primary-gold),
        750px 150px 0 var(--primary-gold);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .service-hero__container {
        gap: 40px;
    }

    .service-hero__title {
        font-size: 42px;
    }

    .service-hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .service-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-hero__title {
        font-size: 36px;
    }

    .service-hero__description {
        font-size: 16px;
    }

    .service-hero__stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-hero__cta {
        flex-direction: column;
    }

    .service-hero__button {
        width: 100%;
        justify-content: center;
    }

    .service-hero__image-wrapper {
        order: -1;
    }

    .service-hero__floating-element {
        width: 40px;
        height: 40px;
    }

    .service-hero__floating-element svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .service-hero__title {
        font-size: 28px;
    }

    .service-hero__badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .service-hero__stat-number {
        font-size: 20px;
    }

    .service-hero__button {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* Print Styles */
@media print {
    .service-hero__stars,
    .service-hero__floating-element,
    .service-hero__cosmic-bg {
        display: none;
    }
}

/* threee */

/* Love Specialist Section 2 Styles */

.love-specialist-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fef8f0 0%, #fff5eb 100%);
    position: relative;
    overflow: hidden;
}

/* Animated stars background */
.love-specialist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, #F8A922, transparent),
        radial-gradient(2px 2px at 60% 70%, #9C1414, transparent),
        radial-gradient(1px 1px at 50% 50%, #F8A922, transparent),
        radial-gradient(1px 1px at 80% 10%, #9C1414, transparent),
        radial-gradient(2px 2px at 90% 60%, #F8A922, transparent);
    background-size: 200% 200%;
    background-position: 0% 0%;
    opacity: 0.1;
    animation: starsTwinkle 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes starsTwinkle {
    0%, 100% {
        background-position: 0% 0%;
        opacity: 0.1;
    }
    50% {
        background-position: 100% 100%;
        opacity: 0.15;
    }
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.left-content {
    padding-right: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(248, 169, 34, 0.1);
    border: 1px solid #F8A922;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #9C1414;
    font-weight: 600;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(248, 169, 34, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(248, 169, 34, 0);
    }
}

.section-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #9C1414;
    border-radius: 50%;
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

.main-heading {
    font-size: 42px;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 700;
}

.main-heading span {
    color: #9C1414;
    position: relative;
    display: inline-block;
}

.sub-heading {
    font-size: 20px;
    color: #F8A922;
    margin-bottom: 20px;
    font-weight: 600;
}

.description-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
    font-size: 15px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #9C1414 0%, #7a0f0f 100%);
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(156, 20, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(156, 20, 20, 0.4);
}

.cta-icon {
    width: 20px;
    height: 20px;
    fill: white;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-icon {
    transform: translateX(5px);
}

/* Center Image */
.center-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1/1;
}

.center-love-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: cosmicFloat 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes cosmicFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.glow-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid #F8A922;
    opacity: 0.5;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Right Services Card */
.services-card {
    background: linear-gradient(135deg, #9C1414 0%, #7a0f0f 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(156, 20, 20, 0.3);
    position: relative;
    overflow: hidden;
}

.services-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(248, 169, 34, 0.1) 0%, transparent 70%);
    animation: cardGlow 8s linear infinite;
}

@keyframes cardGlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.services-header {
    font-size: 24px;
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

.services-list::-webkit-scrollbar {
    width: 6px;
}

.services-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.services-list::-webkit-scrollbar-thumb {
    background: #F8A922;
    border-radius: 10px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    border-color: #F8A922;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F8A922 0%, #e09815 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 700;
    font-size: 18px;
    padding: 8px;
}

.service-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.service-name {
    font-size: 15px;
    font-weight: 600;
    flex-grow: 1;
}

.service-arrow {
    width: 20px;
    height: 20px;
    fill: #F8A922;
    transition: transform 0.3s ease;
}

.service-item:hover .service-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .services-card {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .love-specialist-section {
        padding: 60px 15px;
    }

    .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .left-content {
        padding-right: 0;
        text-align: center;
    }

    .main-heading {
        font-size: 32px;
    }

    .sub-heading {
        font-size: 18px;
    }

    .description-text {
        text-align: center;
    }

    .section-badge {
        display: inline-flex;
    }

    .image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .services-card {
        max-width: 100%;
    }

    .services-list {
        max-height: 350px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 26px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .description-text {
        font-size: 14px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    .image-wrapper {
        max-width: 250px;
    }

    .services-header {
        font-size: 20px;
    }

    .service-item {
        padding: 12px;
    }

    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
        padding: 6px;
    }
    
    .service-icon svg {
        width: 18px;
        height: 18px;
    }

    .service-name {
        font-size: 14px;
    }
}

/* rashi */


/* Zodiac Sign Section Styles */
.zodiac-section {
    padding: 80px 20px;
    /* background: linear-gradient(135deg, #000000 0%, #1a0a2e 50%, #000000 100%); */
    background-color: #9C1414;
    position: relative;
    overflow: hidden;
}

/* Starry Background Animation */
.zodiac-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 85%, white, transparent),
        radial-gradient(1px 1px at 15% 90%, white, transparent);
    background-size: 200% 200%;
    animation: starfield 60s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes starfield {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.zodiac-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Header Styles */
.zodiac-header {
    text-align: center;
    margin-bottom: 60px;
}

.zodiac-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.zodiac-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #F8A922 0%, #9C1414 100%);
    border-radius: 2px;
}

.zodiac-description {
    font-size: 18px;
    color: #cccccc;
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.8;
}

/* Grid Layout */
.zodiac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Zodiac Card */
.zodiac-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(248, 169, 34, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.zodiac-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(248, 169, 34, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.zodiac-card:hover::before {
    width: 300px;
    height: 300px;
}

.zodiac-card:hover {
    transform: translateY(-10px);
    border-color: #F8A922;
    background: rgba(248, 169, 34, 0.1);
    box-shadow: 0 20px 40px rgba(248, 169, 34, 0.3);
}

/* Icon Wrapper */
.zodiac-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Zodiac Icon */
.zodiac-icon {
    width: 100%;
    height: 100%;
    color: #F8A922;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 10px rgba(248, 169, 34, 0.5));
}

.zodiac-card:hover .zodiac-icon {
    transform: scale(1.15) rotate(5deg);
    color: #ffffff;
    filter: drop-shadow(0 0 20px rgba(248, 169, 34, 0.8));
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1.15) rotate(5deg);
    }
    50% {
        transform: scale(1.25) rotate(-5deg);
    }
}

/* Glow Effect */
.zodiac-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(248, 169, 34, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.zodiac-card:hover .zodiac-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* Zodiac Name */
.zodiac-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.zodiac-card:hover .zodiac-name {
    color: #F8A922;
    text-shadow: 0 0 10px rgba(248, 169, 34, 0.5);
}

/* Zodiac Date */
.zodiac-date {
    font-size: 14px;
    color: #aaaaaa;
    font-weight: 500;
    transition: all 0.3s ease;
}

.zodiac-card:hover .zodiac-date {
    color: #ffffff;
}

/* Special Highlight Animation for Active Card */
.zodiac-card.active {
    border-color: #9C1414;
    background: rgba(156, 20, 20, 0.15);
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(156, 20, 20, 0.5);
    }
    50% {
        box-shadow: 0 0 40px rgba(156, 20, 20, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .zodiac-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 25px;
    }
    
    .zodiac-title {
        font-size: 36px;
    }
    
    .zodiac-description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .zodiac-section {
        padding: 60px 15px;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }
    
    .zodiac-title {
        font-size: 32px;
    }
    
    .zodiac-description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .zodiac-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .zodiac-card {
        padding: 25px 15px;
    }
    
    .zodiac-name {
        font-size: 18px;
    }
    
    .zodiac-date {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .zodiac-section {
        padding: 50px 10px;
    }
    
    .zodiac-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .zodiac-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .zodiac-description {
        font-size: 14px;
    }
    
    .zodiac-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .zodiac-card {
        padding: 20px 12px;
        border-radius: 15px;
    }
    
    .zodiac-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .zodiac-date {
        font-size: 12px;
    }
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.zodiac-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.zodiac-card:nth-child(1) { animation-delay: 0.1s; }
.zodiac-card:nth-child(2) { animation-delay: 0.15s; }
.zodiac-card:nth-child(3) { animation-delay: 0.2s; }
.zodiac-card:nth-child(4) { animation-delay: 0.25s; }
.zodiac-card:nth-child(5) { animation-delay: 0.3s; }
.zodiac-card:nth-child(6) { animation-delay: 0.35s; }
.zodiac-card:nth-child(7) { animation-delay: 0.4s; }
.zodiac-card:nth-child(8) { animation-delay: 0.45s; }
.zodiac-card:nth-child(9) { animation-delay: 0.5s; }
.zodiac-card:nth-child(10) { animation-delay: 0.55s; }
.zodiac-card:nth-child(11) { animation-delay: 0.6s; }
.zodiac-card:nth-child(12) { animation-delay: 0.65s; }

/* third section */

/* Third Service Section Styles */
.t_serv_section {
    padding: 20px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
    position: relative;
    overflow: hidden;
}

.t_serv_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(248, 169, 34, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(156, 20, 20, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.t_serv_container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Side - Image Section */
.t_serv_image_wrapper {
    position: relative;
    animation: t_serv_float 6s ease-in-out infinite;
}

@keyframes t_serv_float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.t_serv_image_frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(156, 20, 20, 0.2);
}

.t_serv_image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.t_serv_image_frame:hover .t_serv_image {
    transform: scale(1.05);
}

/* Decorative Astrological Elements */
.t_serv_star_1,
.t_serv_star_2 {
    position: absolute;
    width: 40px;
    height: 40px;
    color: #F8A922;
    animation: t_serv_twinkle 3s ease-in-out infinite;
}

.t_serv_star_1 {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}

.t_serv_star_2 {
    bottom: -15px;
    left: -15px;
    animation-delay: 1.5s;
}

@keyframes t_serv_twinkle {
    0%, 100% { 
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 0.5;
        transform: scale(1.2) rotate(180deg);
    }
}

.t_serv_moon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    color: #9C1414;
    opacity: 0.3;
    animation: t_serv_rotate 20s linear infinite;
}

@keyframes t_serv_rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.t_serv_orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    border: 2px dashed rgba(248, 169, 34, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: t_serv_orbit_rotate 30s linear infinite;
}

@keyframes t_serv_orbit_rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Right Side - Content Section */
.t_serv_content_wrapper {
    position: relative;
}

.t_serv_heading {
    font-size: 36px;
    font-weight: 700;
    color: #9C1414;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    display: inline-block;
}

.t_serv_heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #F8A922 0%, #9C1414 100%);
    border-radius: 2px;
}

.t_serv_subheading {
    font-size: 20px;
    font-weight: 600;
    color: #F8A922;
    margin-bottom: 25px;
    font-style: italic;
}

.t_serv_text {
    margin-bottom: 35px;
}

.t_serv_text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
    text-align: justify;
}

/* Benefits List */
.t_serv_benefits {
    margin-bottom: 35px;
}

.t_serv_benefit_item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.t_serv_benefit_item:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(248, 169, 34, 0.2);
}

.t_serv_benefit_icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.t_serv_benefit_icon svg {
    width: 24px;
    height: 24px;
}

.t_serv_benefit_text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #9C1414;
    margin-bottom: 5px;
}

.t_serv_benefit_text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* CTA Buttons */
.t_serv_cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.t_serv_btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.t_serv_btn svg {
    width: 20px;
    height: 20px;
}

.t_serv_btn_primary {
    background: linear-gradient(135deg, #F8A922 0%, #9C1414 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
}

.t_serv_btn_primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(248, 169, 34, 0.4);
}

.t_serv_btn_secondary {
    background: white;
    color: #9C1414;
    border-color: #F8A922;
}

.t_serv_btn_secondary:hover {
    background: #F8A922;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(248, 169, 34, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .t_serv_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .t_serv_heading {
        font-size: 32px;
    }

    .t_serv_subheading {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .t_serv_section {
        padding: 60px 15px;
    }

    .t_serv_heading {
        font-size: 28px;
    }

    .t_serv_subheading {
        font-size: 16px;
    }

    .t_serv_text p {
        font-size: 15px;
    }

    .t_serv_benefit_item {
        flex-direction: column;
        text-align: center;
    }

    .t_serv_benefit_icon {
        margin: 0 auto;
    }

    .t_serv_cta {
        flex-direction: column;
    }

    .t_serv_btn {
        width: 100%;
        justify-content: center;
    }

    .t_serv_star_1,
    .t_serv_star_2 {
        width: 30px;
        height: 30px;
    }

    .t_serv_moon {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .t_serv_section {
        padding: 40px 10px;
    }

    .t_serv_heading {
        font-size: 24px;
    }

    .t_serv_subheading {
        font-size: 15px;
    }

    .t_serv_text p {
        font-size: 14px;
        text-align: left;
    }

    .t_serv_benefit_text h4 {
        font-size: 16px;
    }

    .t_serv_benefit_text p {
        font-size: 13px;
    }

    .t_serv_btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* contect */

/* Reflections Section Styles */
.reflections-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('<?php echo $BASE_URL?>/static/images/bg-about-us-sing.webp') center center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    padding: 80px 20px;
}

.reflections-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.reflections-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.reflections-content {
    animation: fadeInUp 1s ease-in-out;
}

.reflections-title {
    font-size: 3rem;
    color: #F8A922;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Georgia', serif;
}

.reflections-subtitle {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.reflections-btn {
    display: inline-block;
    padding: 18px 50px;
    background: #F8A922;
    color: #000000;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(248, 169, 34, 0.4);
    letter-spacing: 1px;
}

.reflections-btn:hover {
    background: #9C1414;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(156, 20, 20, 0.5);
}

/* Celestial Elements Animation */
.celestial-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.star {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px #ffffff, 0 0 20px #ffffff;
    animation: twinkle 3s ease-in-out infinite;
}

.star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.star-2 {
    top: 25%;
    right: 15%;
    animation-delay: 0.5s;
}

.star-3 {
    top: 60%;
    left: 20%;
    animation-delay: 1s;
}

.star-4 {
    top: 70%;
    right: 25%;
    animation-delay: 1.5s;
}

.star-5 {
    top: 40%;
    right: 8%;
    animation-delay: 2s;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.planet-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, #F8A922, #9C1414);
    top: 10%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.planet-2 {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 30% 30%, #0011ff, #F8A922);
    bottom: 15%;
    left: 15%;
    animation: float 10s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .reflections-section {
        min-height: 500px;
        padding: 60px 20px;
        background-attachment: scroll;
    }

    .reflections-title {
        font-size: 2.2rem;
    }

    .reflections-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .reflections-btn {
        padding: 15px 40px;
        font-size: 1rem;
    }

    .planet-1 {
        width: 60px;
        height: 60px;
    }

    .planet-2 {
        width: 40px;
        height: 40px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .reflections-section {
        min-height: 450px;
        padding: 50px 15px;
    }

    .reflections-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .reflections-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .reflections-btn {
        padding: 14px 35px;
        font-size: 0.95rem;
    }

    .planet-1 {
        width: 50px;
        height: 50px;
    }

    .planet-2 {
        width: 30px;
        height: 30px;
    }

    .star {
        width: 2px;
        height: 2px;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .reflections-title {
        font-size: 1.5rem;
    }

    .reflections-subtitle {
        font-size: 0.9rem;
    }

    .reflections-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}