*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-family: var(--it-ff-heading);
}
:root{
    --bg-color:#0c7f72;
    --top-bar-color:#004030;
    --text-color:#d5d5d5;
    --light-color:rgb(255, 255, 255);
    --heading-font: cursive;
    --sub-heading-color: #0e5950;
    --heading-font-size: 19.5px;
    --sub-heading-font-size: 25px;
    --para-font-size: 1.25rem;
    --para-font-width: 300;
}
ul{
    margin-bottom: 0rem;
    padding-left: 0px;
}
  /* ---------- TOP BAR ---------- */
  .top-bar {
    width:100%;
    background: linear-gradient(#023262, #12c3f2);
    color:var(--light-color);
    padding:10px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14.5px;
  }
  .top-bar-icon i{
    border-right: 1px solid var(--text-color);
    padding-right: 25px;
    padding-left: 5px;
    transition: .5s;
    cursor: pointer;
  }
  .top-bar-icon i:last-child{
    border-right: none;
  }
  .top-bar-icon i:hover{
    color: var(--text-color);
  }

  /* ---------- HEADER MIDDLE ---------- */
  .header {
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
  }
  .header .logo{
    text-decoration: none;
    width: 15%;
    padding-bottom: 20px;
    /* background: linear-gradient(#023262, #12c3f2); */
    position: relative;
    display: flex;
    justify-content: center;
  }
  /* .header .logo::after{
    content: '';
    background: linear-gradient(#023262, #12c3f2);
    position: absolute;
    right: -35px;
    top: 0px;
    width: 55px;
    height: 100%;
    transform: skew(-18deg);
  } */
  .logo img { 
    height: 84px;
    transform: rotate(90deg);
    display:block; 
  }

  .info-boxes { 
    display:flex; 
    gap:20px; 
    flex-wrap:wrap; 
    margin-bottom: 2%;
    margin-right: 3%;
  }
  .info-box { 
    display:flex; 
    gap:10px; 
    align-items:center; 
    font-size:14px; 
  }
  .info-box .icon {
    width:45px;
    height:45px;
    display:flex;
    border-radius: 8px;
    align-items:center; 
    justify-content:center;
       background: linear-gradient(#023262, #12c3f2);
    font-size:18px;
  }
  .icon-a a{
    text-decoration: none;
    color: #333;
  }
  .info-box .icon i{
    color: var(--light-color);
  }

  /* ---------- NAVBAR ---------- */
  .main-navber{
    display: flex;
    justify-content: center;
    position: relative;
  }
  .navbar {
    width: 90%;
    color:var(--light-color);
    display:flex;
    justify-content:space-between;
    align-items:center;
    position: absolute;
    top: -37px;
    z-index: 999;
  }
  .fixed{
    position: sticky;
    top: 30px;
    z-index: 1000;
  }

  /* main menu */
  #navMenu {
    list-style:none;
    display:flex;
    gap: 30px;
    align-items:center;
   /* color: #fff; */
    width: 83%;
     background-image: linear-gradient(to right,#023262, #12c3f2);
    /* border: 2px solid  #12c3f2; */
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.579);
    transition: 1s all ease;
  }
  .emni::after{
    content: '';
    background: rgb(18 194 241);
    border-left: none;
    position: absolute;
    right: -50px;
    top: 0.3px;
    width: 64px;
    height: 100%;
    transform: skew(-18deg);
  }

  #navMenu li { position:relative; }

  #navMenu .sub-menu-a, #navMenu button.sub-toggle {
    color:#fff;
    text-decoration:none;
    font-size:16px !important;
    font-weight: 500;
    background:transparent;
    border:0;
    cursor:pointer;
    padding: 20px 0;
  }
  #navMenu .sub-menu-a, #navMenu button.sub-toggle i{
    font-size:10px;
    margin-left:25px;
  }

  /* contact button */
 .contact-btn {
        background: linear-gradient(#023262, #12c3f2);
    text-decoration: none;
    color:var(--light-color);
    padding:24px 18px;
    font-weight:600;
    position: relative;
  }
  .contact-btn:hover{
    color:var(--light-color) !important;
  }
  .contact-btn::after{
    content: '';
    background: linear-gradient(#023262, #12c3f2);
    position: absolute;
    left: -14px;
    top: 0px;
    width: 30px;
    height: 100%;
    transform: skew(-18deg);
  }

  /* ---------- SUB-MENU ---------- */
   .sub-menu-a{
    display: flex;
    align-items: center;
   }
    .sub-menu-a i{
    font-size:12px;
    margin-left:3px;
    transition: .5s;
    transform: rotate(-90deg);
    }
    .sub-menu-a:hover i{
    transform: rotate(0deg);
    }

  .sub-menu {
    position:absolute;
    top: 64px;
    left:0;
    min-width: 250px;
    /* background: linear-gradient(#023262, #12c3f2); */
    background: #fff;
    border-radius:6px;
    overflow:hidden;
    display:none;
    flex-direction:column;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    border-top: 2px solid #023262;
    border-bottom: 3px solid #12c3f2;
    z-index:40;
    /* padding: 2%; */
  }

  .sub-menu a {
    display:block;
    padding:10px 14px !important;
    color:var(--top-bar-color);
    text-decoration:none;
    font-size:15px;
    border-bottom: 1px solid rgb(30 175 158);
    transition: .5s;
  }
  .sub-menu a:hover { 
    /* background:var(--top-bar-color); */
    background: linear-gradient(#023262, #12c3f2);
    color: var(--light-color);
    border-bottom: 1px solid #12c3f2;
  }

  /* show on hover (desktop) */
  @media (min-width: 901px) {
    .has-sub:hover > .sub-menu { 
      display:flex; 
    }
    button.sub-toggle { display:none; } /* hide mobile toggle on desktop */
  }

  /* ---------- HAMBURGER (mobile) ---------- */
  .hamburger {
    display:none;
    font-size:26px;
    color:var(--light-color);
    background:transparent;
    border:0;
    cursor:pointer;
    padding: 10px;
    margin-left: 20px;
  }

  /* ---------- MOBILE LAYOUT ---------- */
    @media (max-width: 1348px) {
#navMenu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    /* color: #fff; */
    width: 83%;
    background-image: linear-gradient(to right, #023262, #12c3f2);
    /* border: 2px solid #12c3f2; */
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.579);
}
    }
      @media (max-width: 1073px) {
#navMenu {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
    /* color: #fff; */
    /* overflow: hidden;  */
    width: 79%;
    background-image: linear-gradient(to right, #023262, #12c3f2);
    /* border: 2px solid #12c3f2; */
    position: relative;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.579);
}
      }
  @media (max-width: 900px) {
    .hamburger { 
      display:block;
      color: var(--bg-color);
      font-weight: bold;
     }

    /* nav menu stacks and is hidden by default */
    #navMenu {
      position:absolute;
      top:75px;
      left:0;
      right:0;
      background: linear-gradient(#023262, #12c3f2);
      border: none;
      flex-direction:column;
      align-items:stretch;
      gap:0;
      padding:12px 0;
      display:none;
      z-index:30;
      box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    }
    #navMenu.open { 
      display:flex; 
      padding: 5px;
    }

    #navMenu li { 
      padding:0 18px; 
      border-bottom: 1px solid #003c2da6;
    }
    .navbar{
      width: 100%;
      /* background: #164237; */
      top: -30px;
      background: #ffffff;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.579);
    }
    /* sub-menu becomes static in flow when opened */
    .sub-menu {
      position:static;
      top:auto;
      left:auto;
      box-shadow:none;
      display:none;
      /* background:#00796b29; */
      margin-left:12px;
      border-radius:4px;
    }

    /* show mobile sub when its parent has .open-sub */
    .has-sub.open-sub > .sub-menu { display:flex; }

    /* use a visible button to toggle submenus on mobile */
    .has-sub > a { display:none; } /* hide anchor to avoid accidental navigation on small screens */
    button.sub-toggle {
      display:inline-block;
      width:100%;
      text-align:left;
      padding:12px 0;
      background:transparent;
    }
    #navMenu {
      width: 100%;
    }
    .emni{
      display: none;
    }
    .contact-btn {
      padding: 28px 18px;
    }
    .info-boxes {
      display: none;
    }
  }
   @media (max-width: 770px) {
    .top-bar-text{
      display: none;
    }
    .header .logo {
      width: 30%;
    }
   }
    @media (max-width: 450px) {
    .header .logo {
      width: 60%;
    }
   }
