* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans Pro";
  }
    @font-face{
      font-family:"Source Sans Pro";
      font-style:normal;
      font-weight:400;
      src:url(https://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7g.ttf) format("truetype")
    }
    body {
      background: #01108d;
      color: white;
      font-size: 16px;
      line-height: 1.5; /* 24px */

    }
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
    p  { font-size: 16px; line-height: 1.5; }

    

    /*  Main Header */
    header {
      position: fixed;
      top: 40px;
      width: 100%;
      height: 75px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 0 60px;
      z-index: 999;
      background: transparent;
      transition: all 0.3s ease;
      grid-template-columns: auto 1fr auto;
    }

    header.scrolled {
      background: transparent;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    header.scrolled-1 {
      background: #fff;
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    }
    .scrolled-1 nav a{
        color: #051590;
        font-weight: 600;
    }
    .scrolled-1 nav .dropdown a{
      color: #1f2937;
    }
    .scrolled-1 nav .dropdown a:hover{
      color: #051590;
    }
    .scrolled-1 .login,
    .scrolled-1 .btn-demo{
        color: #051590;
        font-weight: 600;
    }
    .scrolled-1 .menu-toggle{
        color: #051590;
    }

    .logo {
      justify-self: start;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: 1px;
    }
    .neve-site-logo {
        max-width: 120px;
      
        border-radius: 5px;
        background: linear-gradient(#ffffff, #ffffff);
        margin-top: 4px;
    }

    nav {
      display: flex;
      gap: 40px;
      justify-self: start;
      margin-left: 40px; 
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      font-family: Inter, Arial, sans-serif;
    }

    .header-actions {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .login {
      color: white;
      text-decoration: none;
      font-size: 15px;
      font-family: Inter, Arial, sans-serif;
      font-weight: 600;
    }

    .btn-demo {
      font-family: Inter, Arial, sans-serif;
      background: white;
      color: black;
      padding: 12px 26px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
    }

    /*  Mobile Styles */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
    }

    @media (max-width: 900px) {
      header {
        grid-template-columns: auto auto;
      }

      nav {
        position: fixed;
        top: 120px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #000;
        padding: 20px;
        display: none;
        text-align: center;
      }

      nav.active {
        display: flex;
      }

      .header-actions {
        display: none;
      }

      .menu-toggle {
        display: block;
        justify-self: end;
      }
      .scrolled-1 nav a {
        color: white;
      }
      .scrolled-1 nav .dropdown a{
          color:#051590;
      }
    }

    /*  Hero Section */
.hero{
  position:relative;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding-top:120px;
}

/* Video */
.hero video{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

/* Overlay */
.hero::after{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.4),
    rgba(0,0,0,.85)
  );
  z-index:-1;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: 52px;
  line-height: 1.1;
  font-weight: 500;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  max-width: 650px;
  opacity: 0.8;
}

.hero .btn-main {
  margin-top: 30px;
  display: inline-block;
  background: white;
  color: black;
  padding: 12px 42px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}



    /* ===== TOP BAR ===== */
.top-bar{
  background:#0b0f6b;
  color:#fff;
    position: fixed;
    top: 0;
    width: 100%;
    height: 40px;
    background: #01108d;
    color: #eee;
    z-index: 1000;
}

.top-bar .container{
  max-width:1440px;
  margin:auto;
  padding: 8px 60px;
  display:flex;
  justify-content:flex-end;   /* ALIGN CONTENT TO RIGHT */
  align-items:center;
}

/* Content wrapper */
.top-content{
  display:flex;
  align-items:center;
  gap:2px;
}

/* Phone */
.top-phone{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:17px;
}

/* Social */
.top-social{
  display:flex;
  align-items:center;
  gap:4px;
}

.top-social a{
  color:#fff;
  font-size:16px;
  transition:0.3s;
  padding: 3px 8px 3px 8px;
}

.top-phone span:before {
    content: "\f2a0";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 8px;
    display: inline-block;
}

/* ===== Mobile Responsive ===== */
@media(max-width:768px){
  /*.top-bar .container{
    justify-content:center;
  }*/
  .top-content{
    flex-wrap:wrap;
    justify-content:center;
    gap:12px;
  }
}

 /* Why is Fleetgroup */
 .fleet-section {
  padding: 80px 20px;
  background: #f9fbfd;
  font-family: 'Inter', sans-serif;
}

.fleet-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: start;
  gap: 60px;
}

/* LEFT SIDE */
.fleet-title {
  font-size: 50px;
  font-weight: 700;
  color: #1e2d3d;
  margin-bottom: 20px;
}

.fleet-subtitle {
  font-size: 32px;
  font-weight: 500;
  color: #324b6b;
  margin-bottom: 40px;
}

.fleet-quote {
  font-size: 18px;
  color: #3b4b5f;
  line-height: 1.6;
  border-left: 4px solid #1f75fe;
  padding-left: 20px;
}

/* RIGHT SIDE */
.fleet-desc {
  font-size: 18px;
  color: #41536a;
  margin-bottom: 25px;
  line-height: 1.6;
}

.fleet-list li {
  font-size: 20px;
  color: #2c3a4b;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
}

.tick {
  color: #1f75fe;
  font-size: 22px;
  margin-right: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .fleet-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .fleet-title {
    font-size: 42px;
  }

  .fleet-subtitle {
    font-size: 26px;
  }
}

@media (max-width: 600px) {
  .fleet-title {
    font-size: 34px;
  }

  .fleet-subtitle {
    font-size: 22px;
  }

  .fleet-quote,
  .fleet-desc,
  .fleet-list li {
    font-size: 18px;
  }
}


.who-fleet .fpn-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 22px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}
.who-fleet .fpn-svg {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00108d, #01118e);
    display: flex;
    align-items: center;
    justify-content: center;
}
.who-fleet .fpn-box h4 {
    color: #01108d;
    font-size: 18px;
}
.who-fleet .fpn-box p {
    color: #4b5563;
}


/*our Services*/
.section{padding:72px 30px;max-width:1200px;margin:0 auto}
    .section-title{text-align:center;margin-bottom:46px}
    .section-title h2{font-size:34px;color:#fff}

    .cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px}
    .card{background:#fff;border-radius:16px;padding:26px;text-align:center;box-shadow:0 15px 40px rgba(10,44,107,.06);transition:.28s}
    .card:hover{transform:translateY(-8px)}
    .card img{width:64px;margin-bottom:14px}
    .card h3{color:#00108d;margin-bottom:10px;font-size:24px}
    .card p{font-size: 18px; color: #4b5563; margin-bottom: 16px;line-height: 1.6;}
    .our-services .our-links a {
        display: inline-block;
        margin-top: 12px;
        margin-right: 12px;
        padding: 8px 18px;
        background: #071f63;
        color: #fff;
        border-radius: 30px;
        font-size: 16px;
        text-decoration: none;
    }




    /*FleetNetwork*/
    .fpn-unique {
  padding: 90px 15px;
  background: linear-gradient(135deg, #eef3ff, #ffffff);
  
}
.fpn-unique h4{
    color: #01108d;
    font-size: 24px;
    padding: 10px 0px;
}
.fpn-unique p{
    color: #4b5563;
    line-height: 1.6;
    font-size: 18px;
}

.fpn-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  align-items: start;
}
  .fpn-unique .section-title{text-align:center;margin-bottom:46px}
 .fpn-unique .section-title h2{font-size:34px;color:#01108d}

/* LEFT MEDIA */
.truck-card {
  position: relative;
  background: #fff;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.truck-img {
  width: 100%;
  border-radius: 20px;
}

.video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 90px;
  height: 90px;
  border: none;
  border-radius: 50%;
  background: radial-gradient(circle, #01108d, #00108d);
  cursor: pointer;
}

.video-play svg {
  width: 34px;
  height: 34px;
  fill: white;
}


/* RIGHT CONTENT */
.fpn-content h2 {
  font-size: 38px;
  color: #081f5c;
  margin-bottom: 20px;
}

.fpn-cta {
    width: 300px;
    display: flex;
    padding: 16px 44px;
    background: linear-gradient(90deg, #ff0000, #c00000);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.fpn-text {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-top: 22px;

}

/* FEATURE BOX */
.fpn-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  border-radius: 22px;
  margin-bottom: 22px;
}



/* SVG ICON STYLE */
.fpn-svg {
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00108d, #01118e);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fpn-svg svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
}

/* INLINE LINKS */
.fpn-links a {
  display: inline-block;
  margin-top: 12px;
  margin-right: 12px;
  padding: 8px 18px;
  background: #071f63;
  color: #fff;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .fpn-wrap {
        display: block;
  }
  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .fleet-section {
    padding: 56px 18px;
  }
  .fpn-unique .section-title {
      margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .fpn-wrap {
        display: block;
  }
  .fleet-header h2 {
    font-size: 2rem;
  }

  .fleet-card {
    padding: 22px 20px;
  }
  .fpn-unique .section-title {
      margin-bottom: 10px;
  }
}

/*Out Clent*/

.clients-alt {
  position: relative;
  padding: 80px 24px;
  color: #f9fafb;
  overflow: hidden;
}

/* Background image + overlay (replace URL) */
.clients-alt-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.6)),
    url("/application/modules/Ipseo/externals/images/newlanding/e458d53a3d8f479da65419b4ae54a75b.webp") center/cover no-repeat;
  filter: saturate(1.1);
  z-index: -1;
  background-attachment: fixed;
}

.clients-alt-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.clients-alt-left {
  max-width: 580px;
}

.clients-alt-label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e5e7eb;
}

.clients-alt-left h2 {
  font-size: 2.3rem;
  margin: 14px 0 10px;
}

.clients-alt-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #e5e7eb;
  opacity: 0.92;
}

.clients-alt-left p + p {
  margin-top: 10px;
}

/* Right side: pill grid */
.clients-alt-right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.client-pill {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.client-pill:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  background: rgba(15, 23, 42, 0.95);
}

/* Responsive */
@media (max-width: 900px) {
  .clients-alt-inner {
    grid-template-columns: 1fr;
  }

  .clients-alt {
    padding: 64px 18px;
  }

  .clients-alt-right {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

@media (max-width: 600px) {
  .clients-alt-left h2 {
    font-size: 2rem;
  }
}


/*Past Project*/
   /* Section wrapper */
.values-section {
  background: #fff;
  padding: 80px 20px;
  color: #00108d;
}

.values-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.values-subtitle {
  color: #888;
  font-size: 14px;
  letter-spacing: 2px;
}

.values-title {
  font-size: 42px;
  margin: 10px 0;
}

.values-desc {
  max-width: 700px;
  margin: 0 auto 60px;
  color: #c9c9c9;
  line-height: 1.6;
}

/* Grid Layout */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Cards */
.value-card {
  background: #13131a;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #1f1f2a;
  text-align: left;
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: #01108d;
}

/* Icons */
.value-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #7dd3fc;
}
.value-icon img{
    width: 60px;
}

/* Card Title */
.value-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
  color: #fff;
}

/* Card Text */
.value-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #a9a9b6;
}

/* Responsive */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-title {
    font-size: 32px;
  }
}





/*Exp*/
.slick-testimonials {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 16px;
  }

  .slick-heading {
    text-align: center;
    margin-bottom: 40px;
  }

  .slick-heading h2 {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .slick-heading p {
    color: #94a3b8;
    font-size: 0.95rem;
  }

  .slick-slider {
    position: relative;
    overflow: hidden;
  }

  .slick-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .slick-slide {
    min-width: 100%;
    padding: 10px 30px;
  }

  .slick-card {
    background: #fff;
    border-radius: 20px;
    padding: 60px 100px;
    border: 1px solid rgba(148,163,184,0.4);
    height: 100%;
  }

  .slick-quote {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4b5563;
  }

  .slick-user {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .slick-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    background: #00108d;
    flex-shrink: 0;
  }

  .slick-name {
    font-weight: 600;
    font-size: 18px;
    color: #00108d;;
  }

  .slick-role {
    font-size: 16px;
    color: #19191b;
  }

  /* Slick-style dots */
  .slick-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: rgba(148,163,184,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .slick-dots button.active {
    width: 26px;
    background: #fff;
    border-radius: 20px;
  }

  /* Arrows */
  .slick-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: #01108d;
    border: 1px solid rgba(148,163,184,0.4);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s ease;
  }

  .slick-arrow:hover {
    border-color: #01108d;
  }

  .slick-prev { left: 3px; z-index:11 }
  .slick-next { right: 3px; z-index:11}

  /* Responsive */
  @media (max-width: 768px) {
    .slick-quote { font-size: 18px; }
    .slick-card { padding: 26px 22px; }
  }

  @media (max-width: 480px) {
    .slick-arrow { display: none; }
    .slick-avatar { width: 46px; height: 46px; }
  }



.who{
    padding-left: 20px;
    padding-top: 20px;
}
.who .slick-avatar{
  width: 40px;
    height: 40px;
  
}

  /* =========================
   DROPDOWN MENU DESIGN
========================= */

.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  position: relative;
}

/* Dropdown box */
.dropdown {
  position: absolute;
  top: 34px;
  left: 50%;
  transform: translateX(-12%);
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1000;
}

/* Arrow on top */
.dropdown-arrow {
  position: absolute;
  top: -3px;
  left: 14%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: white;
  rotate: 45deg;
  box-shadow: -5px -5px 15px rgba(0,0,0,0.05);
}

/* Dropdown links */
.dropdown a {
  padding: 14px 16px;
  border-radius: 5px;
  color: #1f2937;
  font-size: 15px;
  text-decoration: none;
  
}

/* Hover effect */
.dropdown a:hover {
  background: #f1f5ff;
  color: #051590;
  
}

/* Active item (About Us) */
.dropdown a.active {
  background: #f5f8ff;
  color: #051590;
  font-weight: 600;
}

/* Show dropdown on hover */
.has-dropdown:hover .dropdown {
  display: flex;
}
.mobil-login,
.mobile-btn-demo{
  display: none;
}

/* =========================
   MOBILE HANDLING
========================= */
@media (max-width: 900px) {
  .dropdown {
    position: static;
    transform: none;
    width: 100%;
    box-shadow: none;
    border-radius: 12px;
    margin-top: 10px;
  }

  .dropdown-arrow {
    display: none;
  }
  .mobil-login,
  .mobile-btn-demo{
    display: block;
  }
}

.sitemenu_toggle_button li {
        display: block;
}
.sitemenu_pannel_bottom_icons{
    display: none;
}
.top-social a img {
    width: 16px;
    display: block;
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 36px;
}
  .top-bar .container {
    padding: 10px 15px;
}
.top-content {
    display: flex;
    align-items: center;
    gap: 14px;
}
.sitemenu_pannel_icons{
    left: 15px;
    position: absolute;
    top: 5px;
    z-index: 99;

}
.sitemenu_toggle_button li i.menuiconbar {
    line-height: normal;
    vertical-align: top;
    width: 20px;
    height: 2px;
    display: block;
    margin-top: 4px;
    border-radius: 2px;
}
.sitemenu_toggle_button li {
    display: block;
    cursor: pointer;
    padding: 5px 4px;
    border-radius: 2px;
}
.sitemenu_toggle_button li {
        border: 2px solid white;
}
.sitemenu_toggle_button li i {
    background-color: white;
}
.sitemenu_toggle_button li i.menuiconbar:first-child {
    margin-top: 0;
}
header{
  background: #fff;
  height: 70px;
  padding: 0 15px;
}
header.scrolled {
    background: #fff;
}
nav {
    margin-left: 0px;
    background: #fff;
    gap: 0px;
    top: 40px;
}
nav a {
    background: #eaefff;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 16px;
    color: #444F5D !important;
    padding: 15px 15px;
}
nav .nav-item {
    background: #eaefff;
    margin-bottom: 15px;
    border-radius: 3px;
    font-size: 16px;
    color: #444F5D !important;
    padding: 15px 0px;
}
/*nav  a:hover,nav .dropdown a:hover,nav .nav-item a:hover {
  color: #7d7878 !important;
  background: #444 !important;
}*/


.dropdown {
    padding: 15px 0px;
    gap: 0px;
    border-radius: 0px;
    margin-top: 15px;
}
.dropdown a {
    padding: 9px 10px;
    font-size: 16px;
}
.menu-toggle .login, .menu-toggle .btn-demo{
  color: #01108D !important;
  font-weight: 600;
  padding:10px;
  font-family: Inter, Arial, sans-serif;
}

.nav-item.has-dropdown:after {
    position: absolute;
    content: "\f105";
    right: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}
.nav-item.has-dropdown.show:after
 {
    position: absolute;
    content: "\f107";
    right: 20px;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    top: 15px;
}
.nav-item.has-dropdown.show .dropdown a {
    background: #F8FAFF;
}
.nav-item.has-dropdown.show .dropdown {
    padding-bottom: 0;
}
.has-dropdown:hover .dropdown{
  display: none;
}
.has-dropdown.show .dropdown{
  display: flex;
}
.nav-item.has-dropdown.show {
    margin: 0;
    padding-bottom: 0;
}
.btn-demo{
  padding: unset;
}
.menu-toggle {
  display: flex;
  justify-self: end;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sitemenu_pannel_bottom_toggle {
    margin: 10px 0;
    padding: 5px 15px;
    border-radius: 20px 0 0 20px;
    cursor: pointer;
    width: 38px;
    box-sizing: border-box;
    float: right;
    background: rgba(0, 0, 0, 0.1);
}

.sitemenu_pannel_bottom_toggle i {
    color: #909090;
    font-size: 14px;
}
.active .sitemenu_pannel_bottom_icons {
    position: fixed;
    bottom: -25px;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: block;
}

nav {
    position: absolute;
    top: 0 !important;
    left: 0;
   /* width: 85%;
    max-width: 320px;*/
    flex-direction: column;
    background: white;
    padding: 20px 30px;
    display: flex;
    text-align: left;

    /* hidden by default */
    transform: translateX(-100%);
    transition: transform .3s ease-in-out;
    z-index: 9999;
    padding-bottom: 45px;
  }

  /* when active – slide in */
  nav.active {
    transform: translateX(0);
  }

  /* page overlay */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.4);
    z-index: 9998;
    display: none;
  }

  .nav-overlay.show {
    display: block;
  }

  .menu-toggle {
    font-size: 28px;
    cursor: pointer;
  }

  .header-actions {
    display: none;
  }

}



/*Header*/





/*Footer*/

  /*Footer*/

.footer {
  background: #f8fafc;
  padding: 60px 20px 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.footer h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.footer p {
  color: #555;
  font-size: 18px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul li a {
  color: #555;
  text-decoration: none;
  font-size: 18px;
}

.footer ul li a:hover {
  color: #0a0a7a;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #02026b;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.desc {
  margin-top: 10px;
}

/* Bottom bar */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  padding: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 18px;
  color: #777;
}

/*  Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .btn {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 425px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


@media (min-width: 901px) and (max-width: 1024px) {
nav {
      gap: 14px;
  }
}
/*Tablet*/

@media (min-width: 768px) and (max-width: 900px) {
  nav {
      gap: 0px;
      padding: 16px 65px;
      padding-bottom: 45px;
  }
}
/*Mobile*/
@media (max-width: 767px) {
  nav {
      gap: 0px;
      padding: 16px 35px;
      padding-bottom: 45px;
  }
  .top-bar .container {
    padding: 8px 15px;
  }
  .top-content {
      gap: 2px;
  }
  .top-social {
    gap: 2px;
  }
  .top-social a {
    padding: 5px 5px;
  }
  
}



