* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* This ensures padding is included in the element's width */
    font-family: "kumbh sans", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

body {
    --sb-track-color: #120a8f;
    --sb-thumb-color: rgb(131, 204, 89);
    --sb-size: 28px;
}

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
    border-radius: 5px;
    border: 3px solid #090452;
    height: 10px;
}
  
@supports not selector(::-webkit-scrollbar) {
    body {
      scrollbar-color: var(--sb-thumb-color)
                       var(--sb-track-color);
    }
}

.navbar {
    background: #120a8f;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    padding-right: 80px;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
    margin: 8px;
}

.navbar__links {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    width: 130px;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: rgb(131, 204, 89);
    color: #fff;
}

.button:hover {
    background: rgb(51, 139, 147);
    transition: all 0.4s ease;
}

.navbar__links:hover {
    color: rgb(131, 204, 89);
    transition: all 0.4s ease;
}

#navbar__logo {
    background-image: linear-gradient(to right, rgb(131, 204, 89), rgb(51, 139, 147));
    background-size: 100%;
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.6rem;
    font-weight: 600;
}
  
.fa-solid {
    margin-right: 0.8rem;
    size: 0.2rem;
}

.main {
    background-color: #daf0db;
    width: 100%;
    padding: 0 50px; /* Padding is now included in the width */
}

.main h1 {
    padding: 4rem;
    padding-bottom: 0;
    text-align: center;
    font-size: 4rem;
    background-image: linear-gradient(to right, rgb(131, 204, 89), rgb(51, 139, 147));
    background-size: 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-self: center;
    height: 90vh;
    width: 100%;
    max-width: none; 
    margin: 0 auto;
    padding: 0; 
}

.main__content {
    text-align: center;
    width: 100%;
    height: 50vh;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main__content p {
    max-width: 80%;
    font-size: 1.4rem;
    font-weight: 500;
    color: #120a8f;
    text-align: center;
    transform: translateY(0);
    transition: transform 0.3s ease, font-size 0.3s ease;
}

.main__content p:hover {
    transform: translateY(-2px) scale(1.1);
}

.main__btn {
    background-color: rgb(131, 204, 89);
    font-size: 1rem;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    color: #ffff;
    margin-top: 3rem;
    cursor: pointer;
    transition: all 0.4s;
    outline: none;
    position: relative;
    display: inline-block;
}

.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgb(51, 139, 147);
    transition: all 0.4s;
    border-radius: 4px;
}

.main__btn:hover{
    color: #fff;
}

.main__btn:hover::after{
    width: 100%;
}

.main__img--container{
    text-align: center;
    margin-top: -8vh;
    margin-left: -8vh;
}

#main__img {
    height: 75%;
    width: 75%;
    border-width: 0.5rem;
    border-style: solid;
    border-image: linear-gradient(to right, rgb(131, 204, 89), rgb(51, 139, 147)) 1;
    transition: transform .7s ease;
}

#main__img:hover {
    transform: scale(1.08); 
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
}

.countdown-container{
    background: #daf0db;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 50vh;
}

.countdown-box {
    background-color: #120a8f;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 50%;
    margin-inline: auto;
}
  
.countdown-title {
    font-size: 42px;
    font-weight: bold;
    color: rgb(131, 204, 89);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    text-align: center
}
  
.countdown-time {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: space-between;
}
  
.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
  
.countdown-label {
    font-size: 18px;
    font-weight: normal;
    color: #FFF; /* white text */
    margin-top: 10px;
}

.services {
    background: #daf0db;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 130vh;
}

.services h1 {
    background-image: linear-gradient(to right, rgb(77, 159, 29), rgb(51, 139, 147));
    background-size: 100%;
    margin-bottom: 4rem;
    font-size: 3rem;
    background-clip: text;
    background-clip: text;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.services__container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.services__card {
    margin: 1rem;
    height: auto;
    min-height: 525px;
    width: 400px;
    border-radius: 4px;
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/pic1.jpg');
    background-size: cover;
    position: relative;
    color: #fff;
}

.services__card__yt {
    margin: 1rem;
    height: auto;
    min-height: 525px;
    width: 400px;
    background-size: cover;
    position: relative;
    color: #fff;
}

.services__card:nth-child(2) {
    background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(17,17,17,0.6) 100%), url('/services__card.png');
}

.services h2 {
    position: absolute;
    top: 350px;
    left: 30px;
}

.services__card p {
    position: absolute;
    top: 400px;
    left: 30px;
}

.services__card button {
    position: absolute;
    top: 440px;
    left: 30px;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    border: none;
    outline: none;
    border-radius: 4px;
    background: rgb(131, 204, 89);
    color: #fff;
}

.services__card a {
    text-decoration: none;
    color: #fff;
}

.services__card button:hover {
    background: rgb(51, 139, 147);
    transition: all 0.4s ease;
}

.footer__container {
    background-color: #120a8f;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%; /* Change this to 100% */
    height: auto; /* Change this to auto */
}

#footer__logo {
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
}

.footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
}

.footer__link--wrapper {
    display: flex;
}

.footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
}

.footer__link--items > h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer__link--items a {
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.8rem;
}

.footer__links--items a:hover {
    color: #e9e9e9;
    transition: 0.3s ease-out;
}

.social__icon--link {
    color: #fff;
    font-size: 24px;
}

.social__media {
    max-width: 1000px;
    width: 100%;
}

.social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
}

.social__logo {
    color: #fff;
    justify-self: flex-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.website__rights {
    color: #fff;
}

.services__card__yt iframe {
    width: 400px;
    height: 560px;
}

@media screen and (max-width: 1032px){
    #main__img {
        height: 75%;
        width: 75%;
    }
    .main__content p {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 960px) {
    .navbar__container,
    .main,
    .services,
    .footer__container {
        padding: 0px; /* Adjust padding for smaller screens */
    }

    .navbar, .main, .services, .footer__container {
        width: 100%; /* Ensuring width is 100% and not a fixed pixel amount */
    }
    .main__img--container{
        text-align: center;
        margin-left: 1vh;
    }

    #main__img {
        height: 80%;
        width: 80%;
    }

    .main__content p {
        max-width: 85%;
        margin-left: 30px;
    }

    .services h1 {
        font-size: 3rem;
        margin-top: 12rem;
        text-align: center;
        max-width: 80%;
    }

    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.6s ease;
        height: 50vh;
        z-index: -1;
        background: #120a8f;
    }

    .navbar__menu.active {
        background: #120a8f;
        top: 100%;
        opacity: 1;
        transition: all 0.6s ease;
        z-index: 99;
        height: 90vh;
        font-size: 26px;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.4s ease-in-out;
        background: #fff;
        display: block;
        cursor: pointer;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 32px;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 4%;
        transform: translate(5%, 20%);
    }
    .navbar__btn {
        padding-bottom: 2rem;
    }
    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50%;
        height: 50px;
        margin: 0;
    }
    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .main {
        height: 100vh;
    }
    .services {
        height: 160vh;
    } 
    .countdown-box{
        margin-top: 25vh;
        width: 60%;
    }  
    .countdown-title {
        font-size: 38px;
    }
}

@media screen and (max-width: 864px) {
    .services {
        height: 250vh;
        max-width: 864px;
    }
    .footer__container {
        max-width: 864px;
    }
    .main__img--container{
        text-align: center;
        margin-bottom: 6vh;
    }
    #main__img {
        height: 90%;
        width: 90%;
    }
    .main__content p {
        font-size: 1.2rem;
    }
    .countdown-box{
        width: 60%;
    }  
    .countdown-title {
        font-size: 36px;
    }
    .footer__links {
        padding-top: 2rem;
    }    

    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__link--wrapper {
        flex-direction: column;
    }

    .social__media--wrap {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    .main__container {
        display: grid;
        grid-template-columns: auto;
        align-items: center;
        justify-self: center;
        width: 100%;
        margin: 0;
    }
    #main__img {
        height: 65%;
        width: 65%;
    }
    .main__content {
        text-align: center;
        margin-bottom: 4rem;
    }
    .main__content p {
        font-size: 1.4rem;
        font-weight: 500;
        margin-top: 10rem;
        max-width: 80%;
        margin-left: 0;
    }
    .main__img--container{
        text-align: center;
        margin-top: 22vh;
    }
    .countdown-box{
        width: 66%;
        margin-top: 82vh;
    }  
    .countdown-title {
        font-size: 32px;
    }
    .services h1{
        font-size: 3rem;
        max-width: 80%;
        text-align: center;
        margin-top: 77vh;
    }
    .services {
        height: 300vh;
    }
}

@media screen and (max-width: 721px) {
    .services__container {
        text-align: center;
    }
    #main__img {
        height: 75%;
        width: 75%;
    }
    .services h1{
        font-size: 3.2rem;
        max-width: 80%;
    }
    .countdown-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 601px) {
    .main{
        text-align: center;
    }
    .main h1{
        font-size: 2.8rem;
        margin-bottom: 5vh;
    }
    #main__img {
        height: 75%;
        width: 75%;
    }
    .countdown-box{
        width: 70%;
    }  
    .countdown-title {
        font-size: 28px;
    }
}
 
@media screen and (max-width: 534px) {
    .countdown-title {
        font-size: 26px;
    }
    .countdown-time {
        font-size: 38px;
    }
    .main__content p {
        margin-top: 16rem;
    }
    .main__img--container{
        margin-top: 35vh;
    }
}

@media screen and (max-width: 482px) {
    .main{
        text-align: center;
    }
    .main h1{
        font-size: 2.6rem;
        margin-bottom: 5vh;
        text-align: center;
    }
    .main__content p {
        font-size: 1.32rem;
        max-width: 80%;
    }
    .services__card__yt iframe {
        width: 315px;
    }
    .services__card {
        width: 315px;
    }
    .countdown-box{
        width: 76%;
    } 
    .countdown-title {
        font-size: 24px;
    }
    .countdown-time {
        font-size: 35px;
    }
}

@media screen and (max-width: 430px) {
    .main__content p {
        font-size: 1.2rem;
        max-width: 80%;
    }
    .services__card__yt iframe {
        width: 315px;
    }
    .services__card {
        width: 315px;
    }
    .footer__link--items {
        margin: 0;
        width: 100%;
    }
    .main__btn {
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
    .countdown-box{
        width: 80%;
    }
    .countdown-title {
        font-size: 22px;
    }
    .countdown-time {
        font-size: 32px;
    }
}

/* Responsive tweaks for mobile devices */
@media (max-width: 768px) {
  .gare-container {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }

  .gara-box {
    width: 90%;
    max-width: 400px;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Enable smooth transitions and GPU acceleration */
.gara-box {
  will-change: transform;
  transition: all 0.3s ease;
}
