@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Navbar Styling */
header {
    background: #fff;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
}

.logo img {
    width: 260px;
    height: auto;
}

/* Menu items */
.nav-links {
    list-style: none;
    display: flex;
    margin-top: 14px;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
    text-transform: capitalize;
    font-weight: 600;
}

/* Hover effect - underline animation */
.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #f99a22;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar .btn {
    background-color: #f99a22;
    padding: 8px 24px;
    border-radius: 5px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.navbar .btn:hover {
    background-color: #b37004;
}

#menu-toggler {
    display: none;
}

#hamburger-btn {
    display: none;
    cursor: pointer;
}

#hamburger-btn svg {
    fill: #000;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    #hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background:#f99b27;
        width: 100%;
        text-align: center;
        flex-direction: column;
        padding: 20px 0;
    }
    .logo img{
        width: 50px !important;
    }

    .nav-links li {
        margin: 10px 0;
    }

    #menu-toggler:checked ~ .nav-links {
        display: flex;
    }

    .navbar .btn {
        display: none; 
    }
}


/* ---------------------About Us---------------------------------------*/

.homepage {
    position: relative;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.homepage img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #e12025;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .homepage{
        margin-top: 65px;
    }
    .homepage img{
        height: auto;
    }
    .about-text {
        font-size: 24px;
        padding: 8px 15px;
    }
}

/*-------------------------------------Overview---------------------------------*/
.overview {
    width: 100%;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff; /* Light background */
}

.overview-content {
    max-width: 1050px;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
}

.overview-content h2 {
    font-size: 28px;
    color: #2fa895;
    font-weight: bold;
    margin-bottom: 15px;
   
}

.overview-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .overview-content h2 {
        font-size: 24px;
    }

    .overview-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .overview {
        padding: 30px 15px;
    }

    .overview-content h2 {
        font-size: 20px;
    }

    .overview-content p {
        font-size: 14px;
    }
}

/*----------------------------Highlights-------------------------------------*/




.highlights {
    padding: 20px;
    background:#f5f5f5;
    margin-top: 50px;
    width: 85%;
    margin: auto;
    border-radius: 10px;
    margin-bottom: 50px;
}

.highlights .content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
  
}

.highlights .content-header h2 {
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #000;
    font-weight: 600;
    line-height: 25px;
}

.highlights .btn {
    background-color: #f99a22;
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
}

.highlights .btn:hover {
    background-color: #B06D04;
}

@media (max-width: 480px) {
    .highlights {
        width: 95%;
        padding: 10px;
    }
    .highlights .content-header{
        flex-direction: column;
        text-align: center;
       
    }

    .highlights .content-header h2 {
        font-size: 16px;
        line-height: 20px;
    }

    .highlights .btn {
        font-size: 12px;
        width: 100%; 
        padding: 10px;
        margin-top: 20px;
    }
}

/*----------------------------Director -------------------------------------*/

.director {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 10px;
    width: 85%;
    margin: auto;
    margin-top: 50px;
}


.director img {
    width: 100%; 
    height: auto;
    border-radius: 10px;
}


.director div {
    flex: 1; 
}

.director h2 {
    font-size: 24px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 5px;
}

.director span {
    font-size: 16px;
    color: #f99a22;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.director p {
    font-size: 12px;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}


@media (max-width: 768px) {
    .director {
        flex-direction: column; 
        text-align: center;
    }

    .director img {
        width: 100%; 
    }

    .director p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .director img {
        width: 100%; 
    }

    .director h2 {
        font-size: 20px;
    }

    .director p {
        font-size: 12px;
    }
}

/*---------------------------------------Values-----------------------------------------*/

.values {
    text-align: center;
    padding: 20px;
    background: #f5f5f5;
    margin-top: 50px;
}

.values h2 {
    font-size: 28px;
    color: #0F3B59;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    text-align: start;
    margin-left: 80px;
    margin-top: 30px;
}

.values img {
    width: 100%; 
    
    height: auto;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .values img {
        width: 80%; 
    }
    .values h2 {
        font-size: 20px; 
        margin-left: 0px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .values h2 {
        font-size: 20px; 
        margin-left: 0px;
        text-align: center;
        margin-top: 0px;
    }

    .values img {
        width: 100%; 
    }
}


/*-----------------------------Diversity--------------------------------------*/

.diversity {
    text-align: center;
    padding: 20px;
    background: #fff;
    width: 85%;
    margin: auto;
    margin-top: 50px;
}

.diversity h2 {
    font-size: 28px;
    color: #0F3B59;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    text-align: start;
}

.diversity p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: start;
}

.diversity h3 {
    font-size: 20px;
    color: #f99a22;
    font-weight: bold;
    margin-top: 25px;
}

.diversity img {
    width: 100%; 
    height: auto;
    margin-top: 10px;
    border-radius: 10px;
}



@media (max-width: 480px) {
    .diversity{
        width: 100%;
        margin-top: 10px;
    }
    .diversity h2 {
        font-size: 20px;
        text-align: center;
    }
    .diversity P{
        text-align: justify;
    }

    .diversity h3 {
        font-size: 18px;
    }

    .diversity p {
        font-size: 14px;
        padding: 0 10px;
    }

    .diversity img {
        width: 100%; 
    }
}




/*-----------------------Footer page-----------------------------------------*/

a,
a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
}

a,
a:active,
a:focus {
    color: #6f6f6f;
    text-decoration: none;
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
max-width: 100%;
height: auto;
}
section {
    padding: 60px 0;
    min-height: 100vh;
}
.footer {
padding: 100px 0px 0px;
background-color: #030a16;
}


.footer .widget1 p {
font-size: 16px;
color: rgba(255, 255, 255, .6);
margin-top: 26px;
}

.footer .socialLinks {
margin-top: 28px;
}

.socialLinks ul li {
display: inline-block;
}


.socialLinks ul li a i {
display: block;
margin: 0 2px;
width: 40px;
height: 40px;
background: #fafafa;
border-radius: 50%;
text-align: center;
margin-right: 5px;
line-height: 40px;
-webkit-transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.socialLinks ul li a .fa-facebook-f {
color: #4267b2;
}

.socialLinks ul li a .fa-twitter {
color: #1da1f2;
}

.socialLinks ul li a .fa-google-plus-g {
color: #dd5044;
}

.socialLinks ul li a .fa-linkedin-in {
color: #0177b5;
}


.socialLinks ul li a:hover i {
color: #fff;
}

.socialLinks ul li a:hover .fa-facebook-f {
background: #4267b2;
}

.socialLinks ul li a:hover .fa-twitter {
background: #1da1f2;
}

.socialLinks ul li a:hover .fa-google-plus-g {
background: #dd5044;
}

.socialLinks ul li a:hover .fa-linkedin-in {
background: #0177b5;
}
footer .logo {
max-width: 200px;
}

.footer h5 {
font-weight: 500;
margin-bottom: 28px;
text-transform: capitalize;
font-weight: 600;
color: #fff;
font-size: 21px
}

.footer .widget2 .media img {
margin-right: 20px;
max-width: 100px;
}
.footer .widget2 .media p {
font-size: 16px;
color: rgba(255, 255, 255, .8);;
-webkit-transition: all .3s ease-in-out;
-moz-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
font-weight: 600;
line-height: 26px;
}

.footer .widget2 .media span {
font-size: 12px;
color: #ffb606;
text-transform: uppercase;
margin-top: 15px;
display: block;
}

.footer .widget2 .media {
margin-bottom: 20px;
}

.footer .widget3 ul li a,
.footer .widget4 ul li a {
font-size: 16px;
color: rgba(255, 255, 255, .6);;
text-transform: capitalize;
margin-bottom: 13px;
display: block;
}

.footer .widget3 ul li a:hover,
.footer .widget4 ul li a:hover,
.footer .widget2 a:hover p {
color: #ffb606;
}

.footer .widget3 h5 {
margin-bottom: 22px;
font-weight: 600;
color: #fff;
font-size: 21px;
line-height: 32px;
}

.footer .widget4 h5 {
margin-bottom: 22px;
font-weight: 600;
color: #fff;
font-size: 21px;
}

.copyRightArea {
margin-top: 83px;
border-top: 1px solid rgba(255, 255, 255, 0.2);
padding: 25px 0px 28px;
}

.copyRightArea p {
color: rgba(255, 255, 255, 0.6);
}

/*--------------------------Modal------------------------------------------------*/
.modal-content {
    border-radius: 10px;
    padding: 20px;
}
.modal-header {
    border-bottom: none;
}
.modal-body {
    text-align: left;
}
.btn-close {
    background: none;
    border: none;
}

