@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;1,100;1,300;1,400;1,500&display=swap');

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all .2s linear;
    text-decoration: none;
}

:root {
    --default-font: "Open Sans",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
  }

:root {
    --my-color: #5da2e6;
    --my-color2: #2c4a83;
    --heading-color: #191919;
    --contrast-color: #ffffff;
    --headline-fs: 6rem;
    --text-fs: 2rem;
    --text2-f2: 1.6rem;
    --blue-gradient: linear-gradient(
  to bottom right,
  #5da2e6 0%,
  #5697d8 9%,
  #508ccc 18%,
  #4a81bf 27%,
  #4476b3 36%,
  #3e6ba7 45%,
  #38609b 54%,
  #32558f 63%,
  #2c4a83 72%,
  #263f77 81%,
  #20356c 90%,
  #1a2b61 100%
);
}

.mobile-menu {
  position: fixed; /* Stays on screen while scrolling */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  overflow-y: auto; /* Allow scrolling inside menu */
  display: none; /* Hidden by default */
  top: 50px;
}

/* header */

.header-container2 {
  top: 0;               /* stick to top of page */
  left: 0;
  right: 0;
  z-index: 1000;        /* ensure it stays above content */
  box-shadow:rgba(5, 0, 56, 0.1) 0px 4px 6px -2px;
  position: fixed;      /* keeps it in place */
  background-color: white;
} 

.header-container {
  max-width: 1200px;
  background-color: white;
  margin: 0 auto;   /* center horizontally */
  padding: 0 20px;  /* small padding for mobile */

}

.heading, .clients .section-header h2, .section-head h1, .testimonials .section-header h2, .section-head-1 h4{
    margin: 2rem;
    padding-top: 6rem;
    display: inline-block;
    font-size: 3.5rem;
    color: #000000;
    position: relative;
    letter-spacing: .2rem;
}

.heading::before, .heading::after, .clients .section-header h2::before, .clients .section-header h2::after, .section-head h1::before, .section-head h1::after, .testimonials .section-header h2::before, .testimonials .section-header h2::after, .section-head-1 h4::before, .section-head-1 h4::after{
    content: '';
    position: absolute;
    height: 2.5rem;
    width: 2.5rem;
    border-top: .4rem solid #000000;
    border-left: .4rem solid #000000;
}

.heading::before, .clients .section-header h2::before, .section-head h1::before, .testimonials .section-header h2::before, .section-head-1 h4::before{
    top: 5.8rem;
    left: -2rem;
}

.heading::after, .clients .section-header h2::after, .section-head h1::after, .testimonials .section-header h2::after, .section-head-1 h4::after{
    bottom: -.5rem;
    right: -2rem;
    transform: rotate(180deg);
}

.row .btn{
    outline: none;
    border: none;
    border-radius: 5rem;
    background: white;
    border-style: groove;
    border-color: #002e5f;
    font-size: 1.5rem;
    cursor: pointer;
    height: 3.5rem;
    width: 15rem;
    box-shadow: 0 .2rem .5rem rgba(0,0,0,.3);
}

.row .btn:hover{
    letter-spacing: .1rem;
    opacity: .9;
    color: white;
    background: #5da2e6;
}

.topbar {
  background-color: white;
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: transform 0.3s ease;
  overflow: hidden; /* Ensure content does not overflow when height is reduced */
  position: fixed;
  width: 100%;
}

.topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: var(--header-color);
  text-decoration: none;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .ms-4 {
    margin-left: 10px !important;
  }

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 10px !important;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  text-decoration: underline !important;
}

.topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
  text-decoration: none;
}

.topbar .social-links a:hover {
  color: var(--accent-color);
}

.logo-container {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px; /* spacing between logo and text */
}

.logo-container:hover {
  text-decoration: none;
}


.logo-container img {
  max-height: 40px;
}

.logo-container .logo-text {
  font-size: 28px;
  font-weight: bold;
  color: #333333;
  font-family: 'Montserrat', sans-serif;
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
    z-index: 100;
    max-width: 100%; height: auto;
}

.header .logo img{
    width: 70px;
    height: auto;
    top: 0;
    left: 0;
}

@media (max-width: 500px){
    .header .logo img{
        width: 100px;
        height: auto;
        top: 0;
        left: 0;
    }
}




.header .navbar ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 0 !important;
}

.header .navbar ul li{
    margin: 0px;
}

.header .navbar ul li a {
  font-size: 16px;
  color: var(--heading-color);
  padding: 22px 10px;
  box-shadow: inset 0 -5px transparent;
  transition: box-shadow 0.3s ease;
}

.header .navbar ul li a:hover {
  box-shadow: inset 0 -5px var(--my-color);
  text-decoration: none;
}

.header .navbar ul li:nth-child(7) a {
    display: none;
}


.header .logo i{
    padding: 0.5rem;
}

.header .fa-bars{
    color: #fff;
    cursor: pointer;
    font-size: 3rem;
    display: none;
}



@media (max-width: 1150px){
    html{
        font-size: 50%;
    }
    .header .fa-bars{
        display: block;
        color: 	white;
        margin-right: 1rem;
    }

    .header .fa-bars:hover{
        color: #ffffff;
    }

    .header .navbar{
        position: fixed;
        top: -120%;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(255, 255, 255);
        z-index: 1000;
        border-top: .1rem solid rgba(0,0,0,.3);
        border-bottom: 5px solid #5da2e6;
    }

    .nav-button{
        display: none;
    }

    .header .navbar ul{
        height: 100%;
        width: 100%;
        flex-flow: column;
    }

    .header .navbar ul li{
        margin: 1rem 0;
    }

    .header .navbar ul li a{
        color:#5da2e6;
        font-size: 2.4rem;
    }

    .header .fa-times{
        transform: rotate(90deg);
    }

    .header .nav-toggle{
        top: 5.8rem;
    }

    .header .navbar ul li:nth-child(7) a {
        display:flex;
    }
    
}

/* end header */


.mobile-menu-close {
  position: absolute;
  top: 0px;
  right: 25px;
  font-size: 40px;
  color: #333;
  pointer-events: none; /* makes it non-clickable */
}

.mobile-menu.active {
  display: block;
}

/* Optional: style links */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  padding: 11px;
  border-bottom: 1px solid #ddd;
}

.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-size: 17px;
}

.mobile-nav-toggle {
  display: none;
  width: 30px;
  height: 16px; /* smaller height for closer lines */
  flex-direction: column;
  justify-content: space-between; /* lines still evenly spaced */
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
  -webkit-appearance: none; /* Safari */
  -moz-appearance: none; /* Firefox */
  appearance: none;
}

/* Show toggle only on smaller screens */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: flex;
  }
  .navmenu {
    display: none;
  }
}

/* The two lines */
.mobile-nav-toggle span {
  display: block;
  width: 100%;
  height: 4px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* When menu is open, transform into X */
.mobile-nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-nav-toggle.open span:nth-child(2) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile menu */
#mobileMenu {
  display: none;
}

#mobileMenu.active {
  display: block;
}


.button-container {
    display: flex; 
    gap: 10px; 
    align-items: center;
}
    
.nav-button {
  background: var(--blue-gradient);
  color: white;
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
    text-decoration: none;
      color: white;
}

.download-button {
  background: white;
  color: var(--my-color2);
  border: 2px solid var(--my-color2);
  margin-left: 10px;
  border-radius: 8px;
  font-size: 17px;
  height: 45px;
  letter-spacing: 1px;
  padding: 12px 20px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-button:hover {
    text-decoration: none;
      color: white;
}

@media (max-width: 1800px){
    .nav-button {
        left: 80%;
    }
}


@media (max-width: 1500px){
    .nav-button {
        left: 75%;
    }
}

@media (max-width: 1150px){
    .download-button{
        display: none;
    }
    .nav-button{
        display: none;
    }
}