* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    top: 0 !important;
    font-family: "Lora", serif !important;
    /*background: #f0f2f5;*/
    background: gray;
    color: #333;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Navbar */

.navbar {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    height: 75px;
    background: rgba(255, 255, 255, 0);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-around;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
/*.name{*/
/*    width: 250px;*/
/*    height: 75px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    background: navy ;*/
/*    opacity: 0.8;*/
/*    border-radius: 15px;*/
/*}*/

.logo{
    padding: 5px;
}
.logo img{
    width: 250px;

}
.hamburger{
    display: none;
    width:20px;
    height:20px;
    flex-direction: column;
    cursor: pointer;
}
.hamburger .list {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 4px 0;
}
.close{
    display: none;
    margin-right: 20px;
    flex-direction: column;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    color: white;
}
.close.active {
    display: block;
}
.hamburger.hide {
    display: none;
}
.content{
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1.5rem;
    gap: 1.5rem;
}
.navbar .name h1{
    font-size: 36px;
    font-family: "Calibri Light" , sans-serif;
    cursor: pointer;
}
.navbar .content a {
    margin: 0 15px;
    text-decoration: none;

    color: white;
    font-weight: 600;
}
.navbar nav a:hover {
    color: #0073e6;
}
.social-icons{
    width: 100px;
    display: flex;
    justify-content: space-around;

}
.social-link {
    color: white;
    margin-left: 15px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s;
}
.social-link:hover {
    color: #0073e6;
}
.kundali{
    width: inherit;
    height: inherit;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    backdrop-filter: blur(5px);
}
.check {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    width: 90%;
}
.check input {
    width: 16px;
    height: 16px;
}
.check a {
    color: #FFD700; /* gold accent */
    text-decoration: underline;
}
.kundali button{
    border: none;
    outline: none;
    width: 50%;
    height: 30px;
    cursor:pointer;
    background: white;
}
.kundali button:hover{
    color: #0073e6;
}
.logo-1{
    width: 100px;
    height: 100px;
    background: url("images/6336398-512.png") no-repeat center center/cover;
}
.east-indian{
    display: none;
    font-family: "cursive";
}
.north-indian{
    font-family: "cursive";
    display: none
}
.kundali-header{
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    padding: 5px;
}
.kundali-header button{
    border: none;
    outline: none;
    background-color: white;
    cursor: pointer;
    width: 150px;
}
.kundali-header button:hover{
    background-color: gray;
}

#east-svg-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    border: 1px solid #000;
    box-sizing:  border-box;
    backdrop-filter: blur(10px);
}
#east-svg-container path {
    fill:#fff;
    stroke: #000;
    stroke-width: 0.1%;
}
#east-svg-container svg {
    display: block;
    width: 100%;
    height: 500px;
    cursor: pointer;
    background-color: black;
}
#east-svg-container svg rect{
    stroke: white;
}
#east-svg-container svg line{
    stroke: white;
}
#east-svg-container svg text{
    fill: white;
}



#north-svg-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 500px;
    border: 1px solid #000;
    box-sizing:  border-box;
    backdrop-filter: blur(10px);
}
#north-svg-container path {
    fill:black;
    stroke: white;
    stroke-width: 0.1%;
}
#north-svg-container svg {
    display: block;
    width: 100%;
    height: 500px;
    cursor: pointer;
    background-color: black;
}
#north-svg-container svg rect{
    stroke: white;
}
#north-svg-container svg line{
    stroke: white;
}
#north-svg-container svg text{
    fill: white;
}


.hero{
    display:flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    width: 100%;
    min-height: 100vh;
    color: white;
    margin-bottom: 30px;
}
.dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    cursor: pointer;
}
.dropdown-item {
    padding: 8px;
    cursor: pointer;
    background: black;
    border: 1px solid #ccc;
}
.dropdown-item:hover {
    background: gray;
}
.kundaliForm{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 400px;
    min-height: 400px;
    gap: 20px;
    backdrop-filter: blur(10px);
}
.kundaliForm input{
    border: none;
    outline: none;
    width: 95%;
    height: 30px;
    padding: 10px;
    cursor: pointer;
}
.kundaliForm button{
    border: none;
    outline: none;
    width: 50%;
    height: 30px;
    cursor:pointer;
    background: white;
}
.kundaliForm button:hover{
    background-color: gray;
}

#loadingBar {
    width: 100%;
    height: 5px;
    background-color: #ccc;
    position: relative;
    margin-top: 10px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    position: absolute;
    animation: loadingAnimation 2s linear infinite;
}
th{
    text-align: center;
    margin: 5px;
    padding: 5px;
    border-right: solid 1px #ccc;
}
td{
    text-align: center;
    margin: 5px;
    padding: 5px;
    border-right: solid 1px #ccc;
}

@keyframes loadingAnimation {
    0% { left: -100%; width: 0%; }
    50% { left: 0%; width: 100%; }
    100% { left: 100%; width: 0%; }
}

.close-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}
.planet-table{
    width: 100%; /* Ensure table takes full container width */
    min-width: 500px; /* Set minimum width */
    border-collapse: collapse;
}
.planet-table tr{
    text-align: left;
    border: 2px solid white;
}
.planetdetails{
    width: 90%;
    height:max-content;
    overflow: auto;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    padding: 15px;
}
/* Target the scrollbar itself */
::-webkit-scrollbar {
    width: 10px;  /* Width for vertical scrollbar */
    height: 10px; /* Height for horizontal scrollbar */
}

/* Track (the background of the scrollbar) */
::-webkit-scrollbar-track {
    background: #f1f1f1;  /* Light gray */
    border-radius: 10px;
}

/* Handle (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
    background: #888;  /* Dark gray */
    border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;  /* Even darker gray */
}


.footer{
    min-height: 30vh;
    width: 100%;
    background: radial-gradient(ellipse at top left,  #8B5CF6 25%, #7C3AED 40%, #5B21B6 55%, #4C1D95 70%, #1E1B4B 85%, #0F172A 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}
.designed-by{
    padding: 1%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
}
.links{
    width: 100%;
    padding: 1%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.credits{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    color: white;
}
.credits span {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.credits span::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    width: 100%;
    transition: width 0.3s ease;
}
.credits a{
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: white;
}
.credits a::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}
.credits a:hover::after{
    width: 100%;
}
.social-icons span{
    display: none;
}
@media Screen and (max-width: 1121px) {
    .content {
        display:none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        backdrop-filter: blur(50px);
        justify-content: center;
        align-items: center;
        z-index: 1002;
        color: #f0f0f0;
    }
    .hamburger {
        display:block;
        z-index: 1002;
    }

}
.goog-te-gadget-simple img{
    display: none;
}
.skiptranslate iframe{
    display: none;
}
.skiptranslate span {
    color: black;
}
@media screen and (max-width: 800px) {
    .services{
        left: 0;
    }
    .container{
        left:75px !important;
        top:140px !important;
        z-index: 0;
    }
    .background-layer{
        z-index: 1;
    }
    .services{
        z-index: 2;
    }

}
@media screen and (max-width: 500px){
    .background-layer{
        width: 100%;
    }
    .background-layer img{
        width: 100%;
    }
    .services{
        width: 100%;
        bottom: 0;
        padding-bottom: 10px;
    }
    .container{
        left:25%;
    }
    .kundaliForm{
        margin-top: 25% !important;
        width: 98% !important;
    }
    .kundali{
        margin-top: 15%;
    }
    #north-svg-container  {
        width: 90% !important;
    }
    #east-svg-container{
        width: 90% !important;
    }
    .designed-by{
        flex-direction: column;
    }
    .logo img{
        width: 175px;
    }
    .designed-by{
        flex-direction: column;
    }
    .links{
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .logo img{
        width: 175px;
    }
}
