/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header1-height: 3.5rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --black-color: hsl(220, 24%, 12%);
  --black-color-light: hsl(220, 24%, 15%);
  --black-color-lighten: hsl(220, 20%, 18%);
  --white-color: #fff;
  --body-color: hsl(220, 100%, 97%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
.py-2.bg-primary {
    position: relative; /* Ensure it is part of the document flow */
    z-index: 0 !important; /* Set a z-index higher than the navbar */
  }
  
  .navbar {
    position: relative; /* Ensure it's properly layered */
    z-index: 0 !important; /* Ensure it's below the `.py-2.bg-primary` div */
  }
  

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  /* height: 100%; */
}

ul {
  list-style: none;
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}


/*=============== header1 ===============*/
.header1 {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color:#FFFFFF !important; 
  box-shadow: 0 2px 16px hsla(220, 32%, 8%, .3);
  z-index: var(--z-fixed);
}

/*=============== NAV ===============*/
.nav {
  height: var(--header1-height);
}

.nav__logo,
/*=============== NAV LOGO RESPONSIVE DESIGN ===============*/
.nav__logo {
  display: flex;
  align-items: center; /* Align the image properly */
  text-decoration: none;
  margin: 0;
  padding: 0;
  width: 120px; /* Default logo width */
  height: auto;
  position: relative; /* Allows absolute positioning inside */
}

.nav__logo img {
  display: block;
  width: 2000%; /* Logo adjusts to parent container width */
  height: auto; /* Maintains aspect ratio */
  object-fit: contain; /* Keeps the image proportional */
  margin: 0;
  transform: translate(0, 0); /* No extra translation by default */
}

/*=============== RESPONSIVE ADJUSTMENTS ===============*/
@media screen and (max-width: 1024px) {
  .nav__logo {
    width: 2000px; /* Scale down logo for medium screens */
  }
}

@media screen and (max-width: 768px) {
  .nav__logo {
    width: 80px; /* Further reduce logo size for tablets */
  }
}

@media screen and (max-width: 480px) {
  .nav__logo {
    width: 60px; /* Compact logo for mobile devices */
  }

  .nav__logo img {
    transform: translate(5px, 3px); /* Adjust positioning for smaller screens */
  }
}

.nav__burger, 
.nav__close {
  color: #000;
}

.nav__data {
  height: 100%;
  width: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
  /* Color highlighting when pressed on mobile devices */
  /*-webkit-tap-highlight-color: transparent;*/
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  position: absolute; /* Ensure it stays positioned */
  right: 1rem; /* Move it to the right side */
  width: 32px;
  height: 32px;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1118px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 1rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: rgba(255, 255, 255, 0.15);
    /* padding-top: 1rem; */
  }
}
.ftco-navbar-light {
  background: transparent !important;
  position: absolute;
  top: 35px;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 0 0; }
.nav__link {
  color: var(--black-color);
  /* background-color: var(--black-color); */
  font-weight: var(--font-semi-bold);
  padding: 0.25rem 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}
/* Default (Desktop) - No background color */
.nav__link {
  background-color: transparent; /* No color for desktop screens */
}

/* Tablet (max-width: 1024px) - Blue background */
@media screen and (max-width: 1024px) {
  .nav__link {
    background-color: #007bff; /* Blue for tablets */
  }
}

/* Mobile (max-width: 768px) - Blue background */
@media screen and (max-width: 768px) {
  .nav__link {
    background-color: #007bff; /* Blue for mobile devices */
  }
}

.nav__link:hover {
  background-color: #fff;
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: .25rem .25rem .25rem .5rem;
  color: #000;
  background-color:#fff;
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color:#fff;
}

.dropdown__menu, 
.dropdown__submenu {
  max-height: 0;
  padding:0;
  overflow: hidden;
  transition: max-height .4s ease-out;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 800px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color:#fff;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header1-height) + 2rem);
    display: flex;
    justify-content: space-between;
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__link:hover {
    background-color: transparent;
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;
  }

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 0rem;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: .5rem;
  }.dropdown__menu,
  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 4rem; /* Reduced from 6rem to 4rem */
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, top 0.3s;
    font-size: 0.85rem; /* Smaller font size for desktop */
    min-width: 100px; /* Ensures consistent width for dropdown */
  }
  
  .dropdown__link,
  .dropdown__sublink {
    padding-inline: 0.8rem 0rem; /* Reduced padding for compactness */
  }
  
  .dropdown__subitem .dropdown__link {
    padding-inline: 0.8rem;
  }
  
  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }
  
  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity: 0;
    top: 3.5rem; /* Reduced to fit better for desktops */
    pointer-events: initial;
    transition: top 0.3s;
  }
  
  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top 0.3s;
  }
  
  /* General styling for desktop-specific resolution */
  @media screen and (min-width: 1024px) {
    .dropdown__menu {
      font-size: 0.9rem; /* Slightly larger text for readability */
      min-width: 220px; /* Adjust dropdown width */
    }
  
    .dropdown__link {
      padding-inline: 1rem 3rem; /* Adjust padding */
    }
  }
  

  /* Show dropdown menu */
  .dropdown__item:hover .dropdown__menu {
    opacity:10;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  /* Show dropdown submenu */
  .dropdown__subitem:hover > .dropdown__submenu {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}



/*=============== header1 INFO BAR ===============*/
.py-2.bg-primary {
    position: relative; /* Keeps it in normal flow */
    z-index: 101; /* Stacks above the navbar */
    background-color: var(--black-color);
    color: var(--white-color);
    padding: 0.5rem 1rem; /* Adjust padding for better responsiveness */
    font-size: 0.875rem; /* Slightly smaller font for compact design */
  }
  
  .py-2 .icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1rem;
    margin-right: 0.5rem;
    color: var(--white-color);
  }
  
  .text {
    font-size: 0.875rem; /* Adjust for better responsiveness */
    font-weight: var(--font-regular);
  }
  
  /*=============== FLEXBOX LAYOUTS FOR RESPONSIVENESS ===============*/
  .row.d-flex {
    display: flex;
    flex-wrap: wrap; /* Ensure proper wrapping on smaller screens */
    justify-content: space-between;
    align-items: center;
  }
  
  .col-md {
    flex: 1; /* Allows equal distribution of columns */
    min-width: 250px; /* Prevents columns from shrinking too much */
    margin: 0.5rem 0;
  }
  
  .col-md-4 {
    flex: 0 0 auto; /* Keeps its size for smaller icons */
  }
  
  /*=============== RESPONSIVE BREAKPOINTS ===============*/
  /* For tablets and small screens */
  @media screen and (max-width: 768px) {
    .py-2.bg-primary {
      text-align: center; /* Center-aligns content for small screens */
    }
  
    .row.d-flex {
      flex-direction: column; /* Stack items vertically */
    }
  
    .col-md {
      text-align: center; /* Centers each section */
      min-width: unset; /* Allows more flexibility */
    }
  
    .text {
      font-size: 0.8rem; /* Slightly smaller for compact devices */
    }
  }
  
  /* For very small devices */
  @media screen and (max-width: 480px) {
    .py-2.bg-primary {
      font-size: 0.75rem; /* Reduce overall font size */
      padding: 0.5rem; /* Smaller padding */
    }
  
    .icon {
      width: 1.25rem; /* Reduce icon size */
      height: 1.25rem;
      font-size: 0.875rem;
    }
  
    .text {
      font-size: 0.75rem; /* Further reduce text size */
    }
  }
  /* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Montserrat", sans-serif;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .bg-primary {
    background-color: #007bff;
    color: white;
    padding: 1rem 0;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Icon Styles */
  .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 10px;
  }
  
  .bg-fifth {
    background-color: #6c757d;
  }
  
  .bg-secondary {
    background-color: #28a745;
  }
  
  .bg-tertiary {
    background-color: #ffc107;
  }
  
  /* Text Styling */
  .text {
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    color: white;
  }
  
  /* Responsive Design */
  
  /* Small Devices (phones, less than 576px) */
  @media (max-width: 575.98px) {
    .row {
      flex-direction: column;
      text-align: center;
    }
  
    .topper {
      justify-content: center;
      margin-bottom: 1rem;
    }
  
    .icon {
      margin: 0 auto 10px;
    }
  
    .text {
      font-size: 0.9rem;
      text-align: center;
    }
  }
  
  /* Medium Devices (tablets, 576px and up) */
  @media (min-width: 576px) and (max-width: 767.98px) {
    .topper {
      text-align: center;
      justify-content: center;
    }
  
    .text {
      font-size: 0.95rem;
    }
  }
  
  /* Large Devices (desktops, 768px and up) */
  @media (min-width: 768px) and (max-width: 991.98px) {
    .topper {
      justify-content: flex-start;
    }
  
    .text {
      font-size: 1rem;
      text-align: left;
    }
  }
  
  /* Extra Large Devices (1200px and up) */
  @media (min-width: 1200px) {
    .container {
      max-width: 1320px;
    }
  
    .text {
      font-size: 1.1rem;
    }
  }
  
  /* Global Styling for Responsive Design */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  overflow-y: hidden; /* Prevent vertical scrolling */
}

/* Responsive Design Adjustments */

/* Small Devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  body {
    font-size: 0.875rem; /* Adjust font size for smaller screens */
  }
  .container {
    padding: 0 10px; /* Reduce container padding */
  }
}

/* Medium Devices (tablets, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  body {
    font-size: 0.9rem; /* Slightly larger text for medium devices */
  }
}

/* Large Devices (desktops, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  body {
    font-size: 1rem;
  }
}

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
  body {
    font-size: 1.1rem; /* Enhance text readability on large screens */
  }
}






  