body {
  font-family: "Segoe UI", sans-serif;
}

/* Header CSS Start */

.navbar-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.navbar {
  background: #273c66;
  padding: 15px 0;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box img {
  height: 60px;
}

.logo-text {
  color: #fff;
  line-height: 1.2;
}

.logo-text span {
  color: #00c3ff;
  font-weight: bold;
  font-size: 20px;
}

.logo-text small {
  display: block;
  font-size: 12px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 12px;
  font-weight: 500;
  position: relative;
  text-transform: uppercase;
  font-size: 13px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #0eb582 !important;
}

.navbar-nav .nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  background: #0eb582;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  opacity: 1;
}

.menu-icon {
  font-size: 22px;
  color: #fff;
  cursor: pointer;
}

.mega-menu {
  position: relative;
}

.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  background: transparent;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 999;
}

.mega-menu:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
}

.mega-left {
  width: 250px;
  min-height: 90px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.menu-item {
  padding: 10px 18px;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item:hover,
.menu-item.active {
  color: #0eb582;
  background: #f8f8f8;
}
.mega-right {
  display: none;
}

.mega-right.active {
  display: block;
}
.mega-right {
  width: 240px;
  background: #fff;
  border-radius: 12px;
  padding: 5px 0;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content p {
  margin: 0;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  transition: 0.3s;
}

.tab-content p:last-child {
  border-bottom: none;
}

.tab-content p:hover {
  color: #0eb582;
  padding-left: 25px;
}

.arrow-icon {
  font-size: 14px;
  color: #999;
  transition: 0.3s;
}

.menu-item:hover .arrow-icon {
  transform: translateX(4px);
  color: #0eb582;
}
.offcanvas {
  width: 330px;
}

.offcanvas-body {
  padding: 20px;
}

.offcanvas-body img {
  height: 60px;
  margin-bottom: 10px;
}
.sidebar-logo {
  text-align: center;
  margin-bottom: 15px;
  margin-top: 80px;
}
.sidebar-logo img {
  height: 70px;
}
.sidebar-about p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}
.offcanvas-body hr {
  margin: 20px 0;
}

.sidebar-contact p {
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333;
}

.sidebar-contact i {
  color: #273c66;
  font-size: 16px;
}

.social-icons {
  margin-top: 15px;
  text-align: center;
}

.social-icons i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  font-size: 16px;
  margin: 6px;

  color: #273c66;
  background: #f1f1f1;

  border-radius: 50%;
  transition: 0.3s;
}

.social-icons i:hover {
  background: #273c66;
  color: #fff;
  transform: translateY(-3px);
}
.navbar-toggler {
  background: #0eb582;
  color: #fff;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.mega-left {
  min-height: 75px;
}
@media (max-width: 1199px) {
  .navbar-nav .nav-link::after{
    display: none !important;
  }
  .mega-menu .mega-dropdown {
    display: none;
    flex-direction: column;
    position: relative;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: none;
    margin-top: 5px;
  }

  .mega-menu.active .mega-dropdown {
    display: flex;
  }

  .mega-left .arrow-icon {
    display: inline-block;
    float: right;
  }

  .mega-right .tab-content {
    display: none;
    padding-left: 10px;
  }

  .menu-item .arrow-icon.rotate {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }
}
@media (max-width: 1199px) {
  .mega-left {
    width: 100%;
    min-height: 70px;
  }

  .mega-right {
    width: 100%;
  }

  .navbar .container {
    flex-wrap: wrap;
  }

  .logo-box {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
    order: 1;
  }

  .navbar-toggler {
    order: 2;
    margin-right: auto;
  }

  .menu-icon {
    order: 3;
    margin-left: auto;
  }

  .navbar-collapse {
    order: 4;
    width: 100%;
  }
}

@media (min-width: 1200px) {
  .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-box {
    order: 1;
  }

  .navbar-collapse {
    order: 2;
  }

  .menu-icon {
    order: 3;
  }
}
@media (max-width: 992px) {
  .navbar .container {
    flex-wrap: wrap;
  }

  .logo-box {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-bottom: 10px;
  }

  .navbar-toggler {
    order: 2;
    margin-right: auto;
  }

  .menu-icon {
    order: 3;
    margin-left: auto;
  }

  .navbar-collapse {
    order: 4;
    width: 100%;
  }
}

/* Header CSS End */

/* Footer CSS Start */
.email-connect {
  position: relative;
  z-index: 10;
  margin-bottom: -135px !important;
}
.email-input {
  display: flex;
  width: 100%;
  max-width: 500px;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
}

.email-input input {
  border: none;
  padding: 0 20px;
  flex: 1;
  height: 55px;
}

.form-control:focus {
  box-shadow: none !important;
}
.email-box {
  background: #0eb582;
  border-radius: 20px;
}

.email-input input {
  height: 55px;
  border: none;
}

.send-btn {
  background: #273c66;
  color: #fff;
  height: 45px;
  margin-right: 5px;
}
.send-btn:hover {
  background: #0eb582 !important;
  color: #fff;
  height: 45px;
  margin-right: 5px;
}

.footer {
  background: #273c66;
  padding: 200px 0 40px 0;
  position: relative;
  z-index: 1;
}
.footer ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
}
.footer-social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.footer-social-icons li {
  margin-right: 10px;
}

.footer-social-icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
  background: #3b4c75;
}

.footer-social-icons li a:hover {
  background: #0eb582;
  color: #fff;
}

.whatsapp-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  z-index: 99;
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  text-decoration: none;
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #0eb582;
  color: #fff;
  border-radius: 50%;
  font-size: 24px;
  display: none;
  z-index: 1000;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 9;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
.btn-close:focus {
  box-shadow: none !important;
}

/* Footer CSS End */
.info-box p {
  font-size: 15px;
  color: #333;
  display: flex;
  justify-content: space-between;
}
