:root {
    --dark-blue: #001b79;
    --white: #fff;
    --orange: #e03616;
    --black:#000;
    --light-blue:#f1f8ff;
    --grey:#333333;
    --main: #fff;
    --accent: #03274a;
    --shadow: #1a1a1a;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}



body {
    background-color: var(--white); 
    margin:0;
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}


* {
    margin: 0;
    padding: 0;
    border: 0;
}

a {
    text-decoration: none !important;
}

.navigation-pannel {
    position: absolute;
    width: 100%;
    background-color: var(--white);
}

/* Add to your CSS */
.navigation-pannel {
    position: absolute;
    width: 100%;
    background-color: var(--white);
    min-height: 80px; /* Reserve space */
}

.nav-logo img {
    display: none;
    width: 30%;
    height: auto;
    /* Set dimensions to prevent layout shift when displayed */
    aspect-ratio: 16/9; /* Adjust based on your logo */
}

/* Improve AOS performance */
[data-aos] {
    transition: transform 1s ease, opacity 1s ease; 
    will-change: transform, opacity; /* Hint browser for optimization */
}

/* Reserve space for animated elements */
.home-about {
    min-height: 400px; /* Adjust based on content */
}

.navigation-bar {
    position: sticky;
    width: 100%;
}

.primary-header {
    position: relative;
}

.primary-header-inner {
    padding: 10px 0px;
    width: 100%;
}

.headerlinks a {
    padding: 10px 0px;
    color: #080808;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
}

.headerlinks h5 {
    padding-left: 10px;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-style: normal;
    line-height: 22px;
    color: #080808;

}

.headerlinks .bx {
    padding: 10px 0px;
    font-size: 26px;
    line-height: 22px;
    color: var(--orange)
}

.headerlinks i {
    font-size: 26px;
}

.secondary-header {
    background-color: var(--dark-blue);
    width: 100%;
}

.topnav {
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    background-color: var(--dark-blue);
}

.nav-inner {
    height: 100%;
    align-items: center;
}

.topnav a {
    font-size: 17px;
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    padding: 14px 16px;
    text-transform: uppercase;
    text-decoration: none;
}

.topnav .active {
    color: var(--orange);
}

.topnav .icon {
    display: none;
    font-size: 2rem
}

.topnav .contt {
    display: none;
}

.dropdown-head {
    float: left;
    font-size: 17px;
    overflow: hidden;
}

.dropdown-head .dropbtn {
    font-size: 17px;
    border: none;
    color: #f2f2f2;
    font-family: "Montserrat", sans-serif;
    outline: none;
     display: block;
    color: #f2f2f2;
    text-align: center;
    font-family: "Montserrat", sans-serif;
    padding: 14px 16px;
    text-transform: uppercase;
    text-decoration: none;
    background-color: var(--dark-blue);
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    font-size: 17px;
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 210px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    font-family: "Montserrat", sans-serif;
    padding: 12px 16px;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    font-size: 17px;
    text-align: left;
}

.topnav a:hover,
.dropdown-head:hover .dropbtn {
    background-color: transparent;
    color: var(--orange);
}

.dropdown-content a:hover {
    background-color: var(--white);
    color: var(--orange);
}

.dropdown-head:hover .dropdown-content {
    display: block;
}

.nav-logo img {
    display: none;
}

.nav-left {
    display: flex;
    align-items: center;
}

.navbar-text {
    display: flex;
    align-items: center;
    margin-right: auto;
    /* This pushes .navbar-text to the right */
}

.navbar-text a:hover {
    color: var(--white);
}

.navbar-text a:active {
    color: var(--white);
}

.navbar-text a:focus {
    color: var(--white);
}

@media screen and (max-width: 1200px) {

    .topnav a:not(:first-child),
    .dropdown-head .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: left;
        display: block;
        position: fixed;
        left: 0;
        top: 0px;
    }

    .topnav a.contt {
        float: right;
        display: block;
        position: fixed;
        right: 5%;
        top:15px;
        background-color: #fff;
        color: var(--dark-blue);
        border-radius: 5px;
        border: 2px solid var(--dark-blue);
    }

    .topnav a.contt:hover {
        background-color: #fff;
    }


    .nav-logo img {
        margin-left: 20px;
        display: block;
        width: 30%;
        height: 30%;
    }

    .nav-left {
        display: block;
    }

    .topnav a {
        float: left;
        display: block;
        color: var(--dark-blue);
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
    }

    

    .topnav a:hover,
    .dropdown-head:hover .dropbtn {
        background-color: transparent;
        color: var(--orange);
    }

    .dropdown-content a:hover {
        background-color: var(--white);
        color: var(--orange);
    }
}
@media screen and (max-width: 1200px) {
    .navbar-text {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .primary-header {
        display: none;
    }
    .secondary-header {
        
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    }
    .secondary-header, .topnav {
        background-color: var(--white);
        width: 100%;
    }

    .topnav.responsive {
        position: relative;
    }

    .topnav.responsive .icon {
        position: fixed;
        background-color: var(--white);
        right: 0;
        top: 10px;
    }

    .topnav.responsive .contt {
        position: fixed;
        background-color: var(--white);
        right: 30%;
        top: 10px;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        color: var(--dark-blue);
        background-color: var(--white);
        text-align: left;
    }

    .topnav.responsive .dropdown-head {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
        box-shadow: none;
    }

    .topnav.responsive .dropdown-head .dropbtn {
        display: block;
        width: 100%;
        color: var(--dark-blue);
        background-color: var(--white);
        text-align: left;
    }

    .dropdown-head .dropbtn {
        box-shadow: none;

    }
}

/* home banner start */

/* home banner end */
/* home about start */
.home-about {
    padding: 50px 10px;
}

[data-aos] {
    transition: transform 1s ease, opacity 1s ease; 
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
    opacity: 0; 
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1; 
}

[data-aos="fade-left"] {
    transform: translateX(50px);
    opacity: 0; 
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1; 
}



.content-img  {
    padding: 10px;
}
.horizontal-line {
    background-color: var(--orange); width: 70px; height: 3px; position: relative;margin-top:20px;
}
.content-head {
    color: var(--dark-blue);
    font-size: 38px;
    font-family: "Montserrat", Sans-serif;
    font-weight: 600;
    margin-top: 20px;
    line-height: 42px;
}
.content-head-bottom {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 600;
    font-family: "Montserrat", Sans-serif;
    margin-top: 20px;
    line-height: 30px;
}
.content-para{
    color: #7B7A7A;
    font-family: "Montserrat", Sans-serif;
    font-size: 16px;
    text-align: left;
    margin-top: 20px;
    font-weight: 400;
    line-height: 28px;
}
.as_btn {
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    line-height: 24px;
    fill: #03274A;
    color: #03274A;
    background-color: #02010100;
    padding: 0px 0px 0px 0px;
}
.as_btn span {
    display: flex;
    align-items: center;
}
.as_btn i {
    color: var(--orange);
    padding-left: 10px;
    font-size: 1.5rem;
}

@media screen and (max-width: 996px) { 
    .content-head {
        font-size: 26px;
    }
    .content-head-bottom {
        font-size: 16px;
        line-height: 24px;
   
    }
}
