@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 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: 160px;
    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: 'Poppins', 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: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.navbar .btn:hover {
    background-color: #D48806;
}

#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: 'Poppins', sans-serif;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


.bannertext h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}


.bannertext p {
    font-size: 18px;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}


.homepage .btn {
    background-color: #D48806;
  
    border-radius: 5px;
    color: white;
    padding: 8px 24px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease-in-out;
  
}

.homepage .btn:hover {
    background-color: #D48806;
    color: #000;
}



@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: linear-gradient(to bottom, #0F3B59, #1c5a84);


    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: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.overview .text-content p {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    text-align: justify;
}


.overview .btn {
    background-color: #D48806;
    padding: 8px 24px;
    border-radius: 5px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 20px;
    transition: background 0.3s ease-in-out;
    
}

.overview .btn:hover {
    background-color: #D48806;
    color: #000;
}


.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: 24px;
    font-family: 'Poppins', sans-serif;
    color: #D48806;
    font-weight: 600;
}
.opportunities .btn {
    background-color: #D48806;
    padding: 8px 24px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
}
.opportunities .btn:hover{
    background-color: #D48806;
    color: #000;
}

.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: 18px;
    color: #0F3B59;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}
.opportunities .box p{
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}

.opportunities .read-more, .read-less {
   
    color: #D48806;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    float: right;
}
.opportunities .read-more:hover{
    text-decoration: underline;
}

/* Expanded Content */
.opportunities .expanded-content {
    display: none;
    margin-top: 50px;
    text-align: left;
}
.opportunities .expanded-content p{
   font-size: 13px;
   text-align: justify;
}
.opportunities .expanded-content h4{
    font-size: 13px;
    font-weight: 600;
 }

.opportunities .expanded-content ul {
    padding-left: 20px;
 
}
.opportunities .expanded-content ul li{
    font-size: 13px;
    text-align: justify;
 
}

/* 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: 'Poppins', 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: linear-gradient(to bottom, #0F3B59, #1c5a84);
}

.testimonials-section h2 {
    font-size:24px;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Poppins', 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: 'Poppins', sans-serif;
    text-align: justify;

}

.testimonial h3 {
    font-size: 18px;
    color: #fff;
    margin-top: 10px;
    font-family: 'Poppins', 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: #D48806;
}

/* Navigation Buttons */
.nav-btn {
    
    display: none;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial p {
        font-size: 13px;
    }

    .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: 24px;
    font-family: 'Poppins', sans-serif;
    color: #D48806;
    font-weight: 600;
}

.companies .btn {
    background-color: #D48806;
    padding: 8px 24px;
    border-radius: 5px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease-in-out;
}

.companies .btn:hover {
    background-color: #D48806;
    color: #000;
}

.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-----------------------------------------*/

.site-footer
{
  background-color:#1c1c1e;
  padding:45px 0 20px;
  font-size:14px;
  line-height:24px;
  color:#fff;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  font-size: 15px;
  color:#fff;
  text-decoration:none;
  line-height: 30px;
}
.site-footer a:hover
{
  color:#D48806 !important;
  
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#fff
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#fff;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}

.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer 
  {
    text-align:center
  }
}


/*--------------------------Modal------------------------------------------------*/
.modal-content {
    border-radius: 10px;
    padding: 20px;
}
.modal-header {
    border-bottom: none;
}
.modal-body {
    text-align: left;
}
.btn-close {
    background: none;
    border: none;
}