@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: #faf5e9!important;
}

.sec-cmn-pad{
    padding: 100px 0px;
}

.sec-btm-pad{
    padding-bottom: 100px;
}

ul{
    padding: 0px;
    list-style-type: none;
}

a{
    text-decoration: none;
    display: inline-block;
}

p{
    font-size: 15px;
    line-height: 24px;
    color: #7e7e7e;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

h1{
    font-size: 32px;
    line-height: 1.3;
    color: #0B3D91;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

h2{
    font-size: 22px;
    line-height: 1.3;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

h3{
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.cmn-btn{
    padding: 16px 40px;
    border-radius: 10px;
    color: white;
    background-color: #2e8367;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: .5s ease-in-out;
}

.cmn-btn:hover{
    background-color: #204e34;
}



/* navbar  */

.logo a{
    width: 150px;
    height: 100%;
}

.logo a img{
    width: 100%;
    height: 100%;
}

/* Basic navbar styling */
.navbar {
    background-color: #0B4A5D;
    color: rgb(0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease; 
}

/* Logo styling */
.navbar .logo {
    font-size: 1.5rem;
}

/* Menu styling */
.navbar .menu {
    display: flex;
    gap: 0.5rem;
}

/* Link styling */
.navbar .menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem;
    transition: background 0.3s;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

/* Hover effect for links */
.navbar .menu a:hover {
    background-color: #d8d8d8;
}

/* Toggle button for mobile view */
.toggle-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile view adjustments */
@media (max-width: 768px) {
    .navbar .menu {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .navbar .menu.active {
        display: flex;
    }

    .toggle-btn {
        display: block;
    }
}

/* Shadow effect when scrolling */
.navbar.scrolled {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* More prominent shadow when scrolled */
}


  .search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem auto;
    max-width: 600px;
  }

  .search-container input[type="text"] {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 150px;
    width: 100%;
  }

  .search-container button {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .search-container button:hover {
    background-color: #555;
  }

  @media (max-width: 500px) {
    .search-container {
      flex-direction: column;
    }

    .search-container input[type="text"],
    .search-container button {
      width: 100%;
      border-radius: 4px;
    }

    .search-container button {
      margin-top: 0.5rem;
      border-radius: 4px;
    }

    .search-container input[type="text"] {
      border-radius: 4px;
      border-right: 1px solid #ccc;
    }
  }

  .social-links-main a{
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .social-links-main a i{
    font-size: 20px;
    color: #0B3D91;
  }





  /* main-1 area  */

  .main-1-ad{
    width: 100%;
    background-color: #d9d9d9;
    height: 100%;
  }

  .main-1-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }




    /* main-2 area  */

    .main-2-img-box img{
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 15px;
    }






    /* last-slider area */

    .last-slider-parent-box{
        margin: 0px 10px;
    }

    .last-slider-img-box img{
        width: 100%;
        height: 300px;
        object-fit: cover;
    }



    /* footer area */

    .ftr-sec{
        background-color: #0B4A5D;
        padding: 100px 0px 30px 0px;
    }

    .ftr-sec .btn{
        background-color: rgb(0, 0, 0);
        color: #ffffff;
        transition: .5s ease-in-out;
    }

    .ftr-logo-box a{
        width: 250px;
        height: 100%;
        margin-bottom: 30px;
    }

    .ftr-logo-box a img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .ftr-sec .btn:hover{
        background-color:#2b79ff;
    }

    .ftr-sec label{
        font-size: 15px;
        color: white;
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

    .ftr-sec input::placeholder{
        font-size: 13px;
        color: rgb(128, 128, 128);
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

    .ftr-sec textarea::placeholder{
        font-size: 13px;
        color: rgb(128, 128, 128);
        font-weight: 400;
        font-family: "Poppins", sans-serif;
    }

    .ftr-list li a{
        color: white;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        transition: .3s ease-in-out;
        margin-bottom: 10px;
    }

    .ftr-list li a:hover{
        margin-left: 10px;
    }

    .address-box i{
        color: rgb(0, 0, 0);
        font-size: 25px;
    }

    .social-links a{
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: white;
        transition: .5s ease-in-out;
        margin-right: 15px;
    }

    .social-links a:hover{
        background-color: black;
    }

    .social-links a:hover i{
        color: white;
    }

    .social-links a i{
        color: #0B4A5D;
        font-size: 20px;
        transition: .5s ease-in-out;
    }

    .store-links a {
        margin-bottom: 15px;
    }

    .store-links a img{
        width: 100px;
        height: 100%;
    }

    .last-p a{
        color: black!important;
        font-weight: bold;
        transition: .5s ease-in-out;
    }

    .last-p a:hover{
        text-decoration: underline;
    }






    /* slick dots */

    /* Change the position of the dots */
.slick-dots {
    bottom: -40px; /* Adjust vertical position */
    text-align: center; /* Align dots in the center */
}

/* Style the dot buttons */
.slick-dots li button {
    background-color: #ccc; /* Light gray color for inactive dots */
    border-radius: 50%; /* Make the dots circular */
    width: 12px; /* Size of the dot */
    height: 12px; /* Size of the dot */
    margin: 0 5px; /* Space between the dots */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* Style the active dot */
.slick-dots li.slick-active button {
    background-color: #0B3D91; /* Blue color for active dot */
    transform: scale(1.2); /* Slightly enlarge the active dot */
}

/* Optional: Customize the hover effect */
.slick-dots li button:hover {
    background-color: #666; /* Darker gray color on hover */
}
.news-ad-div {
    height: 100%;
    background-color: #d9d9d9;
}
.news-ad-div {
    width: 100%;
    /* padding: 75px 0px; */
    height: 100%;
    background-color: var(--silver);
}
.weather-widget h4 {
    margin: 0 0 10px;
    font-size: 16px;
}
.weather-days {
    display: flex;
    justify-content: space-between;
}
.weather-widget .day {
    text-align: center;
    flex: 1;
}
.weather-widget .label {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 5px;
}
.weather-widget .icon {
    font-size: 20px;
}
.weather-widget .temp {
    margin-top: 5px;
}
.weather-widget .temp strong {
    display: block;
    font-size: 14px;
}
.weather-widget .temp span {
    font-size: 12px;
    color: #555;
}
.weather-widget .see-more {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}
.weather-widget .see-more:hover {
    text-decoration: underline;
}


.myVideoSlider {
  width: 90%;
  margin: 40px auto;
}

.swiper-slide {
    display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  min-width: 250px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  height: 140px;
  object-fit: cover;
}
.swiper-slide h4 {
  font-size: 15px;
  text-align: center;
  color: #000;
  margin-top:15px;
}
.swiper-button-next, .swiper-button-prev {
    top: var(--swiper-navigation-top-offset,40%) !important;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}

.swiper-slide i{
    font-size: 35px;
    color: #ff0000;
    position: absolute;
    top: 42%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* Mobile full screen width */
@media (max-width: 575px) {
    .myVideoSlider {
        width: 100%;
        margin: 25px 0;
        padding: 0 12px;
    }

    .myVideoSlider .swiper-slide {
        width: 100% !important;
    }

    .myVideoSlider .swiper-slide img {
        width: 100%;
        min-width: 100%;
        height: 300px;
        border-radius: 12px;
    }

    .myVideoSlider .swiper-slide h4 {
        font-size: 16px;
        margin-top: 12px;
        padding: 0 8px;
    }

    .myVideoSlider .swiper-slide i {
        font-size: 42px;
        top: 40%;
    }
}

/* Very small mobile */
@media (max-width: 380px) {
    .myVideoSlider .swiper-slide img {
        height: 260px;
        min-width: 380px;
    }
    .myVideoSlider {
        width: calc(100% - 25px) !important;
        margin-left: 12px !important;
        margin-right: 12px !important;
    }
}

.menu-item-gtranslate {
    display: none !important;
}

.lang-tran-div{
    margin: 0px 0 20px 0;
}
.news-ad-div {
    width: 100%;
    margin-bottom: 24px;
}

.news-ad-div .weather-widget {
    width: 100%;
    background: linear-gradient(135deg, #102a43 0%, #1f78b4 100%);
    border-radius: 20px;
    padding: 22px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 14px 35px rgba(16, 42, 67, 0.22);
    position: relative;
    overflow: hidden;
}

.news-ad-div .weather-widget::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 145px;
    height: 145px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 50%;
}

.news-ad-div .weather-widget::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: -45px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.news-ad-div .weather-widget h4 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.news-ad-div .weather-widget h4 img {
    width: 22px;
    height: 22px;
}

.news-ad-div .weather-days {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    position: relative;
    z-index: 1;
}

.news-ad-div .weather-days .day {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 15px;
    padding: 13px 7px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.news-ad-div .weather-days .day:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.news-ad-div .weather-days .label {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 9px;
}

.news-ad-div .weather-days .icon {
    margin-bottom: 8px;
}

.news-ad-div .weather-days .icon img {
    width: 34px;
    height: 34px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.25));
}

.news-ad-div .weather-days .temp {
    min-height: 18px;
    color: #ffffff;
    font-size: 13px;
}

.news-ad-div .weather-days .temp strong {
    font-size: 17px;
    font-weight: 800;
}

.news-ad-div .weather-days .temp span {
    opacity: 0.8;
}

.news-ad-div .weather-widget .see-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 10px 18px;
    background: #ffffff;
    color: #102a43;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.news-ad-div .weather-widget .see-more:hover {
    background: #eef6ff;
    color: #0b4f7a;
    transform: translateY(-2px);
}

@media (max-width: 575px) {
    .news-ad-div .weather-widget {
        padding: 18px;
        border-radius: 16px;
    }

    .news-ad-div .weather-widget h4 {
        font-size: 19px;
    }

    .news-ad-div .weather-days {
        grid-template-columns: repeat(2, 1fr);
    }
}
.story-sec-ad-div {
    width: 100%;
    margin-bottom: 28px;
}

.story-sec-ad-div .trend-widget {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 2px;
    box-shadow: 0 12px 30px rgba(15, 50, 90, 0.10);
    border: 1px solid #e8eef5;
    font-family: Arial, Helvetica, sans-serif;
    overflow: hidden;
}

.story-sec-ad-div .trend-widget::before {
    /*content: "Trending Stories";*/
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #edf3f8;
}

.story-sec-ad-div .trend-widget li {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
}

.story-sec-ad-div .trend-widget li:last-child {
    margin-bottom: 0;
}

.story-sec-ad-div .trend-widget a {
    display: block;
    position: relative;
    padding: 2px 2px 2px 42px;
    background: #f7fbff;
    border: 1px solid #edf3f8;
    border-radius: 14px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.story-sec-ad-div .trend-widget a::before {
    content: "↗";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: #0b74bc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 13px;
    line-height: 24px;
    text-align: center;
    font-weight: 800;
    transition: all 0.3s ease;
}

.story-sec-ad-div .trend-widget a:hover {
    background: #0b74bc;
    border-color: #0b74bc;
    color: #ffffff;
    transform: translateX(6px);
    box-shadow: 0 10px 22px rgba(11, 116, 188, 0.22);
}

.story-sec-ad-div .trend-widget a:hover::before {
    background: #ffffff;
    color: #0b74bc;
}

@media (max-width: 575px) {
    .story-sec-ad-div .trend-widget {
        padding: 14px;
        border-radius: 14px;
    }

    .story-sec-ad-div .trend-widget::before {
        font-size: 19px;
        margin-bottom: 12px;
    }

    .story-sec-ad-div .trend-widget a {
        font-size: 14px;
        padding: 12px 12px 12px 42px;
    }
}
@media (max-width: 991px) {
.lang-tran-div{
    margin: 0px 0 0px 0;
}
}

/* slider css */

.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.slider {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-in-out;
}

.slider-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  gap: 5px;
  flex: 0 0 230px;
  max-width: 230px;
}

.slider-item img {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  object-fit: cover;
}

.slider-item p {
  margin-top: 3px;
  font-size: 12px;
  color: #333;
  font-weight: 500;
  line-height:20px;
  margin-bottom: 0px;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background-color: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-arrow.left {
  left: 45px;
}

.slider-arrow.right {
  right: 45px;
}

.slider-arrow:hover {
  color: #ff4c4c; /* Optional hover effect */
}

/* Responsive Design */
@media (min-width: 1200px) { /* XXL & XL */
  .slider-item {
    width: calc(100% / 6 - 20px); /* 6 slides visible */
  }
}

@media (min-width: 992px) and (max-width: 1199px) { /* LG */
  .slider-item {
    width: calc(100% / 4 - 20px); /* 4 slides visible */
  }
}

@media (min-width: 768px) and (max-width: 991px) { /* MD */
  .slider-item {
    width: calc(100% / 3 - 20px); /* 3 slides visible */
  }
}

@media (min-width: 576px) and (max-width: 767px) { /* SM */
  .slider-item {
    width: calc(100% / 2 - 20px); /* 2 slides visible */
  }
}

@media (max-width: 575px) { /* XS */
  .slider-item {
    width: 100%; /* 1 slide visible */
  }
}

.home-banner-title{
    text-align: center;
}
.footer-advertise-link{
   font-size: 18px;
}
#contactClose {
    position: absolute;
    top: 10px;
    right: 14px;
    border: 0;
    background: transparent;
    font-size: 30px;
    cursor: pointer;
}
.header-advertise-link{
    color: #fff;
    margin-bottom: 1rem;
}
.footer-advertise-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 10px 20px;
    background: #ffffff;
    color: #0b4f5f !important;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.footer-advertise-link:hover {
    background: #f2994a;
    color: #ffffff !important;
    border-color: #f2994a;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(242, 153, 74, 0.35);
}

.footer-advertise-link::after {
    content: "→";
    margin-left: 8px;
    transition: all 0.3s ease;
}

.footer-advertise-link:hover::after {
    margin-left: 14px;
}
@media (max-width: 575px) {
    .footer-advertise-link {
        padding: 9px 16px;
        font-size: 14px;
        margin-top: 10px;
    }
}

.search-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.search-box {
    width: 100%;
    margin: 0 auto !important;
    position: relative;
}

.search-box .search-form {
    width: 100%;
    margin: 0;
}

.search-box .search-inner {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: 100%;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.search-box .search-field {
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 52px !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    padding: 0 18px !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.search-box .search-field::placeholder {
    color: #777777;
    opacity: 1;
}

.search-box .search-btn {
    flex: 0 0 120px !important;
    width: 120px !important;
    height: 52px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 18px !important;
    background: #0b4f5f !important;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-box .search-btn:hover {
    background: #f2994a !important;
    color: #ffffff !important;
}

/* Remove browser default X from search input */
.search-box input[type="search"]::-webkit-search-cancel-button,
.search-box input[type="search"]::-webkit-search-decoration,
.search-box input[type="search"]::-webkit-search-results-button,
.search-box input[type="search"]::-webkit-search-results-decoration {
    -webkit-appearance: none;
    appearance: none;
    display: none;
}

.search-box input[type="search"] {
    -webkit-appearance: none;
    appearance: none;
}

/* Hidden input must not create gap */
.search-box input[type="hidden"] {
    display: none !important;
}

/* Auto search dropdown */
.search-box .auto-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    border: 1px solid #eeeeee;
    z-index: 99999;
}

.search-box .auto-search-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.search-box .auto-search-list li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #edf0f5;
}

.search-box .auto-search-list li:last-child {
    border-bottom: 0;
}

.search-box .auto-search-list li a {
    display: block;
    padding: 13px 18px;
    color: #1f2937;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
    text-decoration: none;
    transition: all 0.25s ease;
}

.search-box .auto-search-list li a::before {
    content: "🔎";
    margin-right: 9px;
    font-size: 13px;
}

.search-box .auto-search-list li a:hover {
    background: #eef8fb;
    color: #0b4f5f;
    padding-left: 24px;
}

/* If old social-box class is still present */
.search-box .social-box {
    display: flex !important;
    gap: 0 !important;
}

/* Responsive */
@media (max-width: 575px) {
    .search-container {
        max-width: 100%;
        padding: 0 16px;
    }

    .search-box .search-inner {
        border-radius: 8px;
    }

    .search-box .search-field {
        height: 46px !important;
        font-size: 14px;
        padding: 0 14px !important;
    }

    .search-box .search-btn {
        flex-basis: 90px !important;
        width: 90px !important;
        height: 46px !important;
        font-size: 14px;
        padding: 0 12px !important;
    }

    .search-box .auto-search-results {
        max-height: 280px;
        border-radius: 10px;
    }

    .search-box .auto-search-list li a {
        font-size: 14px;
        padding: 12px 14px;
    }
}


.toggle-btn {
    display: none;
    font-size: 30px;
    color: #ffffff;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-wrap .menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-wrap .menu li {
    list-style: none;
}

.mobile-menu-wrap .menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 991px) {
    .toggle-btn {
        display: block;
    }

    .mobile-menu-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0b4f5f;
        padding: 15px;
        z-index: 9999;
        box-shadow: 0 12px 28px rgba(0,0,0,0.18);
    }

    .mobile-menu-wrap.active {
        display: block;
    }

    .mobile-menu-wrap .menu {
        display: block;
    }

    .mobile-menu-wrap .menu li {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .mobile-menu-wrap .menu li:last-child {
        border-bottom: 0;
    }

    .mobile-menu-wrap .menu li a {
        display: block;
        padding: 12px 0;
        color: #ffffff;
        font-size: 16px;
    }
}




