/**
* Template Name: Avilon
* Template URL: https://bootstrapmade.com/avilon-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", 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;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #0093d0; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0093d0; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: rgba(
    255,
    255,
    255,
    0.6
  ); /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #212529; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0093d0; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #e9f7f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0093d0;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0093d0;
  --contrast-color: #ffffff;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  max-height: 55px;
  width: auto;
  display: block;
}

.sitename {
  font-size: 18px;
  font-weight: bold;
  color: #0c96d1;
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .sitename {
    display: none;
  }
  .logo img {
    max-height: 48px;
  }
}

@media (max-width: 576px) {
  .sitename {
    font-size: 14px;
  }
  .logo img {
    max-height: 40px;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #059ea3;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* ================= Desktop Search Form ================= */
#searchFormDesktop {
  position: relative;
  width: 100%;
  max-width: 400px; /* Adjust as needed */
}

#searchInputDesktop {
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 15px;
  color: #0d6efd;
  width: 100%;
}

#searchInputDesktop::placeholder {
  color: #0d6efd;
  opacity: 0.7;
}

#searchFormDesktop button {
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 15px;
  background-color: #0d6efd;
  border: 2px solid #0d6efd;
  color: #fff;
  transition: 0.3s;
  margin-left: 5px;
}

#searchFormDesktop button:hover {
  background-color: #0953c7; /* darker blue on hover */
  border-color: #0953c7;
  color: #fff;
}

/* Suggestions box */
#suggestionBoxDesktop {
  max-height: 250px;
  overflow-y: auto;
  border-radius: 5px;
  background-color: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
}

#suggestionBoxDesktop li {
  cursor: pointer;
  color: #0d6efd;
  padding: 8px 12px;
  transition: 0.2s;
}

#suggestionBoxDesktop li:hover {
  background-color: #0d6efd;
  color: #fff;
}

/* ================= Mobile Search Form ================= */
#searchFormMobile {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 10px;
}

#searchInputMobile {
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 15px;
  color: #0d6efd;
  flex: 1;
}

#searchInputMobile::placeholder {
  color: #0d6efd;
  opacity: 0.7;
}

#searchFormMobile button {
  border-radius: 30px;
  padding: 8px 15px;
  font-size: 15px;
  background-color: #0d6efd;
  color: #fff;
  margin-left: 5px;
  transition: 0.3s;
}

#searchFormMobile button:hover {
  background-color: #0953c7;
  border-color: #0953c7;
  color: #fff;
}

/* ================= Responsive Adjustments ================= */
@media (max-width: 991px) {
  #searchFormDesktop {
    max-width: 100%;
  }

  #searchFormDesktop button,
  #searchFormMobile button {
    padding: 8px 12px;
    font-size: 14px;
  }

  #searchInputDesktop,
  #searchInputMobile {
    padding: 8px 12px;
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  #searchFormDesktop,
  #searchFormMobile {
    flex-direction: column;
  }

  #searchFormDesktop button,
  #searchFormMobile button {
    margin-left: 0;
    margin-top: 5px;
    width: 17%;
  }
}

.header {
  color: black;
  background-color: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  padding: 12px;
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #0c96d1;
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-transform: uppercase;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: black;
  }

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

  .navmenu .dropdown ul li {
    min-width: 300px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: uppercase;
    color: var(--nav-dropdown-color);
  }

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1040;
}
.mobile-overlay.show {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 86%;
  height: 100vh;
  background: #0b1220;
  color: #fff;
  transition: right 0.32s ease;
  z-index: 1050;
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.25rem 0.5rem;
}

.mobile-menu-inner {
  padding: 56px 1rem 2rem;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mobile-menu-list li a {
  display: block;
  padding: 12px 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
.mobile-menu-list li a.active {
  color: #0d6efd;
}

.mobile-menu-list .dropdown > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8px;
  cursor: pointer;
}
.mobile-menu-list .dropdown ul {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
  padding-left: 0;
}
.mobile-menu-list .dropdown.open ul {
  max-height: 600px;
}

.mobile-menu-list .chev {
  transition: transform 0.2s ease;
}
.mobile-menu-list .dropdown.open .chev {
  transform: rotate(180deg);
}

@media (min-width: 1200px) {
  .mobile-menu,
  .mobile-overlay,
  .mobile-nav-toggle {
    display: none !important;
  }
  nav.navmenu.d-none.d-xl-block {
    display: block !important;
  }
}
.mobile-nav-toggle {
  background: #0d6efd;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0px 9px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-toggle:hover {
  background: #0b5ed7;
}

/* hero section*/
.hero {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  min-height: 70vh;
  padding-top: 10px;
}
.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}
.hero p {
  max-width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
}
.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: black;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}
.hero .btn-get-started {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  animation-delay: 0.8s;
  color: var(--default-color);
  border: 2px solid var(--accent-color);
}
.hero .btn-get-started:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
} /* banner */
.hero .hero-img {
  max-width: 100%;
} /* Tablet screens */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 32px;
  }
  .hero .hero-img {
    max-width: 250px;
    object-fit: cover;
  }
} /* Mobile screens */
@media (max-width: 576px) {
  .hero h2 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
    max-width: 90%;
  }
  .hero .hero-img {
    max-width: 250px;
  }
}
@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}
@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 90vh;
  }
  .hero h2 {
    font-size: 28px;
  }
}
.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: relative;
}
.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}
.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}
.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}
@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}
@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
} /* ================= RESPONSIVE HERO ================= */ /* Large screens (≥1024px) */
@media (min-width: 1024px) {
  .hero p {
    max-width: 60%;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
} /* Laptops & Tablets (≤992px) */
@media (max-width: 992px) {
  .hero .carousel-container {
    min-height: 70vh;
    padding: 20px;
  }
  .hero h2 {
    font-size: 32px;
  }
  .hero .hero-img {
    max-width: 250px;
    margin-top: -10px;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 8%;
  }
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    font-size: 36px;
  }
} /* Tablets (≤768px) */
@media (max-width: 768px) {
  .hero .carousel-container {
    min-height: 60vh;
  }
  .hero h2 {
    font-size: 28px;
  }
  .hero p {
    font-size: 15px;
    max-width: 85%;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 10%;
  }
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    font-size: 32px;
  }
} /* Small Mobile (≤576px) */
@media (max-width: 576px) {
  .hero h2 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
    max-width: 90%;
  }
  .hero .hero-img {
    max-width: 300px;
  }
  .hero .btn-get-started {
    font-size: 13px;
    padding: 10px 22px;
  }
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 12%;
  }
  .hero .carousel-control-prev-icon,
  .hero .carousel-control-next-icon {
    font-size: 28px;
  }
}

.carousel-item {
  margin-top: 78px;
}

/* WHAT WE DO */
.whatwedo-section {
  background: #f8fbff;
  padding: 70px 20px;
}

.whatwedo-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0093d0;
  margin-bottom: 50px;
}

.whatwedo-card {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #e2e6ec;
  transition: 0.3s ease;
  text-align: center;
}

.whatwedo-card:hover {
  transform: translateY(-6px);
  border-color: #0093d0;
  box-shadow: 0 8px 20px rgba(0, 147, 208, 0.15);
}

.whatwedo-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #0093d0;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 15px;
}

.whatwedo-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0093d0;
  margin-bottom: 12px;
}

.whatwedo-card p {
  font-size: 15px;
  color: #444;
  margin: 0;
}

.whatwedo-note {
  margin-top: 30px;
  font-size: 15px;
  color: #333;
}

/* OUR COMMITMENT */
.commitment-block {
  background: #0093d0;
  color: #fff;
  padding: 80px 20px;
}

.commitment-block h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.commitment-block p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 20px;
}

.commitment-highlight {
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .whatwedo-section {
    padding: 50px 15px;
  }

  .commitment-block {
    padding: 60px 15px;
  }

  .whatwedo-section h2,
  .commitment-block h2 {
    font-size: 24px;
  }
}
/* why choose us */
.list-name {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul li {
  list-style-type: none;
}
.list-name li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.list-name li:last-child {
  margin-bottom: 0;
}

.icon-circle {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #0093d0;
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.list-name li span {
  display: block;
  line-height: 1.4;
}

.center-img img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.flex-left,
.flex-right {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 15px;
  color: #fff;
}

@media (max-width: 991px) {
  .flex-left,
  .flex-right,
  .center-img {
    text-align: center !important;
    margin-bottom: 30px;
  }

  .icon-circle {
    margin: 0 0 10px 0;
  }
}

/* products */
.products-section {
  padding: 70px 20px;
  background: linear-gradient(135deg, #ffffff 60%, #f0f4ff 100%);
}

.products-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  flex-direction: row-reverse;
}

.products-image-box {
  flex: 1 1 45%;
  text-align: center;
}

.products-image {
  height: 345px;
  width: 355px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.products-image:hover {
  transform: scale(1.05);
}

.products-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.products-content:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.products-content h2,
.products-content h3 {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(45deg, #0093d0, #007bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}

.products-desc {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #444;
}

.products-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 15px;
}

.products-features li {
  background: #f7faff;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 15px;
  color: #333;
  border: 1px solid #e4eaf5;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.products-features li:hover {
  background: #eaf3ff;
  transform: translateY(-3px);
}

.products-features li::before {
  content: "👉🏻";
  color: #0093d0;
  font-weight: bold;
  font-size: 16px;
}

@media (max-width: 992px) {
  .products-layout {
    flex-direction: column;
  }

  .products-content h2,
  .products-content h3 {
    font-size: 24px;
  }

  .products-image {
    height: 300px;
    width: 100%;
    max-width: 355px;
  }
}

/* market area page */
.market-area {
  padding: 20px 15px 60px;
}

.market-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}

.market-box {
  width: 200px;
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  color: #0c96d1;
  font-weight: 600;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease-in-out, background 0.3s;
  display: block;
}

.market-box:hover {
  transform: scale(1.05);
  background: #f0f4ff;
}

.market-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #0c96d1;
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  border: 2px solid #081552;
}

.market-name {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .market-box {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .market-box {
    width: 90%;
  }
}

/* market area content */
.market-area-content {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  line-height: 1.6;
  color: #333;
}
.market-area-content h4,
.market-area-content h5,
.market-area-content h6 {
  font-size: 25px;
  color: #0c96d1;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: bold;
}

/* Paragraph Styling */
.market-area-content p {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .market-area-content {
    padding: 20px 18px;
  }

  .market-area-content h3 {
    font-size: 24px;
  }

  .market-area-content h4,
  .market-area-content h5,
  .market-area-content h6 {
    font-size: 18px;
  }

  .market-area-content p {
    font-size: 15px;
  }
}

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

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/ 
.banner-section {
  background-image: url("../img/page.jpg") !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 343px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.banner-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  z-index: 1;
  text-align: center;
  padding: 0 15px;
      margin-top: 94px;
}

/* Breadcrumb Section */
.breadcrumb-wrapper {
  background: #dae6f3;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em,
    rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}

.breadcrumb {
  margin: 0;
  background: transparent;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #040506;
}

.breadcrumb a {
  color: #0c96d1;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .active {
  color: #0c96d1;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-section {
    min-height: 229px;
  }

  .banner-section h1 {
    font-size: 1.8rem;
  }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

.section-heading {
  font-size: 25px;
  font-weight: 700;
  color: #0093d0;
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
}

/* Tablet */
@media (max-width: 991px) {
  .section-heading {
    font-size: 26px; /* smaller heading */
  }

  .section-heading::after {
    width: 45px; /* shorter underline */
    height: 2.5px;
    margin: 10px auto 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .section-heading {
    font-size: 22px; /* even smaller for small phones */
    text-align: center;
  }

  .section-heading::after {
    width: 35px; /* much shorter underline */
    height: 2px;
    margin: 8px auto 0;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .inner-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin: 30px 0;
}

.about .our-story {
  padding: 40px;
 
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}


/* Mobile Responsive Styles */
@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

  .about .our-story {
    padding: 20px;
    text-align: center; /* better alignment on small screens */
  }

  .about .our-story h3 {
    font-size: 1.6rem;
  }

  .about .our-story h4 {
    font-size: 1rem;
  }

  .about ul {
    font-size: 14px;
    text-align: left; /* keep bullets aligned */
  }

  .about ul li {
    padding: 4px 0;
  }


@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  padding: 20px 20px;
  transition: border ease-in-out 0.3s;
  height: 100%;
}

.services .service-item .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
}

.services .service-item .icon i {
  color: var(--contrast-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .service-item h3 {
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover h3 {
  color: var(--accent-color);
}
.service-item {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-item .icon {
  margin: 0 auto 20px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f8ff; /* light background */
  border-radius: 50%;
  overflow: hidden;
}

.service-item .icon img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

/* Top Contact Info */
.contact-top .info-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.contact-top .info-item:hover {
  transform: translateY(-5px);
}

.contact-top .info-item i {
  font-size: 28px;
  color: #0c96d1;
  margin-right: 15px;
}

.contact-top .social-links a {
  font-size: 20px;
  color: #0c96d1;
  margin-right: 15px;
  transition: 0.3s;
}

.contact-top .social-links a:hover {
  color: #007bb5;
}

/* Contact Form */
#emailFormcontatus .form-control {
  border-radius: 10px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

#emailFormcontatus .btn {
  background-color: #0c96d1;
  border: none;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  transition: 0.3s;
}

#emailFormcontatus .btn:hover {
  background-color: #007bb5;
}

/* Map */
.map-container {
  overflow: hidden;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-top .info-item {
    justify-content: center;
    text-align: center;
  }

  .contact-top .info-item i {
    margin-bottom: 10px;
    margin-right: 0;
  }
}

/* tersmn and condition and disclaimer */
/* Disclaimer Section */
.disclaimer-section {
  max-width: 1000px;
  margin: 50px auto;
  padding: 40px 30px;
  background: #f9fcfe;
  border: 1px solid #dceef7;
  border-radius: 12px;
  line-height: 1.8;
  color: #222;
  font-family: "Segoe UI", sans-serif;
}

/* Headings (same size for h2–h6) */
.disclaimer-section h2,
.disclaimer-section h3,
.disclaimer-section h4,
.disclaimer-section h5,
.disclaimer-section h6 {
  color: #169bd3;
  font-weight: 700;
  font-size: 1.4rem;
  /* SAME size for all headings */
  margin: 25px 0 15px;
  padding-bottom: 6px;
  border-bottom: 2px solid #169bd3;
}

/* Paragraphs */
.disclaimer-section p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-section {
    padding: 25px 20px;
    margin: 20px;
  }

  .disclaimer-section h2,
  .disclaimer-section h3,
  .disclaimer-section h4,
  .disclaimer-section h5,
  .disclaimer-section h6 {
    font-size: 1.2rem;
  }
}

/* sitemap */
.sitemap-header {
  background: #0093d0;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.sitemap-header h1 {
  margin: 0;
  font-weight: 600;
}

.sitemap-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sitemap-section h2 {
  color: #0093d0;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
}

.sitemap-section ul {
  list-style: none;
  padding-left: 20px;
}

.sitemap-section li {
  margin: 10px 0;
  font-size: 16px;
}

.sitemap-section a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.sitemap-section a:hover {
  color: #0093d0;
  margin-left: 4px;
}

/* tree arrows */
.sitemap-section li::before {
  content: "↳ ";
  color: #0093d0;
  font-weight: bold;
}

.sitemap-section > ul > li::before {
  content: "📂 ";
}

.sitemap-section > ul > li > a {
  font-weight: bold;
  color: #0093d0;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.gfooter {
  background: #0c96d1;
  color: #333;
  padding: 60px 20px 20px;
}

.gfooter h3,
.gfooter h5 {
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #f8fbff, #eef8f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gfooter p {
  font-size: 15px;
  line-height: 1.7;
  color: #f8fbff;
  margin: 0 auto 15px;
  max-width: 600px;
}

/* Links */
.gfooter ul {
  padding: 0;
  margin: 0 auto 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
}

.gfooter ul li {
  margin-bottom: 10px;
}

.gfooter ul li a {
  color: #f8fbff;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
  position: relative;
  padding-left: 18px;
  display: inline-block;
}

.gfooter ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: #f8fbff;
  font-weight: bold;
}

.gfooter ul li a:hover {
  color: #f8fbff;
  padding-left: 22px;
}

/* Social Icons */
.gfooter .social-links {
  display: flex;
  margin: 20px 0;
  gap: 12px;
}

.gfooter .social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  color: #0c96d1;
  font-size: 20px;
  transition: 0.4s ease;
  box-shadow: 0 4px 10px rgba(0, 147, 208, 0.3);
}

.gfooter .social-links a i {
  font-size: 20px;
  color: #0c96d1;
}

.gfooter .social-links a:hover {
  background: #ffffff;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 123, 255, 0.4);
}

/* Contact Info */
.gfooter .contact-info {
  margin-bottom: 20px;
}

.gfooter .contact-info p {
  margin: 6px 0;
  color: #f8fbff;
}

.gfooter .contact-info p i {
  color: #f8fbff;
  margin-right: 8px;
}

/* Divider */
.gfooter hr {
  border-color: #e0e6f1;
  margin: 20px auto;
  width: 80%;
}

/* Copyright */
.gfooter .footer-bottom {
  text-align: center;
  font-size: 14px;
  color: #e0e6f1;
  margin-top: 15px;
}

.gfooter .footer-bottom a {
  text-decoration: none;
  color: #e0e6f1;
  font-weight: 600;
}

.gfooter .footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .gfooter ul {
    flex-direction: column;
  }

  .gfooter p {
    max-width: 90%;
  }

  .gfooter hr {
    width: 90%;
  }
}
