/* Fonts */
:root {
  --font-default: "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";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: auto;
}
p{
  font-family: 'Roboto Condensed', sans-serif !important;
}

.text-red {
  color: #d00;
}

.bg-primary {
  background: #007dbd !important;
}

.bg-red {
  background: rgb(115, 6, 6) !important;
}

.bg-primary {
  background: #007dbd !important;
}
.text-primary{
  color: #007dbd !important;
}

.br-10 {
  border-radius: 10px;
}

.br-8 {
  border-radius: 8px;
}

.list-none {
  list-style: none;
}
.fs-14{
  font-size: 14px;
}
.fs-15{
  font-size: 15px;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #02102b;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# Button - New
--------------------------------------------------------------*/
.lovely-btn {
  background-color: #fff;
  padding: 6px 25px 6px 25px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background 0.4s ease;
  border: 1px solid #007dbd;
  color: #000;
}

.lovely-icon {
  background-color: #007dbd;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.lovely-btn:hover {
  background-color: #007dbd;
  color: #fff;
}

.lovely-btn:hover .lovely-icon {
  background-color: transparent;
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/* Common container for main content width */
.top-header {
  /* max-width: 1200px; */
  margin: 0 auto;
  /* padding: 0 20px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menuss {
  gap: 50px;
  display: flex;
  align-items: center;
}

.header-top {
  background-color: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.header-top .logo {
  display: flex;
  align-items: center;
}

.header-top .logo img {
  height: 70px;
  margin-right: 10px;
}

.header-top .logo-text {
  font-size: 0.9em;
  color: #666;
}

.header-top .contact-info-desktop {
  text-align: right;
}

.header-top .phone-number {
  font-size: 1.5em;
  font-weight: bold;
  color: #007bff;
  display: block;
}

.header-top .call-text {
  font-size: 0.8em;
  color: #888;
}

.contact-icons {
  display: none;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.icon-btn:last-child {
  background-color: #dc3545;
}

.icon-btn:hover {
  opacity: 0.8;
}

.main-nav {
  background-color: #007dbd;
  color: #fff;
  padding: 0;
}

.main-nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  gap: 7px;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.main-nav ul li a:hover {
  background-color: #003366;
}

.main-nav ul li a i {
  margin-left: 5px;
  font-size: 0.8em;
}

.mega-menu {
  position: fixed;
  left: 40px;
  right: 40px;
  top: 140px;
  background-color: #fff;
  border-top: 5px solid #007bff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 20px 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  
}

.has-submenu:hover .mega-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  color: #333;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.mega-menu-content h3 {
  width: 100%;
  font-size: 1.8em;
  color: #004d99;
  margin-bottom: 20px;
  text-align: center;
}

.mega-menu-column {
  flex: 1;
  min-width: 200px;
  padding: 0 15px;
}

.mega-menu-column h4 {
  font-size: 1.2em;
  color: #007bff;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.mega-menu-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block;
}

.mega-menu-column ul li {
  margin-bottom: 8px;
}

.mega-menu-column ul li a {
  color: #555;
  text-decoration: none;
  padding: 0;
  display: inline;
  background-color: transparent;
}

.mega-menu-column ul li a:hover {
  color: #007bff;
  text-decoration: underline;
  background-color: transparent;
}

.hamburger-menu {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  cursor: pointer;
  z-index: 1002;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #004d99;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-overlay.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #003366;
  border-bottom: 1px solid #004d99;
}

.mobile-menu-header .logo img {
  height: 40px;
}

.close-menu-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8em;
  cursor: pointer;
  padding: 5px;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1em;
  transition: background-color 0.2s ease;
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.active>a {
  background-color: #003366;
}

.mobile-nav-list li a i.fa-caret-down {
  font-size: 0.9em;
  transition: transform 0.3s ease;
}

.mobile-submenu {
  list-style: none;
  background-color: rgba(0, 0, 0, 0.2);
  padding-left: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}

.mobile-nav-list li.has-mobile-submenu.open-submenu>a i.fa-caret-down {
  transform: rotate(180deg);
}

.mobile-nav-list li.has-mobile-submenu.open-submenu>.mobile-submenu {
  max-height: 500px;
}

.mobile-submenu li a {
  padding: 12px 20px;
  font-size: 1em;
}

@media (max-width: 768px) {
  .header-top .container {
    padding: 0 15px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .header-top .logo {
    order: 2;
    margin: 0 auto;
  }

  .header-top .logo-text {
    display: none;
  }

  .header-top .contact-info-desktop {
    display: none;
  }

  .contact-icons {
    display: flex;
    order: 3;
  }

  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: flex;
    order: 1;
  }

  .mega-menu {
    position: static;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    box-shadow: none;
    border-top: none;
    padding: 0;
    display: none !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mega-menu-content {
    flex-direction: column;
    max-width: none;
    margin: 0;
    padding: 15px;
  }

  .mega-menu-content h3 {
    text-align: left;
    margin-bottom: 10px;
  }

  .mega-menu-column {
    min-width: auto;
    padding: 0;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
  }

  .mega-menu-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mega-menu-column h4 {
    border-bottom: none;
    margin-bottom: 5px;
  }
}

@media (max-width: 576px) {
  .header-top .logo img {
    height: 40px;
  }

  .hamburger-menu,
  .icon-btn {
    width: 35px;
    height: 35px;
    font-size: 1em;
  }

  .mobile-menu-header {
    padding: 10px 15px;
  }

  .mobile-menu-header .logo img {
    height: 35px;
  }

  .close-menu-btn {
    font-size: 1.5em;
  }

  .mobile-nav-list li a {
    padding: 15px 15px;
    font-size: 1em;
  }
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}
