
html, body {
    height: 100%; 
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

/* Navbar Section */
/* .custom-top-border {
    border-top: 10px solid rgb(26, 38, 92);
} */

.top-bar{
    background-color:rgb(26, 38, 92) ;
}

/* Fade-in & Slide-down animation */
@keyframes dropdownPop {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.dropdown-menu {
    display: none; /* Initially hidden */
    transform-origin: top center; /* Ensures scaling happens from the top */
    animation: dropdownPop 0.2s ease-out;
}

.dropdown-menu.show {
    display: block !important; /* Force show */
    animation: dropdownPop 0.2s ease-out;
}

.navbar-nav {
    gap: 8px;
}
.navbar-nav .nav-link{
    font-family: 'EB Garamond', serif;
    text-transform: uppercase;
    font-size: 14px;
    color: rgb(26, 38, 92) ;

}

/* Remove Bootstrap dropdown arrows */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

.navbar {
    padding: 14px !important;
}
.brand-container {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(26, 38, 92);
    padding: 5px 45px;
    width: 212px;
    height: 116px;
    /* border-radius: 10px; */
    z-index: 9;
}

.brand-container img {
    height: 103px;
    width: 126px;
    /* margin-top: 0.6rem; */
    object-fit: cover;
}



/* Make the login button stand out */


.login-btn{
    text-decoration: none;
    font-size: 10px;
    padding: 3px 16px;
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 4px;
    margin: 7px 0;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    color: rgb(26, 38, 92);

}

/* Align login properly in mobile view */
/* @media (min-width: 1080px) {
    .login-item {
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        border: 2px solid #63c5da;
        border-radius: 14px;
        padding: 0px 7px;
        
    }

    .login-item:hover{
        border-color: #83e3f8;
    }

    .navbar-nav .login-item .login-btn {
        padding: 1px 10px;
        color: #4698aa;
    }

} */


/* @media (max-width: 992px) { 
    .login-item {
        width: 100%;
        margin-top: 10px;
    }
} */


/* Login Section */
.login-section{
    background: url('../images/img/main.png') center/cover no-repeat;
    min-height: 100vh;
    /* padding: 13rem 0; */
    position: relative;
}

.login-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8); /* Dark overlay with 60% opacity */
}

.login-section > * {
    position: relative;
    z-index: 1;
}



/* Main login container */
.login-container {
    background: #cdcdcde0;
    padding: 73px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 570px;
    height: 600px;
    position: relative;
}

.register-container {
    background: #cdcdcde0;
    padding: 73px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 830px;
    /* height: 600px; */
    position: relative;
}

.login-form label{
    color: rgb(93, 89, 108);
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 11px;
    line-height: 19px;
}

/* Header Styling */
h4 {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

.dashed-line {
    display: inline-block;
    width: 290px;
    border-bottom: 2px dashed rgb(75, 70, 92);
    margin-left: 5px;
    margin-bottom: 4px;
    position: relative;
}

.dashed-line::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 1px;
    transform: translateY(-50%);
    border-left: 10px solid rgb(75, 70, 92);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Toggle Button Styles */
.toggle-buttons {
    display: flex;
    justify-content: space-between;
    border: 2px solid rgb(0, 49, 139);
    border-radius: 7px;
    overflow: hidden;
    height: 51px;
    line-height: 18px;
    margin-bottom: 20px;
    background: transparent;
}

.toggle-btn {
    flex: 1;
    padding: 3px;
    margin: 4px 4px;
    /* font-weight: bold; */
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 6px;
    background: transparent;
    transition: all 0.3s ease-in-out;
    color: rgb(0, 49, 139);
}

.toggle-btn.active {
    background: rgb(0, 49, 139);
    color: white;
}


/* Form Styling */
.login-form {
    display: none;
}

.login-form p{
    font-size: 14px;
    margin-top: -0.6rem;
}

.login-form p a{
    color: rgb(0, 49, 139);
}
.login-form.active {
    display: block;
}

.login-btn-main{
    text-decoration: none;
    color: #fff !important;
    border: 1px solid #fff;
    border-radius: 4px;
    margin: 7px 0;
    letter-spacing: 0.02857em;
    text-transform: uppercase;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    /* background-color: rgb(26, 38, 92) !important; */
    background: var(--Gradient, linear-gradient(72deg, #00318B 22.16%, #2C549E 76.47%)) !important;
}
/* Input Fields */
.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* Password Eye Icon */
.password-container {
    position: relative;
}




/* Main Section */
.home-hero-section {
    position: relative; /* Needed for the overlay */
    background: url('../images/img/home-hero.jpg') center/cover no-repeat;
    padding: 13rem 0; 
}

.story-hero-section {
    position: relative; /* Needed for the overlay */
    background: url('../images/img/bg-story.png') center/cover no-repeat;
    padding: 7rem 0; 
}

.banner-slide {
  height: 900px; 
  background-size: cover;
  background-position: center;
}


.story-hero-section::before, .home-hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* D
}

.home-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay with 60% opacity */
}

/* Ensures the content inside is positioned above the overlay */
.home-hero-section > *, .story-hero-section > * {
    position: relative;
    z-index: 1;
}




.hero-title{
    font-weight: 700;
    text-transform: uppercase;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 53px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    line-height: 63.6px;
    text-transform: uppercase;
    letter-spacing: 5px;

}
.hero-subtitle{
    margin: 0px;
    font-family: Roboto, Helvetica, Arial, sans-serif;
    font-size: 53px;
    font-weight: 400;
    color: rgb(255, 255, 255);
    line-height: 106px;
    text-transform: uppercase;
    letter-spacing: 5px;

}

.general-subtitle-p1 {
    font-weight: 400;color:rgb(72, 72, 72);
    font-size:20px
}
.general-subtitle-p2{
    font-size:42px;
}
.mid-section {
    height: 300px;
    width: 100%;
    background-color: #e0e0e0;
}

.success-btn{
    font-size: 18px;
    padding: 6px 41px;
    text-transform: uppercase;
    background-color: rgb(247, 202, 24);
    border: 1px solid rgb(247, 202, 24);
    border-radius: 4px;
    color: white;
    font-weight: 700;
    height: 51px;
    width: 100%;
}
/* .success-btn:hover{
    background-color: rgb(212, 171, 5);
} */

.success-text{
    font-family: Roboto, Helvetica, Arial, sans-serif;
}

.carousel-image-container {
    width: 100%;
    max-height: 400px; /* Set a height limit */
    overflow: hidden;
}

.carousel-image-container img {
    color: transparent;
    width: 100%;
    height: auto;
    aspect-ratio: 1.25 / 1;
    object-fit: cover;
    max-width: 527px;
    min-width: 530px;
}
.css-103jyth {
    user-select: none;
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentcolor;
    flex-shrink: 0;
    color: rgb(75, 70, 92);
    margin-right: 10px;
    font-size: 30px;
    cursor: pointer;
    transition: fill 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

#imageCarousel .carousel-indicators {
    margin-bottom: 0rem; /* Adds spacing below the carousel */
    position: relative;
    margin-left: 0%;
    margin-right: 0%;
}

#imageCarousel .carousel-indicators [data-bs-target]{
    background-color: rgb(177, 173, 173) ;
    width: 61px ;
    height: 6px ;
}

#imageCarousel .carousel-indicators [data-bs-target].active{
    background-color: rgb(247, 202, 24) ;
    width: 61px;
    height: 6px;
}

.gallery-container .col-3{
    padding-right: 0px;
    padding-left: 0px;
}
.gallery-row-1, .gallery-row-2 {
    padding: 0; /* Remove spacing */
    overflow: hidden; /* Prevent overflow issues */
}

.gallery-row-1 {
    height: 400px;
}

.gallery-row-2 {
    height: 230px;
}

.gallery-row-1 img, .gallery-row-2 img {
    width: 100%; /* Ensure images take the full width */
    height: 100%; /* Ensure images take the full height */
    object-fit: cover; /* Ensures images scale properly without distortion */
    display: block; /* Removes default spacing around images */
}

.career-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    /* border-radius: 50%; */
}

.career-list p{
    font-family: Roboto, Helvetica, Arial, sans-serif;
    color: rgb(34, 34, 34);
    font-size: 18px;
    line-height: 25.2px;
    letter-spacing: 1.8px;

}

.career-list small{
    font-family: Roboto, Helvetica, Arial, sans-serif;
    letter-spacing: 1px;
    font-size: 12px;
    color: rgb(159, 159, 159);
}

.career-btn{
    height: 46px;
    background-color: rgb(233, 233, 233)!important;
    color: rgb(72, 72, 72)!important;

}

.event-calendar {
    min-height: 100px;
}


/* Footer */

.footer-btn{
    text-transform:uppercase;
    font-size:12px !important;
    letter-spacing: 1px;
    background-color:  rgb(247, 202, 24) !important;
}

.footer-text{
    font-size: 12px;
    font-family:'EB Garamond', serif;
}

.footer-mid h6{
    font-family:'EB Garamond', serif;
    color: rgb(117, 117, 117);
    text-transform: uppercase;
}

.footer-mid {
    display: flex;
    align-items: center; /* Centers vertically */
    justify-content: center; /* Centers horizontally */
}

.footer-mid li{
    font-family:'EB Garamond', serif;
    color: rgb(34, 34, 34);
    font-size: 12px;
    font-weight: 400;
    line-height: 31.2px;
    text-transform: uppercase;
}

.css-11x30m3 {
    width: 100%;
    height: 35px;
    background-color: rgb(26, 38, 92);
}


