/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

header {
    background-color: #4b006e;
    background-size: cover;
    color: white;
    padding: 10px 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    min-height: 150px;
}

#title {
    font-size: 2em;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-right: 20px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.auth-buttons {
    display: flex;
    align-items: center;
}

.auth-buttons .login,
.auth-buttons .get-started {
    background-color: white;
    color: #4b006e;
    border: none;
    padding: 10px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.auth-buttons .get-started {
    background-color: #ff4081;
    color: white;
}

.auth-buttons .login:hover,
.auth-buttons .get-started:hover {
    background-color: #ff4081;
    color: white;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropbtn2 {
    background-color: white;
    color: #4b006e;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.language-dropdown .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.language-dropdown .dropdown-content2 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.language-dropdown .dropdown-content2 a:hover {
    background-color: #ddd;
}

.language-dropdown:hover .dropdown-content2 {
    display: block;
}

.language-dropdown:hover .dropbtn2 {
    background-color: #ff4081;
    color: white;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    background-color: #4b006e;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown:hover .dropbtn {
    background-color: #ff4081;
    border-radius: 5px;
}

.dropdown-toggle {
    display: none;
    background-color: #4b006e;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

@media (max-width: 1000px) {
    .nav-menu {
        display: none;
    }
    .dropdown-toggle {
        display: block;
    }

    header {
        background-color: #4b006e;
        color: white;
        padding: 0px 10px;
    }
    .dropdown-content {
        display: block;
        position: static;
        opacity: 1;
        box-shadow: none;
    }

    .dropdown-content a {
        padding: 10px;
    }

    .dropbtn {
        display: block;
        width: 100%;
        text-align: center;
    }

    .auth-buttons .login,
    .auth-buttons .get-started,
    #selected-language {
        display: none;
    }
}


main { 
    display: flex;
    justify-content: center;
    align-items: center;
    background-image:linear-gradient(to bottom, rgb(216, 252, 255),rgb(255, 255, 255));
    padding: 100px;
    border-bottom:1px solid #333;
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    min-width: 300px;
    margin: 0 20px;
    background-color: rgba(255, 255, 255, 0.243);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-out;
    transition: background-color 2s ease;
}
.content:hover{
    background-color: rgba(119, 217, 230, 0.438);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.image-container {
    flex: 1;
    padding: 20px;
    min-width:250px;
}

.image-container img {
    max-width: 100%;
    border-radius: 500px;
}

.text-content {
    flex: 1;
    padding: 10px;
}

.text-content h1 {
    color: #4b006e;
    font-size: 2.6em;
    margin-bottom: 20px;
}

.text-content p {
    color: #333;
    font-size: 1.2em;
    line-height: 1.6;
}
@media (max-width: 768px){
    main { 
        display: flex;
        justify-content: center;
        align-items: center;
        background-image:linear-gradient(to bottom, rgb(216, 252, 255),rgb(255, 255, 255));
        padding: 40px;
        border-bottom:1px solid #333;
    }
    .text-content h1 {
        color: #4b006e;
        font-size: 6vw;
        margin-bottom: 20px;
    }
    .text-content {
        flex: 1;
        padding: 0px;
    }
    .text-content p {
        color: #333;
        font-size: 4vw;
        line-height: 1.6;
    }
}

/* Astrologers Section */
.astrologers {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    background-image: url('mandala-pattern.jpg'); /* Placeholder for the decorative background */
    background-size: cover;
    background-position: center;
}

.astrologers h2 {
    color: #4b006e;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.astrologers p {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 40px;
}

.astrologer-profile {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4b006e 25%, #e0e0e0 100%);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.557);
    margin: 20px;
    height: 250px; /* Increased height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.astrologer-profile:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.477);
}

.astrologer-profile img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid rgb(255, 0, 221);
    transition: transform 0.3s ease;
}

.astrologer-profile img:hover{
    transform: scale(1.02);
    box-shadow: 0px 0px 10px rgb(255, 0, 221);
}

.details {
    background: rgba(255, 255, 255, 0.85);
    padding: 0px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.details h3 {
    color: #4b006e;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.details p {
    color: #333;
    font-size: 1.1em;
    margin: 8px 0;
}

/* Responsive styles */
@media (max-width: 768px) {
    .astrologer-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
        height: auto; /* Adjust height for responsive layout */
    }
    
    .astrologer-profile img {
        margin: 0 0 20px 0;
    }
    
    .details {
        width: 100%;
        padding: 15px;
    }
}

/* Daily Horoscopes Section */
.daily-horoscopes {
    text-align: center;
    padding: 70px;
    background-color: #4b006e;
    color: white;
}

.daily-horoscopes h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.daily-horoscopes p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.zodiac-signs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 70px;
}

.zodiac-sign {
    background-size: cover;
    background-position: center;
    padding: 160px 80px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.zodiac-sign:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive styles for smaller devices */
@media (max-width: 768px) {
    .daily-horoscopes h2 {
        font-size: 2em;
    }

    .daily-horoscopes p {
        font-size: 1em;
    }
    .zodiac-sign {
        background-size: cover;
        background-position: center;
        padding: 80px 60px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .zodiac-signs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 70px;
    }
}


/* Language Dropdown */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropbtn2 {
    background-color: white;
    color: #4b006e;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.language-dropdown .dropdown-content2 {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.language-dropdown .dropdown-content2 a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.language-dropdown .dropdown-content2 a:hover {
    background-color: #ddd;
}

.language-dropdown:hover .dropdown-content2 {
    display: block;
}

.language-dropdown:hover .dropbtn2 {
    background-color: #ff4081;
    color: white;
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline-flex;
    margin-right: 0px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    transition: background-color 0.3s;
    border: 0.5px solid rgb(38, 2, 58);
    border-radius: 5px;
    backdrop-filter: blur(20px);
}

nav ul li a:hover {
    background-color: #ff4081;
    border-radius: 5px;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropbtn {
    background-color: #4b006e;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 0.5px solid rgb(38, 2, 58);
    border-radius: 5px;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-top: 5px;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
}

.dropdown:hover .dropbtn {
    background-color: #ff4081;
    border-radius: 5px;
}
/* Contact Section */
.contact {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(to right, #4d1f8a, #ffc3a0);
}

.contact .container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    background: rgba(255, 255, 255, 0.262);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1;
    margin-bottom: 20px;
}

.contact-info h2 {
    margin: 0 0 10px;
    color: #4b006e;
    font-size: 1.8em;
}

.contact-info p {
    margin: 5px 0;
    color: #333;
    font-size: 1.2em;
}

.contact-form {
    flex: 1;
}

.contact-form h2 {
    margin: 0 0 10px;
    color: #4b006e;
    font-size: 1.8em;
}

.contact-form p {
    margin: 10px 0;
    color: #333;
    font-size: 1.2em;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin: 10px 0 5px;
    color: #4b006e;
    font-weight: bold;
    font-size: 1.1em;
}

input, textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1.1em;
}

button {
    padding: 10px;
    background-color: #4b006e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s;
    border: 0.5px solid rgb(38, 2, 58);
    border-radius: 5px;
    
}

button:hover {
    background-color: #ff4081;
}

@media (min-width: 768px) {
    .contact .container {
        flex-direction: row;
    }
}


#title {
    font-size: 2em;
    font-weight: 400;
    text-transform: uppercase;
    color: #ff7722;
    position: relative;
    display: inline-block;
}

@keyframes whiteFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 2px #b3b3b3, 
            0 0 4px #b3b3b3, 
            0 0 6px #b3b3b3, 
            0 0 8px #b3b3b3, 
            0 0 10px #b3b3b3, 
            0 0 15px #b3b3b3, 
            0 0 20px #b3b3b3, 
            0 0 30px #b3b3b3;
    }
    20%, 24%, 55% {
        opacity: 0;
        text-shadow: none;
    }
}

footer {
    background-color: #4b006e;
    color: white;
    padding: 10px 0;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px 20px;
}

.footer-column h3 {
    color: #ff4081;
    margin-bottom: 5px;
}

.footer-column p, .footer-column ul, .footer-column li {
    color: white;
    margin: 5px 0;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: space-around;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
}

.social-icons img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #ff4081;
}
/* Add this new class for user name */
.user-name {
    font-size: 1em;
    font-weight: bold;
    color: #ffcc00;
    margin-left: 10px;
    display: inline-block;
}
.auth-buttons a {
    text-decoration: none; /* Remove underline */
}

.auth-buttons a button {
    border: none; /* Remove button border */
    outline: none; /* Remove button outline */
}
.attachbut{
    display: flex;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;
}
/* CSS for rotating the image on hover */
#astrology-wheel {
    box-shadow: 0 0px 12px rgba(0, 0, 0, 0.557);
    transition: transform 1s linear, scale 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

#astrology-wheel:hover {
    transform: rotate(360deg);
    scale:1.03;
    box-shadow: 0 0px 16px rgba(0, 0, 0, 0.477);
}
.complimentary-astrology-services {
    padding: 20px;
    background-image: linear-gradient(to bottom,purple,rgb(239, 112, 239));
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.tab {
    background-color: white;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.tab img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0px 6px rgba(255, 255, 255);
    border:1px solid white;
}

.tab img:hover {
    transform: scale(1.1);
    box-shadow: 0 0px 20px rgb(255, 178, 63);
    border: 1px solid #ffce6b;
}


.tab h3 {
    font-size: 18px;
    margin: 10px 0;
    color:#333;
}

.tab p {
    font-size: 14px;
    color: #555;
}

.tab:hover {
    background-color: #b6fff3; /* Light yellow background on hover */
    border: 1px solid #ffce6b;
    transform: scale(1.05); /* Slightly increase size on hover */
    box-shadow: 0 0px 20px rgb(255, 178, 63); /* Slightly more prominent shadow */
}

/* Responsive layout */
@media (max-width: 768px) {
    .tab {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .tab {
        width: 90%;
    }
}
.ad-section {
    background: #fbe6ff;
    padding: 2rem;
    margin: 1rem 0;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ad-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ad-content img {
    width: 9vw;
    min-width: 90px;
    height: auto;
    border-radius: 1vw;
}
.ad-description {
    max-width: 600px;
    margin-right: 1rem;
}
.ad-description h2{
    font-size: auto;
}
.button {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 0.75rem 1.25rem;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #555;
}
.large-adver {
    background-color: #cb94d6;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.large-adver h2 {
    text-align: center;
    font-size: 2vw;
}

.adver-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f9f9f9a8;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}
.carousel{
    max-width: 600px;
    min-width: 300px;
    width: 30vw; /* 80% of the viewport width */
    box-shadow: 0 0 6px rgba(255, 255, 255);
    border: 1px solid white;
    margin-bottom: 20px;
    margin-right: 20px;
}

.adver-text {
    text-align: left;
    border: 1px solid #ccc;
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    max-width: 600px;
    min-width: 300px;
    flex: 1 1 40%;
}

.adver-text h3 {
    margin-top: 0;
    font-size: 24px;
    color: #333;
}

.adver-text p {
    font-size: 16px;
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .adver-text h3 {
        font-size: 22px;
    }

    .adver-text p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .adver-main {
        flex-direction: column;
        align-items: flex-start;
    }


    .adver-text {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .large-adver h2 {
        font-size: 4vw;
    }

    .adver-text h3 {
        font-size: 20px;
    }

    .adver-text p {
        font-size: 12px;
    }
}
.logotext{
    display: flex;
    align-items: center;
    justify-content:space-between;
    gap: 20px;
}
.logotext img{
    max-width: 6.5vh;
    margin-bottom: 10px;
    border:2px solid rgba(255, 128, 247, 0.65);
    box-shadow: 0px 0px 10px rgb(255, 0, 221);
}
.extrabutt{
            display: grid;
        }
