/* .service-banner{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 70vh;
    background-image: url("../images/service-banner.avif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5); 
} */

/* hero section */
/* Reset some default styles */


/* Astrology section styles */
.astrology-section {
    background-color: #0a0a29;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    /* font-family: 'Arial', sans-serif; */
    font-family: Georgia,serif;
}

.astrology-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.astrology-content {
    flex: 1;
    max-width: 600px;
}

.astrology-image {
    flex: 0 0 40%;
    text-align: center;
}

.astrology-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10%;
    box-shadow: 0 0 30px rgba(79, 134, 255, 0.6);
}

.astrology-subtitle {
    color: #ffc107;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.astrology-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ffffff, #e0c3fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.astrology-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #d4d4f5;
}

.astrology-cta {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, #9b3bf9, #ff8c00);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(155, 59, 249, 0.4);
}

.astrology-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 59, 249, 0.6);
}



/* Responsive styles */
@media screen and (max-width: 768px) {
    .astrology-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .astrology-image {
        margin-bottom: 30px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .astrology-title {
        font-size: 32px;
    }

    .astrology-content {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .astrology-title {
        font-size: 28px;
    }

    .astrology-subtitle {
        font-size: 16px;
    }

    .astrology-cta {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/*  */

.image-container {
    position: relative;
    width: 99vw;
    height: 60vh;
    background-image: url("../images/service-banner.avif");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.image-container img {
    width: 100%;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.banner-heading {
    color: white;
    font-size: 3.5rem;
    font-weight: bold;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 1rem;
}

.tag-line {
    color: #d5eb07;
    font-size: 1.2rem;
    line-height: 1.6rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 1rem;
}


@media (max-width: 768px) {
    .image-container {
        height: 30vh;
    }

    .text {
        position: absolute;
        top: 20%;
        left: 0%;
        transform: translate(0%, 0%);
        text-align: center;
        padding: 0 10px;
    }

    .banner-heading {
        font-size: 2.5rem;
    }
}

/* detaile section start  */

.detail-section,
.service-page-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 4%;
    max-width: 1300px;
    margin: auto;
}

.detail-section .left-container {
    width: 50%;
    margin: 40px auto;
}

.service-heading {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #b21f1f;
    font-family: Georgia, 'Times New Roman', Times, serif;
}


.service-para {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6rem;
    text-align: justify;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.detail-section .right-container {
    width: 50%;
}

/* Enhanced Form Section */
.abu-form-section {
    min-width: 300px;
    background: linear-gradient(135deg, #00c4ff 0%, #007bff 100%);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 420px;
    margin: 40px auto;
    animation: abuFormPop 1s ease-out;
}

@keyframes abuFormPop {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.abu-form-section:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.abu-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="rgba(255, 255, 255, 0.15)"/></svg>');
    opacity: 0.6;
    z-index: -1;
    animation: abuPatternMove 15s linear infinite;
}

.abu-form-heading {
    font-size: 26px;
    text-align: center;
    margin-bottom: 30px;
    color: #1a2a6c;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.4);
    animation: abuTextGlow 2s ease-in-out infinite;
}

@keyframes abuTextGlow {

    0%,
    100% {
        text-shadow: 0px 2px 4px rgba(255, 255, 255, 0.4);
    }

    50% {
        text-shadow: 0px 2px 8px rgba(255, 255, 255, 0.6);
    }
}

.abu-form-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
    border-radius: 3px;
}

.abu-form-group {
    margin-bottom: 25px;
    position: relative;
    animation: abuSlideInUp 1s ease-out;
}

@keyframes abuSlideInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.abu-form-control {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    color: #333;
    background: rgba(255, 255, 255, 0.95);
}

.abu-form-control:focus {
    outline: none;
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.25);
    background: #fff;
    transform: translateY(-3px) scale(1.02);
}

.abu-form-control::placeholder {
    color: #666;
    transition: opacity 0.3s ease;
}

.abu-form-control:focus::placeholder {
    opacity: 0.4;
}

.abu-textarea {
    height: 140px;
    resize: none;
    border-radius: 25px;
    padding: 16px 25px;
}

.abu-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(45deg, #ff0000, #ff6347);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    animation: abuButtonPulse 2s ease-in-out infinite;
}

.abu-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s ease;
}

.abu-submit-btn:hover {
    background: linear-gradient(45deg, #ff6347, #ff0000);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 0, 0, 0.5);
}

.abu-submit-btn:hover::before {
    left: 100%;
}

.abu-submit-btn:active {
    transform: translateY(0);
}

.abu-email-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #1a2a6c;
    transition: all 0.3s ease;
}

.abu-form-control:focus+.abu-email-icon {
    transform: translateY(-50%) scale(1.15);
    color: #b21f1f;
}

.abu-email-container {
    position: relative;
}

/* Responsive Styles */

@media (max-width: 992px) {

    .abu-form-section {
        margin-top: 50px;
        width: 100%;
        max-width: 540px;
    }
}

@media (max-width: 768px) {
    .detail-section {
        flex-direction: column;
    }

    .detail-section .left-container {
        width: 100%;
    }

    .detail-section .right-container {
        width: 100%;
    }

    .service-heading {
        font-size: 1.8rem;
    }

    .service-para {
        font-size: 1.2rem;
        line-height: 1.8rem;
    }

    .abu-form-section {
        width: 100%;
        max-width: 540px;
        margin: 0 auto 10px;
    }
}

@media (max-width: 480px) {

    .abu-form-heading {
        font-size: 24px;
    }


    .abu-form-section {
        padding: 30px;
    }

    .abu-form-control {
        padding: 14px 20px;
        font-size: 15px;
    }

    .abu-submit-btn {
        padding: 14px;
        font-size: 16px;
    }
}

/* third section css  */
.third-section {
    /* background-color: #ff7f00; */
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-page-container {
    padding-block: 40px;
    gap: 30px;
}

.service-box {
    width: 50%;
}

.service-box img {
    width: 100%;
}

.content-area {
    width: 45%;
}

.section-heading {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    letter-spacing: 1.5px;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.4);
    color: #ffd700;
    transition: color 0.3s ease, transform 0.3s ease;
}

.section-para {
    /* color: white; */
    /* font-size: 1.2rem; */
    margin-bottom: 1rem;
    text-align: justify;
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.9;
    /* margin-bottom: 25px; */
    font-size: 17px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    animation: abuFadeIn 1.5s ease-out;
}

@keyframes abuFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .third-section {
        flex-direction: column;
        padding: 0 2%;
        justify-content: start;
    }

    .service-box,
    .content-area {
        width: 100%;
    }
}