/* colours */
:root{
    --primary: #202020;
    --secondary: #051060; /*004978*/
    --title: #FF8816;
  }
  /*____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
  /* Reset default body margin and overflow */
  body, html {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    height: 100%; /* Ensures the body covers the full height of the viewport */
    overflow: hidden; /* Prevents scrolling */
    background-color: var(--secondary);
  
  
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  /* Main content container */
  main {
    /* height: calc(100% - 100px); Adjusts height to leave space for the nav bar */
    overflow: auto; /* If needed, content inside the main area can scroll */
  }
  /*____________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________*/
  
.upar {
    background: var(--secondary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    
    /* gap: 10vw; */
    margin: 5vw;
}

.logo_and_name {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.logo_and_name img {
    width: 15vw;/* Adjust the width of the image as needed */
    height: auto;/* Maintain aspect ratio */
}
.logo_and_name p {
    font-size: 6vw;/* Adjust the font size of the paragraph text as needed */
    font-weight:700;
    margin-left: 2vw;/* Optional: Add some spacing between the image and the text */
    margin-block-end: 0px;
}

.tagline p {
    font-size: 2.5vw;/* Adjust the font size of the paragraph text as needed */
    font-weight:normal;
    margin-left: 2vw;/* Optional: Add some spacing between the image and the text */
    margin-block-end: 0px;
    color: #ffffff;
    align-items: center;
    justify-content: center;
    /* margin-left: 30px; Adjust this value to shift right */
    text-align: center;
    margin-top: 1.5vw;
}



.material-symbols-outlined {
    font-size: 30px;
    font-variation-settings: 'FILL' 1, 'wght' 700, 'GRAD' 0, 'opsz' 48;
}


.carousel {
    overflow: hidden;
    width: 100vw;
    height: auto;
    position: relative;
}

.carousel-track {
    display: flex;
    width: 600vw; /* 6 tiles, each taking 100vw */
    animation: slide 18s infinite ease-in-out;
}

.carousel-tile {
    min-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-size: larger;
    font-weight: normal;    
}

/* Keyframe animation to move slides */
@keyframes slide {
    0%, 13.89% { transform: translateX(0%); }
    16.67%, 30.56% { transform: translateX(-100vw); }
    33.33%, 47.22% { transform: translateX(-200vw); }
    50%, 63.89% { transform: translateX(-300vw); }
    66.67%, 80.56% { transform: translateX(-400vw); }
    83.33%, 97.22% { transform: translateX(-500vw); }
}

.carousel img {
    width: 18vw;/* Adjust the width of the image as needed */
    height: auto;/* Maintain aspect ratio */
}

.niche {

    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 48vh;
    background-color: #fff;
    border-top-left-radius: 20px; /* Rounded top corners */
    border-top-right-radius: 20px; /* Rounded top corners */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Shadow for a lifted effect */
    padding: 20px;
    box-sizing: border-box;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content:flex-start;
/* 
    /* overflow: hidden; */ 
}

.niche p {
    margin-top: 2vw;
    font-size: small;
    font-family: sans-serif;
}

.get-started {
    font-weight: 600;
    font-size: 24px;
    font-family: sans-serif;
    margin-bottom: 7vw;
    box-sizing: border-box;
}

.input-section {
    overflow: hidden;
    /* width: 100%; */
    /* height: auto; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    row-gap: 5vw;
    /* column-gap: 15vw; */

}

.otp-section {
    overflow: hidden;
    /* width: 100%; */
    /* height: auto; */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    row-gap: 5vw;
    
    text-align: center;
    white-space: nowrap;

}
#verify-btn {
    width:70vw;
    max-width: 70vw;
    min-width: 70vw;
}
#otp {
    width:70vw;
    max-width: 70vw;
    min-width: 70vw;
}


button {
    margin-top: 5vw;
    margin-bottom: 5vw;
    height: 50px;
    width: 100%;
    color: white;
    background-color: var(--secondary) ;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

/* CSS for the spinner */
.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-top: 4px solid #007bff;
    /* Blue color for the spinner */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table,
th,
td {
    border: 1px solid;
    padding: 15px;
    text-align: left;
    border-color: black;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th {
    background-color: #04AA6D;
    color: white;
}