@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
body {
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}
.header {
    position: fixed;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.8); /* Increased opacity */
    padding: 20px;
    height: 12vh; /* Set to 12% of viewport height */
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}
.title {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}

.nav-logo-icon {
    color: #75ebe1;
    font-size: 1.8rem; 
}

.nav {
    display: flex;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    font: bold 1.5rem sans-serif;
    text-transform: uppercase;
    color: grey;
}
ul li {
    padding: 0 .5em .25em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .3s;
}
ul li:hover {
    color: #75ebe1;
}
ul li:before {
    content: "";
    position: absolute;
    inset: calc(100% - 3px) 0 0 0; /* 3px = the thickness */
    background: #F1F2B5;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #135058, #F1F2B5);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #135058, #F1F2B5); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    scale: 0 1;
    transition: .3s, translate 0s .3s;
}
ul:hover li:before {
    scale: 1;
}
ul li:hover:before {
    translate: 0;
    transition: .3s;
}
ul:hover li:has(~ li:hover):before {
    translate: 100% 0;
    transition: .2s .2s, scale 0s .4s;
}
ul:hover li:hover ~ li:before {
    translate: -100% 0;
    transition: .2s .2s, scale 0s .4s;
}
/* Specific styles for login link */
ul li a {
    text-decoration: none;
    color: grey;
    transition: color 0.3s;
}
ul li a:hover {
    color: #75ebe1;
}
.main-container {
    flex: 1;
    padding: 0;
    margin-top: 12vh; /* Offset for the fixed header */
}
.carousel-item {
    transition: opacity 1s ease-in-out;
}
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity .75s ease-out;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
    opacity: 0;
}
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
    left: 0;
    transform: translate3d(0, 0, 0);
}
.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    left: 10%;
    right: 10%;
}
.carousel-caption h5 {
    font-size: 2rem;
    font-weight: bold;
}
.carousel-caption p {
    font-size: 1.2rem;      
}
.carousel-caption .btn {
    margin-top: 10px;
    font-size: 1rem;
    padding: 10px 20px;
}
.carousel-item img {
    height: 81vh; /* Set to 81% of viewport height */
    object-fit: cover;
}
.footer {
    height: 7vh; /* Set to 7% of viewport height */
    background-color: rgba(15, 15, 15, 0.8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10%;
    color: grey;
}
.footer p {
    margin: 0;
    font-size: 13px;
}
.footer .social-icons {
    display: flex;
    gap: 10px;
    margin-right: 0%;
}
.footer .social-icons img {
    width: 25px; /* Adjust the width to fit the size of an h6 tag */
    height: auto;
    
}




/*  button css*/

.btn2{
font-size: 1.2rem;
padding: 1rem 2.5rem;
border: none;
outline: none;
border-radius: 0.4rem;
cursor: pointer;
text-transform: uppercase;
background-color: rgb(14, 14, 26);
color: rgb(234, 234, 234);
font-weight: 700;
transition: 0.6s;
box-shadow: 0px 0px 60px #1f4c65;
-webkit-box-reflect: below 10px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,0.4));
}



.btn2:hover {
background: rgb(2,29,78);
background: linear-gradient(270deg, rgba(2, 29, 78, 0.681) 0%, rgba(31, 215, 232, 0.873) 60%);
color: rgb(4, 4, 38);
}
