* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-style: normal;
    line-height: 1.6;
}

body p {
    margin-bottom: 32px;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.18px;
}

header {
    background-color: #415f9d;
    color: #fff;
}
.meet-our-team h2{
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom:20px;
    line-height: 36px;
}
#main-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1000;
    padding: 20px 0;
}

#main-header.scrolled {

    padding: 0px 0;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-logo {
    height: 60px;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-size: cover !important;
    height: 89vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    will-change: background-position;
}


.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 20px;
    width: 550px;
}

.hero button {
    padding: 10px 20px;
    background-color: #415f9d;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.hero button:hover {
    background-color: #233b6e;
}

.hero h1, .hero p, .hero button {
    opacity: 0;
    transform: translateY(30px);
}

.hero h1 {
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.hero p {
    transition: opacity 1s ease-out 0.5s, transform 1s ease-out 0.5s;
}

.hero button {
    transition: opacity 1s ease-out 1s, transform 1s ease-out 1s;
}

.hero.loaded h1 {
    opacity: 1;
    transform: translateY(0);
}

.hero.loaded p {
    opacity: 1;
    transform: translateY(0);
}

.hero.loaded button {
    opacity: 1;
    transform: translateY(0);
}

.about-us {
    padding: 60px 0;
    padding-top:0;
    background-color: #d3d6db;
}

.career-button{
    padding-top: 15px;
}

.aboutus-h {
    font-weight: 700;
    position: relative;
    display: inline-block;
    line-height: 43px;
    text-wrap: balance;
    text-transform: capitalize;
    font-size: 46px;
    margin-top: 80px;
    letter-spacing: -0.46px;
    padding-bottom: 16px;
    margin-bottom: 42px;
}

.aboutus-h:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #415f9d;
}

.about-us .row {
    align-items: center;
}

.about-us img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.about-text {
    padding: 20px;
}

.about-text h2 {
    font-size: 24px;
    letter-spacing: -0.24px;
    line-height: 36px;
}

.why-choose-us {
    background-color: #f9f9f9;
    padding: 60px 0;
    height: 750px;
}

.why-choose-us .container {
    margin-top: 80px;
}
.mobile{
    display:none;
}
.duotonebg {
    mix-blend-mode: multiply;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    color: #fff;
    font-weight: bold;
    margin-bottom: 80px;
}

.why-choose-us .icon img {
    filter: grayscale(100%) contrast(420%) brightness(100%) invert(1);
    height: 180px;
}


.why-choose-us h5 {
    color: #fff;
    font-size: 1.50rem;
    margin-top: 20px;
}

.why-choose-us p {
    color: #fff;
    font-weight: 300;
    font-size: 1rem;
    line-height: 2;
    margin-top: 30px;
}

.cta-ribbon {
    background: #294172;
    background: transparent -webkit-gradient(linear, left top, left bottom, from(#294172), to(#415f9d)) 0 0;
    background: transparent linear-gradient(180deg, #294172, #415f9d) 0 0;
    color: white;
    height: 20vh;
    padding: 30px 0;
    padding-top: 35px;
}

.cta-ribbon h4 {
    font-size: 3rem;
    margin-bottom: 30px;
    letter-spacing: -0.46px;
    font-weight: 100;
}

.cta-ribbon p {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.18px;
}

.cta-ribbon .btn-primary {
    padding: 10px 80px;
    font-size: 1.5rem;
    background: #172647;
    border-radius: 3px;
    border: none;
    font-weight: 500;
}

/* Meet Our Team Section Styling */
.meet-our-team {
    background-color: #d3d6db;
    padding: 60px 0;
}

.tm-img-container {
    width: 180px;
    overflow: hidden;
    height: 180px;
}

.tm-img-container img {
    width: 100%;
}

.meet-our-team .rounded-circle {
    border: 4px solid #415f9d; /* Add a border to the images */
    transition: transform 0.3s ease-in-out;
    margin: 0 auto;
}

.meet-our-team .rounded-circle:hover {
    transform: scale(1.1); /* Slight zoom on hover */
}

.meet-our-team h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 15px;
    color: #000000;
}

.meet-our-team video {
    position:relative;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#audio-control {
    position: absolute;
    bottom: 92px;
    right: 12px;
    cursor: pointer;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: inline-block;
    transition: color 0.3s ease-in-out;
}
#audio-control:hover {
    color: rgba(255, 255, 255, 1);
}


.meet-our-team .btn {
    padding: 10px 20px;
    background-color: #415f9d;
    color: #fff;
    border: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
}

.light-weight {
    font-weight: 300;
    color: #000 !important;
}

.our-history {
    background-color: #d3d6db;
    padding: 60px 0;
}

.our-history h2 {
    font-size: 24px;
    letter-spacing: -0.24px;
    margin-bottom: 20px;
    line-height: 36px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #415f9d;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 20px;
    margin: 20px 0;
}

.timeline-item .timeline-year {
    color: #415f9d;
    font-size: 1.8rem;
    font-weight: bold;
}

.timeline-content {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.timeline-content p{
    margin-bottom:0;

}

.timeline-item:nth-child(even) {
    align-self: flex-end;
}

.timeline-item:nth-child(odd) {
    align-self: flex-start;
}

.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

footer {
    /*background-color: #111 !important;*/
    background-color: #172647 !important;
    color: #f8f9fa !important;
    padding: 40px 0;
    letter-spacing: -0.18px;
    font-size: 0.9rem;
}

footer h5 {
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e0e0e0;
    font-weight: 300;
}

footer p {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #bbb;
}

footer a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #007bff;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #bbb;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}

footer .text-center {
    border-top: 1px solid #9a9a9a;
    padding-top: 20px;
    margin-top: 20px;
    color: #adb5bd;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 10px;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #ffffff;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #007bff;
}
@media (max-width: 1400px) {
    #audio-control {
        bottom: 170px;
    }
    .cta-ribbon .btn-primary {
        padding: 10px 41px;
        font-size: 1.3rem;
    }
    .cta-ribbon p {
        font-size: 17px;
    }

}
@media (max-width: 1200px) {
    #audio-control {
        bottom: 274px;
    }
}
@media (max-width: 992px) {
    #audio-control {
        bottom: 477px;
    }
}
@media (max-width: 768px) {
    #main-header{
        padding: 10px 0;
    }
    header .header-logo {
        height: 50px;
    }
    .hero {
        height: 70vh;
    }
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    .about-us .row {
        flex-direction: column;
        text-align: center;
    }
    #services{
        margin-top: -40px;
        z-index: 9;
        position: relative;
    }
    .mobile{
        display:block;
    }
    .desktop{
        display:none;
    }
    .why-choose-us {
        height: auto;
    }
    #audio-control {
        bottom: 8px;
    }
    .meet-our-team .row {
        flex-direction: column;
        text-align: center;
    }
    .cta-ribbon{
        display:none;
    }
    .navbar-nav{
        margin-top: 10px;
    }
}
@media (max-width: 480px) {
    .aboutus-h{
        font-size: 39px;
        margin-top: 50px;
    }
    #main-header {
        padding: 10px 10px;
    }
    .hero{
        padding:0 10px;
    }
    .hero p{
        width: auto;
    }
    .why-choose-us .container {
        margin-top: 50px;
    }
    .why-choose-us .icon img {
        height: 115px;
    }
    #main-header.scrolled {
        padding: 0px 10px;
    }
}
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.fade-in:nth-child(2) {
    transition-delay: 0.3s;
}

.fade-in:nth-child(3) {
    transition-delay: 0.5s;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}