: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: "Lexend Deca", sans-serif;
  --nav-font: "Lexend Deca", sans-serif;

  /* Global Colors */
  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #37517e;
  --accent-color: #47b2e4;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;

  /* Nav Menu Colors */
  --nav-color: #ffffff;
  --nav-hover-color: #47b2e4;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #444444;
  --nav-dropdown-hover-color: #47b2e4;

  /* Smooth scroll */
  scroll-behavior: unset;
}

/* Color Presets */
.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #00193a;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #00193a;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 2500;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  border-radius: 13px;
  background: linear-gradient(225deg, #001734, #001b3e);
  box-shadow: -6px 6px 18px #000d1d,
    6px -6px 18px #002657;
  font-size: 14px;
  padding: 12px 24px;
  margin: 0 0 0 20px;
  transition: all 0.3s ease;
  border: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: #00193a;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.25),
    inset -5px -5px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
  cursor: pointer;
}

.header .btn-getstarted:active {
  transform: translateY(1px);
  background-color: #001225;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.5),
    inset -5px -5px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1500px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header */
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll */
.index-page.scrolled .header {
  --background-color: rgba(40, 58, 90, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul li a,
  .navmenu ul li a:after,
  .navmenu ul li a:before {
    transition: all 0.5s;
  }

  nav ul li a:hover {
    color: #555;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu ul li {
    display: inline-block;
  }

  /* Navigation Styles */
  .navmenu ul li a {
    position: relative;
    z-index: 1;
    padding: 15px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 350;
    text-transform: uppercase;
    margin: 0 10px;
    transition: color 0.3s ease, background-color 0.3s ease;
  }

  .navmenu ul li a:hover {
    background-color: #ffc107;
  }

  .navmenu ul li a:after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 10%;
    content: "";
    background: #f1c40f;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease, visibility 0.3s ease, height 0.3s ease;
  }

  .navmenu ul li a:hover:after {
    opacity: 1;
    visibility: visible;
    height: 80%;
  }

  .slide {
    clear: both;
    width: 100%;
    height: 0px;
    overflow: hidden;
    text-align: center;
    transition: height 0.4s ease;
  }

  .slide li {
    padding: 30px;
  }
}

/* Dropdown Menu */
.navmenu .dropdown > ul {
  display: none;
  position: absolute;
  background: #ffffff;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  z-index: 99;
  padding: 12px 0;
  min-width: 250px;
  margin-top: 10px;
  border-top: 3px solid var(--accent-color);
}

.navmenu .dropdown:hover > ul,
.navmenu .dropdown:focus-within > ul {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  background-color: #cfcde9b8;
}

.navmenu .dropdown ul {
  margin: 0;
  padding: 20px;
  background: var(--nav-dropdown-background-color);
  display: block;
  position: absolute;
  top: 130%;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  margin-top: 5px;
}

.navmenu .dropdown ul li {
  min-width: 200px;
  margin-bottom: 10px;
}

.navmenu .dropdown ul a {
  padding: 12px 20px;
  font-size: 15px;
  text-transform: none;
  color: var(--default-color);
  width: 100%;
  box-sizing: border-box;
  display: block;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.navmenu .dropdown ul a i {
  font-size: 12px;
  padding: auto;
}

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover > a {
  color: black;
  background-color: rgba(71, 178, 228, 0.05);
  border-left: 3px solid var(--accent-color);
  padding-left: 25px;
}

/* Mobile Dropdown Active State */
.navmenu .dropdown > .dropdown-active {
  display: block;
  background-color: transparent;
}

.navmenu .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0);
  gap: 5px;
}

.navmenu .dropdown .dropdown ul {
  top: 0;
  transform: translateX(-100%);
  visibility: hidden;
  left: 100%;
  margin-top: 0;
  margin-left: 0;
}

.navmenu .dropdown .dropdown:hover > ul {
  transform: translateX(0);
  opacity: 1;
  top: 0;
  left: -100%;
  display: block;
}

/* Megamenu */
.navmenu .megamenu {
  position: static;
}

.navmenu .megamenu ul {
  margin: 0;
  padding: 10px;
  background: var(--nav-dropdown-background-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  transition: 0.3s;
  border-radius: 4px;
  z-index: 99;
}

.navmenu .megamenu ul li {
  flex: 1;
}

.navmenu .megamenu ul li a,
.navmenu .megamenu ul li:hover > a {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--nav-dropdown-color);
}

.navmenu .megamenu ul li a:hover,
.navmenu .megamenu ul li .active,
.navmenu .megamenu ul li .active:hover {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .megamenu:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navmenu .dd-box-shadow {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll Top Button */
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.4s;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

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

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
    left: -100%;
  }

  .navmenu ul {
    width: 100%;
    max-height: 80vh;
    background-color: rgba(234, 236, 237, 0.8);
    transition: transform 0.3s ease-in-out;
    z-index: 9997;
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  }

  .mobile-nav-active .navmenu {
    transform: translateX(0);
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    background: rgba(234, 236, 237, 0.8);
    transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    margin-right: 0;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #00193a;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: #00193a;
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    padding: 5px 0;
    margin: 5px 20px 15px 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) inset;
    max-height: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }
}
/* Footer Styles */
.footer {
  margin-top: 6rem;
  padding: 3rem 0;
  background-color: var(--dark-color);
 
}

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

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer .social-icons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.footer .copyright {
  margin-top: 2rem;
  text-align: center;
}
  
  .footer {
    background: #181818;
    color: #7b1c1c;
    font-family: 'Poppins', sans-serif;
  }
  #footer {
    margin-top: 6rem;
  padding: 3rem 0;

  }
  
  .footer a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .footer a:hover {
    color: #00c9ff;
  }
  .footer-contact 
  {
    color: #00c9ff;
  }
  .footer .border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  /* Logo Styles */
  .footer .site-logo {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 0;
    margin: 0;
  }
  
  .footer .site-logo:hover {
    color: #00c9ff;
    transform: translateY(-2px);
  }
  
  /* Navigation Styles */
  .footer .nav {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer .nav-item {
    margin: 0 10px;
    padding: 0;
  }
  
  .footer .nav-link {
    color: #ddd;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
  }
  
  .footer .nav-link:hover {
    color: #00c9ff;
  }
  
  .footer .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00c9ff;
    transition: width 0.3s ease;
  }
  
  .footer .nav-link:hover::after {
    width: 100%;
  }
  
  /* Social Icons */
  .footer .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer .social-icons li {
    margin: 0;
    padding: 0;
  }
  
  .footer .social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(153, 153, 153, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
  }
  
  .footer .social-icons a:hover {
    background: #00c9ff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 201, 255, 0.3);
  }
  .footer .footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #00c9ff;
}

.footer .footer-contact strong {
    color: #ff9800; /* Change label color (Phone, Email, etc.) */
}
  .footer .social-icons svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
  }
  
  .footer .social-icons a:hover svg {
    transform: scale(1.1);
  }
  .footer .copyright p{
    text-align: center;
    font-size: 14px;
    color: #081ee6;
}
.footer .credits a {
    color: #ff9800;
    text-decoration: none;
}

.footer .credits {
    text-align: center;
    font-size: 15px;
    color: #bbb;
}
  /* Copyright Styles */
  .footer .copyright {
    text-align: center;
    color: rgba(251, 226, 3, 0.6);
    margin-top: 20px;
  }
  
  .footer .copyright small {
    font-size: 14px;
  }
  
  
  /* Responsive Styles */
  @media (max-width: 1199.98px) {
    .footer .social-icons {
      gap: 10px;
    }
  
    .footer .nav-item {
      margin: 0 8px;
    }
  
    .footer .container {
      max-width: 960px;
    }
  }
  
  @media (max-width: 991.98px) {
    .footer {
      padding: 40px 0;
    }
  
    .footer .site-logo {
      font-size: 22px;
    }
  
    .footer .nav-link {
      font-size: 15px;
    }
  
    .footer .social-icons a {
      width: 35px;
      height: 35px;
    }
  
    .footer .container {
      max-width: 720px;
    }
  }
  
  @media (max-width: 767.98px) {
    .footer {
      padding: 30px 0;
    }
  
    .footer .row {
      text-align: center;
    }
  
    .footer .social-icons {
      justify-content: center;
      margin-top: 20px;
    }
  
    .footer .site-logo {
      margin-bottom: 15px;
    }
  
    .footer .nav {
      margin: 15px 0;
    }
  
    .footer .nav-item {
      margin: 5px 8px;
    }
  
    .footer .copyright {
      margin-top: 20px;
    }
  
    .footer .container {
      max-width: 540px;
    }
  }
  
  @media (max-width: 575.98px) {
    .footer {
      padding: 25px 0;
    }
  
    .footer .site-logo {
      font-size: 20px;
    }
  
    .footer .nav-link {
      font-size: 14px;
    }
  
    .footer .nav-item {
      margin: 3px 6px;
    }
  
    .footer .social-icons {
      gap: 8px;
    }
  
    .footer .social-icons a {
      width: 32px;
      height: 32px;
    }
  
    .footer .social-icons svg {
      width: 16px;
      height: 16px;
    }
  
    .footer .border-bottom {
      padding-bottom: 15px;
      margin-bottom: 15px;
    }
  
    .footer .container {
      padding: 0 10px;
    }
  }
  
  @media (max-width: 399.98px) {
    .footer .nav {
      flex-direction: column;
      align-items: center;
    }
  
    .footer .nav-item {
      margin: 5px 0;
    }
  
    .footer .social-icons {
      flex-wrap: wrap;
      gap: 10px;
    }
  
    .footer .copyright small {
      font-size: 12px;
    }
  }
  
  /* Animation Keyframes */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  /* Hover Effects */
  .footer .nav-link:hover {
    transform: translateY(-1px);
  }
  
  .footer .social-icons a:hover {
    animation: float 2s ease-in-out infinite;
  }
  .footer .social-icons a:hover svg {
    fill: #fff; /* Change to a visible hover color */
  }
  .footer a:hover {
    color: #00c9ff !important;
  }
  
  