@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: #0F3B59;
    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: white;
    text-decoration: none;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

/* Hover effect - underline animation */
.nav-links a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #D48806;
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
}

.navbar .btn {
    background-color: #D48806;
    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: white;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    #hamburger-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: #0F3B59;
        width: 100%;
        text-align: center;
        flex-direction: column;
        padding: 20px 0;
    }
    .logo img{
        width: 150px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    #menu-toggler:checked ~ .nav-links {
        display: flex;
    }

    .navbar .btn {
        display: none; 
    }
}

/*-------------------------------Homepage ------------------------------------*/

.homepage {
    position: relative;
    width: 100%;
    margin-top: 50px;
}


.homepage img {
    width: 100%;
    height: auto;
    display: block;
}

.bannertext {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    color: white;
    max-width: 40%;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.bannertext h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
}


.bannertext p {
    font-size: 18px;
    line-height: 1.5;
}


.homepage .btn {
    background-color: #D48806;
    padding: 12px 30px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Montserrat', sans-serif;
    transition: background 0.3s ease-in-out;
}

.homepage .btn:hover {
    background-color: #b37004;
}



@media (max-width: 768px) {
    .bannertext {
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 90%;
        text-align: center;
    }
    .homepage img {
         height: 320px;
       
    }

    .bannertext h1 {
        font-size:18px;
    }

    .bannertext p {
        font-size: 14px;
    }

    .homepage .btn {
        font-size: 14px;
        padding: 8px 15px;
    }
}




















/* -----------------------------Overview----------------------------------------------------*/


.overview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 8%;
    background: #0F3B59;
    color: white;
    position: relative;
   
    
}


.overview .text-content {
    max-width: 50%;
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 1s forwards ease-in-out;
    padding: 20px;
    
}

.overview .text-content h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.overview .text-content p {
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    text-align: justify;
}


.overview .btn {
    background-color: #D48806;
    padding: 8px 30px;
    border-radius: 5px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
    text-transform: uppercase;
}

.overview .btn:hover {
    background-color: #b37004;
}


.overview .banner-image {
    max-width: 50%;
    animation: fadeInRight 1s forwards ease-in-out;
    padding: 20px;
}

.overview .banner-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}


@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


@media (max-width: 768px) {
    .overview {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .overview .text-content {
        max-width: 100%;
        transform: translateX(0);
        animation: fadeInUp 1s forwards ease-in-out;
        padding: 10px;
    }

    .overview .text-content h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .overview .text-content p {
        font-size: 11px;
        text-align: justify;
    }

    .overview .btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .overview .banner-image {
        max-width: 100%;
        animation: fadeInUp 1s forwards ease-in-out;
        padding: 10px;
    }

    .overview .banner-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    @keyframes fadeInUp {
        0% {
            opacity: 0;
            transform: translateY(50px);
        }
        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}



/* ------------------------Opportunities ----------------------------*/


.opportunities {
    padding: 20px;
    background: #f5f5f5;
   
   
}

.opportunities .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.opportunities .header h2 {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #D48806;
    font-weight: bold;
}
.opportunities .btn {
    background-color: #D48806;
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    border: none;
}
.opportunities .btn:hover{
    background-color: #D48806;
}

.opportunities .box-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.opportunities .box {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
}
.opportunities .box h3{
    font-size: 16px;
    color: #0F3B59;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}
.opportunities .box p{
    font-size: 13px;
    font-family: 'Montserrat', sans-serif;
}

.opportunities .read-more, .read-less {
   
    color: #D48806;
    cursor: pointer;
    text-decoration: none;
    font-size: 12px;
    float: right;
}

/* Expanded Content */
.opportunities .expanded-content {
    display: none;
    margin-top: 50px;
    text-align: left;
}
.opportunities .expanded-content p{
   font-size: 12px;
}
.opportunities .expanded-content h4{
    font-size: 12px;
 }

.opportunities .expanded-content ul {
    padding-left: 20px;
 
}
.opportunities .expanded-content ul li{
    font-size: 14px;
 
}

/* Responsive */
@media (max-width: 768px) {
    .opportunities .box-container {
        grid-template-columns: 1fr; /* Single column layout */
    }

    .opportunities .expanded-content {
        display: none;
        margin-top: 50px;
    }
    .opportunities .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 30px;
    }
    
    .opportunities .header h2 {
        font-size: 16px;
        font-family: 'Montserrat', sans-serif;
        color: #D48806;
        font-weight: bold;
    }
    .opportunities .btn {
        background-color: #D48806;
        padding: 6px 25px;
        border-radius: 5px;
        color: white;
        font-size: 10px;
        font-weight: bold;
        cursor: pointer;
        border: none;
    }
}


/*----------------------------Testimonials --------------------------------------------------*/

.testimonials-section {
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    background: #0F3B59;
}

.testimonials-section h2 {
    font-size:22px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    color: #D48806;
    font-weight: 600;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: auto;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;


}

.testimonial p {
    font-size: 14px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;

}

.testimonial h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    font-family: 'Montserrat', sans-serif;
    color: #D48806;
    font-weight: 600;
}

.dots-container {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
    
}

.dot {
    width: 8px;
    height: 8px;
    background: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: #b37004;
}

/* Navigation Buttons */
.nav-btn {
    
    display: none;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial p {
        font-size: 16px;
    }

    .testimonial h3 {
        font-size: 18px;
    }
}

/*------------------------Companies -----------------------------------------------------------*/


.companies {
    padding: 20px;
    background: #fff;
    text-align: center;
    margin-top: 50px;
}

.companies .company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 53px;
    padding-right: 53px;
  
}

.companies .company-header h2 {
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    color: #D48806;
    font-weight: bold;
}

.companies .btn {
    background-color: #D48806;
    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;
}

.companies .btn:hover {
    background-color: #B06D04;
}

.company-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.company-logos img {
    width: 170px; 
    max-width: 100%;
    transition: transform 0.3s ease-in-out;
    border: 1px solid silver;
    padding: 10px;
    border-radius: 10px;
}

.company-logos img:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-logos img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .companies .company-header {
        flex-direction: column;
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
    }

    .company-logos {
        gap: 15px;
    }

    .company-logos img {
        width: 100px;
    }
}


/*-----------------------Footer page-----------------------------------------*/


.new_footer_area {
    background:  #0F3B59;
    margin-top: 50px;
}
.new_footer_area .footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 68px;
    padding-right: 68px;
    padding-top: 40px;
}

.new_footer_area .footer-header h2 {
    font-size: 35px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: bold;
}

.new_footer_area .btn {
    background-color: #D48806;
    padding: 10px 30px;
    border-radius: 5px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
}

.new_footer_area .btn:hover {
    background-color: #B06D04;
}

.new_footer_top {
    padding: 120px 0px 270px;
    position: relative;
    overflow-x: hidden;
}
.new_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}
.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #fff;
    padding: 27px 0px;
}
.new_footer_top .company_widget img{
    width: 240px;
    margin-bottom: 20px;
}
.new_footer_top .company_widget p {
    font-size: 14px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}
.btn_get_two:hover {
    background: transparent;
    color: #fff;
}
.btn_get:hover {
    color: #fff;
    background: #fff;
    border-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
    text-decoration: none;
    outline: none;
}



.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #fff;
}
.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}
.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
}
.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #fff;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    margin-top: 10px;
}
.ti-facebook:before {
    content: "\e741";
}
.ti-twitter-alt:before {
    content: "\e74b";
}
.ti-vimeo-alt:before {
    content: "\e74a";
}
.ti-pinterest:before {
    content: "\e731";
}

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #fff;
    border-color: #fff;
    color: #fff;
}

.btn_get_two:hover {
    background: transparent;
    color: #fff;
}

.new_footer_top .f_social_icon a:hover {
    background: #D48806;
    border-color: #D48806;
   color:white;
}
.new_footer_top .f_social_icon a + a {
    margin-left: 4px;
}
.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #fff;
}
.f_600 {
    font-weight: 600;
}
.f_size_18 {
    font-size: 18px;
}

.new_footer_top .f_widget.about-widget .f_list li a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
}
.new_footer_top .f_widget.about-widget .f_list li a:hover{
    color: #D48806;
}


.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
  background-size:100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
  background-size:100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}



@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

.terms a{
    text-decoration: none;
    color: #fff;
    margin: 10px;
    cursor: pointer;
}
.terms a:hover{
    color: #D48806;
}

@media (max-width:768px) {
    .new_footer_area .footer-header {
        flex-direction: column;
        text-align: center;
        padding-left: 0px;
        padding-right: 0px;
    }
    .new_footer_area .btn{
        margin-top: 10px;
    }
    .new_footer_area .footer-header h2 {
        font-size: 25px;
        font-family: 'Montserrat', sans-serif;
        color: #fff;
        font-weight: bold;
    }
    .terms a{
        text-decoration: none;
        color: #fff;
        margin: 6px;
        cursor: pointer;
       font-size: 13px;
    }
    .btn:hover{
        background-color: #B06D04;
    }
}


/*--------------------------Modal------------------------------------------------*/
.modal-content {
    border-radius: 10px;
    padding: 20px;
}
.modal-header {
    border-bottom: none;
}
.modal-body {
    text-align: left;
}
.btn-close {
    background: none;
    border: none;
}