@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; 
    }
}


/* ---------------------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: #fff;
    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;
    }
  
    
}





/* -------------------------Contents-----------------------------------------*/

.content {
    padding: 20px;
    background: #f5f5f5;
}

.content-overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}


.col-lg-9 {
    width: 70%;
    padding: 20px;
}
.content-overview h2{
    font-size:28px ;
    color: #0F3B59;
    font-weight: 600;
    margin-bottom: 10px;
}
.content-overview p{
    font-size:14px ;
    color: #333;
    
}


.col-lg-3 {
    width: 28%;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: auto; 
}
.col-lg-3 h3{
    margin-bottom: 20px;
    color: #0F3B59;
    font-weight: 600;
}

.card {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    background: #fff;
   
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.card p {
    font-size: 12px;
    color: #0F3B59;
    padding: 10px;
}

.box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px; /* Space between boxes */
}

.box1 {
    width: calc(50% - 10px); /* Two boxes per row with spacing */
    border: 1px solid silver ;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}
.box .box1 h4{
    font-size: 15px;
    font-weight: 600;
}
.box .box1 p{
    font-size: 13px;
}

.approach {
    width: 100%; 
    background: linear-gradient(to right, #0F3B59, #1E5C83);
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin: auto;
    margin-top: 40px;
}

.approach h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #D48806;
}

.approach p {
    font-size: 13px;
    margin-bottom: 15px;
    color: #fff;
}

.approach ul {
    list-style-type: none;
    padding: 0;
}

.approach ul li {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}


.approach ul li::before {
    content: "✔"; 
    color: #FFD700;
    font-size: 16px;
    position: absolute;
    left: 0;
}

.content .btn {
    background-color: #D48806;
    padding: 8px 20px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
    display: flex;
    margin: auto;
}

.content .btn:hover {
    background-color: #B06D04;
}


@media (max-width: 768px) {
    .content {
        padding: 15px;
    }

    .content-overview {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .content-overview h2{
        font-size: 20px;
        text-align: center ;
    }
    .content-overview p{
        font-size: 13px;
        text-align: justify;
    }
  
   .col-sm-12 {
        width: 100%;
        padding: 15px;
    }

    .col-sm-12 {
        order: 2; /* Moves below main content */
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        
    }

    .card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
       
        width: 90%; 
        max-width: 400px;
        box-sizing: border-box;
        margin: 10px auto; 
    }

    .card img {
        width: 100%; 
        height: auto;
        display: block;
    }

    .card p {
        width: 100%; 
        padding: 10px;
        font-size: 12px;
    }
    .box {
        flex-direction: column;
        align-items: center;
    }

    .box1 {
        width: 100%; 
        text-align: center;
    }
    .approach {
        width: 100%; 
        padding: 20px;
        text-align: start;
    }

    .approach ul li {
        font-size: 13px;
        padding-left: 15px;
    }
}



/*-----------------------Footer page-----------------------------------------*/


.new_footer_area {
    background:  #0F3B59;
    
}
.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;
}


.content-overview a{
    text-decoration:none;
    
}