
@font-face {
    font-family: 'Acumin';
    src: url('../fonts/Acumin-RPro.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Acumin";
}

p {
    font-family: "Acumin";
    text-align: justify;
}
li{
    font-family: 'Acumin';
    font-weight: normal;
}
/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* styles related to navbar */
.fixed-top {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 10vh;
    max-height: 120px;
    width: auto;
}

.logo-text {
    line-height: 1.05;
    color: #0D2348;
}
.multi-line {
    display: none;
}

@media (max-width: 1180px) {
    .single-line {
        display: none !important;
    }
    .multi-line {
        display: inline !important;
    }
}


/* for nav links  */

a {
    color: #0D2348 !important;
    text-transform: capitalize !important;
}

/* body */

body {
    font-family: 'Acumin';
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    color: #0D2348;
    overflow-y: scroll;
    overflow-x: hidden;
}



.hero-text {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-weight: bold;
    width: 55%;
    font-size: clamp(1rem, 5vw, 5rem); 
}

/* Text color utility classes */
.text-light { color: #fff; }
.text-dark-blue { color: #0D2348; }

.hero-container {
    min-height: calc(100vh - var(--navbar-height));
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
}

.hero {
    height: auto;
    min-height: 300px;
    width: 100%;
    object-fit: cover;
}



.banner {
    background-image: url('../images/home/banner.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.banner::after {
    background: linear-gradient(to right, #0D2348, transparent);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient();
    z-index: -1;
}

.banner-text {
    width: 80%;
    text-align: left;
}

@media(min-width: 768px) {
    .banner-text {
        width: 60%;
    }
}

@media(min-width: 992px) {
    .banner-text {
        width: 36%;
    }
}

/*styling for Placeholder images */

.placeholder-img-one::after,
.placeholder-img-two::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D2348;
    opacity: .7;
    z-index: -1;
}

.placeholder-img-one {
    position: relative;
    background: url('../images/home/team1.jpg') no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    height: 15rem;
    z-index: 2;
}

.placeholder-img-two {
    position: relative;
    background: url('../images/home/team2.jpg') no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    height: 15rem;
    z-index: 2;
}

.team-banner {
    background: linear-gradient(to right, white, rgba(255, 255, 255, 0)),
        url('../images/about/team-banner.png');
    background-position: center 25%;
    background-size: cover;
    background-repeat: no-repeat;
}


/* styling for footer  */

footer {
    position: relative;
    background: url('../images/Pattern.png') no-repeat;
    font-size: 0.9rem;
    background-position: center;
    background-size: cover;
    z-index: 2;
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0D2348;
    z-index: -1;
    opacity: 0.97;
}

.form-select.custom-select {
    background-color: #0d2348;
    color: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="white" class="bi bi-chevron-down" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
    border-radius: 0;
}

.form-select.custom-select option {
    background-color: white;
    color: #0d2348;
}

.form-control {
    border-radius: 0;
    border-color: #0D2348;
}

label::after {
    content: ' *';
    color: red;
}

.submit-button {
    background: #fff;
    color: #0D2348;
    border: none;
    transition: background-color 0.7s ease;
}

.submit-button:hover {
    background-color: #0D2348;
    color: white;
}

.h-60 {
    height: 60%;
}

.h-40 {
    height: 40%;
}


.h-100 {
    height: 100%;
}

.h-double {
    height: 200%;
}

.h-single {
    height: 100%;
}

@media (max-width: 768px) {

    .h-double,
    .h-single {
        height: auto;
    }
}

body.modal-open {
    padding-right: 0 !important;
}

::placeholder {
    color: white !important;
    opacity: 1;
}
.flag{
    border-radius: 5px; width: 90px; height: 60px;
}