/* Animate.css loaded via CDN */

/* 
:root {
  --primary: #0072C5;  / * Primary brand color (orange) #0086f0 * /
  --secondary: #004b87;  /* Secondary/dark blue color * /
  --hover: #0073ce;  /* Hover color for links and buttons * /
  --background: #ffffff;
  --foreground: #222222;
  --light-bg: #f7f7f7;
  --border-color: #e9e9e9;
  --heading-color: #111111; 
  --footer-bg: #0b0b0b;
  --footer-text: #919191;
  --top-bar-bg: #F3F8FC;
} */

  /* UAL Website Color Scheme */
:root {
    --color-primary: #0086f0;
    --color-secondary: #004b87;
    --color-hover: #0073ce;
    --background: #ffffff;
    --foreground: #222222;
    --border-color: #e9e9e9;
    --font-poppins: 'Poppins', sans-serif;
    --rgba-secondary: rgba(238,248,255,.5);
    --rgba-primary-1: rgba(0, 134, 240, 0.1);
    --rgba-primary-2: rgba(0, 134, 240, 0.2);
    --rgba-primary-3: rgba(0, 134, 240, 0.3);
    --rgba-primary-4: rgba(0, 134, 240, 0.4);
    --rgba-primary-5: rgba(0, 134, 240, 0.5);
    --rgba-primary-6: rgba(0, 134, 240, 0.6);
    --rgba-primary-7: rgba(0, 134, 240, 0.7);
    --rgba-primary-8: rgba(0, 134, 240, 0.8);
    --rgba-primary-9: rgba(0, 134, 240, 0.9);
    --text-sec: #2d3239;
    --rgba-color-black: rgba(0, 0, 0, 0.8);
    --footer-bg: #0b0b0b;
    --footer-text: #919191;
    --light-bg: #F7F9FB;
    --bg-color-secondary: #083c67;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  font-size: 15px;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none !important;
}

@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

.color-primary {
  color: var(--color-primary) !important;
}

/* Typography enhancements for Poppins font */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

h5 {
  font-size: 1.25rem;
  font-weight: 500;
}

h6 {
  font-size: 1rem !important;
  font-weight: 500;
}

code, pre {
  font-family: Consolas, Monaco, 'Courier New', monospace;
}

/* Additional Poppins font application */
.btn, button {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
}

p, span, div, a {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

p {
  font-size: 1.063rem;
  line-height: 32px;
  color: #646464;
}

.lead {
    color: #ddd !important;
}

/* Form elements */
input, textarea, select {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Ensure all text elements use Poppins */
* {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.content-inner-1 {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.content-inner-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.bg-img-fix {
  background-size: cover;
  background-position: center;
}

.overlay-black-dark {
    position: relative;
    overflow: hidden;
}
.overlay-black-dark:after {
    background: #000;
    opacity: 0.8;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.overlay-black-dark-2 {
    position: relative;
    overflow: hidden;
}
.overlay-black-dark-2:after {
    background: #000;
    opacity: 0.83;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.ual-button, .ual-button-secondry {
    color: #fff;
    padding: 12px 30px;
    display: inline-block;
    font-size: 13px;
    outline: none;
    cursor: pointer;
    outline: none;
    border-width: 0;
    border-style: solid;
    border-color: transparent;
    line-height: 1.42857;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
}

.ual-button.primary {
    background-color: var(--color-primary);
    color: #fff;
}

.ual-button.black {
    background-color: #000;
    color: #fff;
}

.ual-button.primary:active, .ual-button.primary:hover, .ual-button.primary:focus, .active > .ual-button {
    background-color: var(--color-hover);
    color: #fff;
}

.ual-button.black:active, .ual-button.black:hover, .ual-button.black:focus, .active > .ual-button {
    background-color: var(--rgba-color-black);
    color: #fff;
}

/* Universal Africa Limited Website Specific Styles */
.top-bar {
  background-color: #F6FBFF;
  padding: 5px 0;
  color: var(--color-secondary);
  border-bottom: 1px solid #e9e9e9;
}

.site-header {
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.main-bar {
  background: var(--background);
  width: 100%;
  position: relative;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

/* Menu/Navigation Styles */
.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-item {
  margin: 0;
  position: relative;
}

.navbar-nav .nav-link {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-secondary);
  cursor: pointer;
  font-weight: 600;
  display: inline-block;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-width: 0 0 0 1px;
  padding: 30px 20px !important;
  font-size: 15px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.navbar-nav .nav-item:last-child .nav-link {
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-primary);
  background-color: rgba(0, 134, 240, 0.02);
}

/* Underline effect for the nav links - using ::before instead of ::after */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: var(--color-primary);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
  width: 100%;
}

/* Dropdown styling */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 0;
  margin-top: 0;
  z-index: 1000;
  margin-top: -1px;
  border-top: 3px solid var(--color-primary);
  transition: all 0.2s ease;
  min-width: 250px;
}

.dropdown-item {
  font-family: var(--font-poppins), 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
  padding: 10px 25px !important;
  color: var(--color-secondary);
  font-size: 15px;
  position: relative;
  transition: all 0.2s ease;
  font-weight: 500 !important;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color:  #0072c5 !important;
  color: var(--bs-dropdown-link-active-color) !important;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color) !important;
    background-color: #0072c5;
    text-decoration: none;
}

/* Dropdown toggle indicator */
.nav-link.dropdown-toggle::after {
  display: inline-block;
  margin-left: 7px;
  vertical-align: middle;
  content: "";
  border-top: 4px solid ;
  border-right: 4px solid transparent;
  border-bottom: 0;
  border-left: 4px solid transparent;
  position: relative;
  top: -2px;
  transition: transform 0.3s ease;
    width: 5px !important;
}

/* Dropdown arrow animation */
.nav-link.dropdown-toggle:hover:after,
.nav-link.dropdown-toggle.show:after {
  transform: rotate(180deg);
}

.nav-link.dropdown-toggle.show:after {
  transform: rotate(180deg);
}

/* Make dropdowns appear over content */
.navbar .dropdown-menu {
  z-index: 1000;
  margin-top: -1px;
  border-top: 2px solid var(--color-primary);
  transition: all 0.2s ease;
  border-radius: 0px !important;
}

/* Improved active link indication */
.navbar-nav .nav-link.active {
  font-weight: 700;
  color: var(--color-primary);
}

/* Make sure dropdown menu doesn't interfere with other elements */
.dropdown-menu.show {
  display: block;
  opacity: 1;
}

/* Footer Styles */
.footer {
  background: var(--footer-bg) url(../images/footer-bg.webp) no-repeat center center;
  background-size: cover;
  color: var(--footer-text);
  padding-top: 70px;
}

.footer-top {
  padding-bottom: 40px;
}

.footer-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-primary);
}

.footer-contact-info {
  background-color: var(--color-secondary);
  margin-bottom: 50px;
  padding: 30px 0;
}

.footer-bottom {
  background-color: #000;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
  font-size:15px;
}

.footer .list-unstyled li a {
  color: var(--footer-text);
  transition: color 0.3s ease;
}

.footer .list-unstyled li a:hover {
  color: var(--color-primary);
}

.footer a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

/* Custom buttons */
.site-button {
  background-color: var(--color-primary);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.site-button:hover {
  background-color: var(--color-secondary);
  color: white;
}

.site-button.secondary {
  background-color: var(--color-secondary);
}

.site-button.secondary:hover {
  background-color: var(--color-primary);
}

.site-button.white {
  background-color: white;
  color: var(--color-secondary);
}

.site-button.white:hover {
  background-color: var(--color-primary);
  color: white;
}

/* Utility Classes */
.bg-gray {
  background-color: var(--light-bg);
}

.bg-secondary-color {
  --bs-bg-opacity: 1 !important;
  background-color: var(--bg-color-secondary) !important;
}

.content-inner {
  padding-top: 70px;
  padding-bottom: 40px;
}

.section-full {
  width: 100%;
}

/* Social Icons */
.social-icons {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-icons li {
  margin-right: 10px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: #444444;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

.social-icons a i {
  font-size: 1.025rem;
}

/* Logo Styles */

.logo-header img, .logo-footer img {
    height: auto;
    width: 100%;
    max-width: 450px;
}

.logo-header {
  display: block;
  color: #EFBB20;
  margin: 0;
  width: auto;
  height: auto;
  position: relative;
  z-index: 9;
  -webkit-transition: all 0.8s linear;
  -moz-transition: all 0.8s linear;
  -ms-transition: all 0.8s linear;
  -o-transition: all 0.8s linear;
  transition: all 0.8s linear;
    position: absolute;
    top: 0px;
}

.logo-header.mostion {
  transition: all 0.5s ease;
}

/* Logo animations for sticky header */
.is-fixed .logo-header {
    transition:all 0.5s;
	-webkit-transition:all 0.5s;
	-moz-transition:all 0.5s;
	-o-transition:all 0.5s;
}

.site-header {
  position: relative;
  z-index: 999;
}

/* Additional Nav Styling */
.navbar-nav .nav-link {
  position: relative;
  padding: 23px 18px !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Enhanced responsive styles */
@media (max-width: 767px) {
  .top-bar {
    text-align: center;
  }
  
  .top-bar .social-icons {
    justify-content: center;
    margin-top: 5px;
  }
  
  .site-header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile header layout fixes */
  .header-nav .container-fluid {
    flex-wrap: nowrap !important;
  }
  
  .navbar-brand {
    flex-shrink: 0;
    max-width: calc(100% - 60px); /* Reserve space for toggler */
  }
  
  .navbar-toggler {
    margin-left: auto;
    flex-shrink: 0;
    order: 3;
  }
  
  /* Mobile navigation adjustments */
  .site-header .is-fixed .navbar-toggler {
    margin-right: 0;
    padding: 6px 10px;
  }
}

/* Top Bar Responsive Styles */
@media (max-width: 767px) {
  .top-bar {
    padding: 4px 0;
    font-size: 12px;
  }
  
  .top-bar .social-icons li {
    margin-right: 5px;
  }
  
  .top-bar .social-icons a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

/* Enhanced Mobile Styles for Header Components */
@media (max-width: 575px) {
  /* .logo-wrapper {
    max-width: 120px !important;
  } */
  
  .main-bar {
    padding: 5px 0;
  }
  
  .navbar-nav {
    margin-top: 10px;
  }
  
  .top-bar {
    display: none; /* Option to hide top bar on very small screens */
  }
  
  .navbar-toggler {
    padding: 5px;
    margin-right: 5px;
  }
  
  .site-header {
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
  }
}

/* Medium Device Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
  /* .logo-wrapper {
    max-width: 180px !important;
  } */
  
  .top-bar .row > div {
    display: flex;
    justify-content: center;
    text-align: center;
  }
  
  .top-bar .social-icons {
    justify-content: center;
  }
}

/* Quik Search Styling */
.quik-search {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
}

.quik-search.open {
  display: flex;
}

.quik-search form {
  width: 70%;
  max-width: 600px;
}

.quik-search .form-control {
  padding: 15px;
  font-size: 18px;
  background: transparent;
  border: none;
  border-bottom: 2px solid white;
  color: white;
  border-radius: 0;
}

.quik-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.quik-search .search-close {
  position: absolute;
  top: 40px;
  right: 40px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/* Sticky Header Styles */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.sticky-header.main-bar {
  background-color: var(--background);
  padding-top: 0;
  padding-bottom: 0;
}

/* Sticky Header Mobile Enhancements */
@media (max-width: 991px) {
  .sticky-header {
    position: sticky;
    top: 0;
  }
  
  .sticky-header .logo-wrapper {
    transform: scale(0.9);
    transform-origin: left center;
  }
  
  .sticky-header .navbar-toggler {
    padding: 4px;
  }
  
  /* Animation for sticky header on mobile */
  @keyframes mobileSlideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .sticky-header.main-bar {
    animation: mobileSlideDown 0.3s ease-in-out;
  }
}

/* Menu underline animation effects */
@keyframes lineGrow {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: calc(100% - 34px);
    opacity: 1;
  }
}

.navbar-nav .nav-link.active::after {
  animation: lineGrow 0.3s forwards;
}

/* Mobile menu styles */
@media (max-width: 991px) {
  /* Basic navigation link styling */
  .navbar-nav .nav-link {
    border-width: 0;
    padding: 12px 15px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar-nav .nav-item:last-child .nav-link {
    border-right: none;
  }
  
  /* Underline effect adjustment */
  .navbar-nav .nav-link::before {
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
  }
  
  .navbar-nav .nav-link:hover::before,
  .navbar-nav .nav-link.active::before {
    width: 50px;
  }
  
  /* Dropdown styling for mobile */
  .dropdown-menu {
    box-shadow: none;
    border-top: none;
    border-left: 2px solid var(--color-primary);
    margin-left: 15px;
    padding-left: 0;
    background-color: rgba(0,0,0,0.01);
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  
  .dropdown-menu.show {
    display: block;
  }
  
  /* Mobile dropdown item styling */
  .dropdown-item {
    padding: 10px 15px !important;
    font-size: 14px;
  }
  
  /* Navbar toggler styling */
  .navbar-toggler {
    border: none;
    padding: 8px 6px;
    outline: none !important;
    background-color: transparent;
    z-index: 5;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  /* Navbar collapse styling */
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1030;
  }
}

/* Improved submenu responsiveness for mobile */
@media (max-width: 991px) {
  /* Fix dropdown display issues */
  .dropdown-menu {
    position: static !important;
    float: none;
    width: 100%;
    margin-top: 0;
    background-color: rgba(0, 0, 0, 0.02);
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: none;
    padding: 0;
    border-left: 2px solid var(--color-primary);
    margin-left: 10px;
  }
  
  .dropdown-menu.show {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    transition: none !important;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Enhance dropdown appearance */
  .dropdown-item {
    padding: 8px 15px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    white-space: normal;
  }
  
  .dropdown-toggle::after {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .dropdown-toggle.show::after {
    transform: translateY(-50%) rotate(180deg);
  }
  
  /* Fix navbar display */
  .navbar-collapse {
    max-height: 75vh;
    overflow-y: auto;
  }
  
  /* Make nav links full width */
  .nav-item {
    width: 100%;
  }
  
  .navbar-nav {
    width: 100%;
    padding: 10px 0;
  }
  
  /* Prevent content scrolling when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

/* Final navbar styling refinements */
.header-nav {
  position: relative; 
  z-index: 4;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  height: 100%;
}

.navbar-nav .nav-link {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
}

/* Perfect underline animation */
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  width: 0;
  height: 4px;
  bottom: 0;
  top: 0;
  background-color: var(--color-primary);
  transition: width 0.3s ease-in-out;
  transform: translateX(0);
}

.navbar-nav .nav-link.active::before {
  width: 100%;
}

.navbar-nav .nav-link:hover::before {
  width: 100%;
}

/* Dropdown menu enhancements */
.dropdown:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 991px) {
  /* Navbar collapse styling enhancements */
  .navbar-collapse {
    background-color: white;
    padding: 10px 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 0;
  }
  
  /* Navigation links in mobile view */
  .navbar-nav .nav-link {
    justify-content: space-between;
  }
  
  /* Container layout adjustments for mobile */
  .main-bar .header-nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  
  /* Fix for navbar toggler position and layout */
  .header-nav .container-fluid {
    padding: 0;
    position: relative;
  }
  
  /* Ensure logo is properly positioned and sized */
  .logo-header img {
    width: 100%;
    height: 64px;
    transition: all 0.3s ease;
  }
}

/* Ensure dropdown menus work properly on touch devices */
@media (hover: none) {
  .dropdown:hover > .dropdown-menu {
    display: none;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
}

/* Logo container responsive styling */
.logo-container {
  display: flex;
  align-items: center;
}

/* Navbar toggler icon styling */
.navbar-toggler {
  transition: all 0.3s ease;
  position: relative;
}

.navbar-toggler:hover {
  opacity: 0.8;
}

.navbar-toggler-icon {
  transition: all 0.3s ease;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
  background-image: var(--bs-navbar-toggler-icon-bg);
}

/* On very small screens */
@media (max-width: 359px) {
  /* .logo-wrapper {
    max-width: 110px !important;
  } */
  
  .navbar-toggler {
    padding: 4px;
  }
}

/* Fixed header for mobile */
.sticky-header .logo-container {
  margin-left: 0;
}

/* Sticky logo size adjustment */
/* .sticky-logo img {
  transform: scale(0.95);
  transform-origin: left center;
  transition: transform 0.3s ease;
} */

/* Enhanced responsive navbar collapse behavior */
@media (max-width: 991px) {
  /* Smooth transition for collapsing navbar */
  .navbar-collapse {
    transition: max-height 0.35s ease;
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
  }
  
  .navbar-collapse.show {
    max-height: calc(100vh - 150px); /* Limit height and make scrollable */
    overflow-y: auto;
  }
  
  /* Make links easier to tap on mobile */
  .navbar-nav .nav-link {
    min-height: 44px; /* Minimum touch target size */
  }
  
  /* Ensure dropdown arrows are visible */
  .dropdown-toggle::after {
    float: right;
    margin-top: 10px;
  }
  
  /* Fix for dropdown display on mobile */
  .dropdown-menu {
    width: 100%;
    transition: none;
    transform: none !important;
  }
  
  /* Fix spacing for dropdown items on mobile */
  .dropdown-item {
    white-space: normal;
  }
}

/* Logo styling for mobile devices */
@media (max-width: 767.98px) {
  .logo {
    padding: 10px 0;
    max-height: 60px;
  }
  
  .logo img {
    width: 100%;
    height: 60px;
    transition: all 0.3s ease;
    object-fit: contain;
  }
  
  .sticky-header .logo img {
    max-height: 35px;
  }
  
  /* Adjust vertical alignment of logo on mobile */
  .logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  /* Add some breathing room around logo */
  .navbar-brand {
    padding: 5px 0;
    margin-right: 0;
  }
}

/* Enhanced navbar toggler styling */
.navbar-toggler {
  padding: 10px;
  border: none;
  background: transparent;
  outline: none !important;
  box-shadow: none !important;
  transition: all 0.3s ease;
  margin-left: auto;
  order: 2;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler:hover {
  opacity: 0.8;
}

/* Mobile specific toggler positioning */
@media (max-width: 991px) {
  .navbar-toggler {
    position: relative;
    z-index: 1031;
    flex-shrink: 0;
    margin-left: 15px;
  }
  
  .header-nav .container-fluid {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  
  .navbar-brand {
    flex: 0 0 auto;
    margin-right: auto;
  }
}

/* Fix for iOS dropdown issues */
@supports (-webkit-touch-callout: none) {
  /* CSS specific to iOS devices */
  .dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .dropdown-toggle:active,
  .dropdown-toggle:focus {
    outline: none !important;
  }
}


.img-ho1 {
    position:relative;
    z-index:1;
}
.img-ho1:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
    border: 20px solid;
    z-index: -1;
    border-color:var(--color-primary)!important;
    transition:all 0.8s;
    -moz-transition:all 0.8s;
    -ms-transition:all 0.8s;
    -o-transition:all 0.8s;
    -webkit-transition:all 0.8s;
}
.img-ho1:hover:after{
    right: -15px;
    top: -15px;
}
.img-ho1 img {
    transition:all 0.8s;
    -moz-transition:all 0.8s;
    -ms-transition:all 0.8s;
    -o-transition:all 0.8s;
    -webkit-transition:all 0.8s;
}
.img-ho1:hover img {
    transform:translate(-15px, 15px);
    -moz-transform:translate(-15px, 15px);
    -ms-transform:translate(-15px, 15px);
    -webkit-transform:translate(-15px, 15px);
    -o-transform:translate(-15px, 15px);
}



.img-ho2 {
    position:relative;
    z-index:1;
}
.img-ho2:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    bottom: 0;
    border: 20px solid;
    z-index: -1;
    border-color:var(--color-primary)!important;
    transition:all 0.8s;
    -moz-transition:all 0.8s;
    -ms-transition:all 0.8s;
    -o-transition:all 0.8s;
    -webkit-transition:all 0.8s;
}
.img-ho2:hover:after {
    right: -15px;
    top: -15px;
}
.img-ho2 img {
    transition:all 0.8s;
    -moz-transition:all 0.8s;
    -ms-transition:all 0.8s;
    -o-transition:all 0.8s;
    -webkit-transition:all 0.8s;
}
.img-ho2:hover img {
    transform:translate(30px, 15px);
    -moz-transform:translate(30px, 15px);
    -ms-transform:translate(30px, 15px);
    -webkit-transform:translate(30px, 15px);
    -o-transform:translate(30px, 15px);
}



/* About Section Years Box */
.about-year {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.about-year span {
    font-size: 85px;
    color: #000;
    font-weight: 600;
    position: relative;
    z-index: 1;
    font-family: 'Roboto Condensed', sans-serif;
    border: 5px solid;
    width: 150px;
    height: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-color: var(--color-primary) !important;
}

.about-year p {
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    margin-left: 20px;
    color: #000;
    text-transform: uppercase;
}

.about-year-box {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  border: 4px solid #2196f3;
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.min-h-400 {
  min-height: 400px;
}
.year-num {
  line-height: 1;
  font-size: 3rem;
}
.year-label {
  letter-spacing: 1px;
  font-weight: 500;
}
.heading-main {
  font-size: 2.1rem;
  line-height: 1.2;
}
.about-desc {
  color: #444;
  font-size: 1.08rem;
  font-weight: 400;
}
.btn-main {
  border-radius: 30px;
  font-size: 1rem;
}

/* Header Fixed Styles */
.sticky-header.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Ensure body padding when header is fixed */
body.sticky-active {
  padding-top: 80px; /* Adjust based on your header height */
}

/* Back to Top Button */
.scrollTop {
    background: var(--color-primary);
    border-color: var(--color-primary);
    border-radius: 50%;
    border-style: solid;
    border-width: 0;
    bottom: 15px;
    color: #fff !important;
    cursor: pointer;
    display: block;
    height: 50px;
    line-height: 50px;
    margin: 0;
    position: fixed;
    right: 15px;
    text-align: center;
    width: 50px;
    z-index: 999;
    box-shadow: -4px 4px 24px -10px rgba(0,0,0,0.3);
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
}

.about-content {
  display: block;
  padding: 2rem 0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

@-webkit-keyframes toTopFromBottom {
	49% {
		-webkit-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-webkit-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@-moz-keyframes toTopFromBottom {
	49% {
		-moz-transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		-moz-transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
@keyframes toTopFromBottom {
	49% {
		transform: translateY(-100%);
	}
	50% {
		opacity: 0;
		transform: translateY(100%);
	}
	51% {
		opacity: 1;
	}
}
 .icon-up:hover i {
    -webkit-animation: toTopFromBottom 0.8s forwards;
    -moz-animation: toTopFromBottom 0.8s forwards;
    animation: toTopFromBottom 0.8s forwards;
}

/* Stats Counter Styles */
.stats-counter-box {
  padding:50px 20px;
}
.stats-counter {
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.stats-counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-primary);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 1;
}

.stats-counter:hover::before {
  transform: translateY(0);
}

.stats-counter > * {
  position: relative;
  z-index: 2;
}

.stats-counter:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
}

.stats-counter .counter {
  font-size: 3rem;
  font-weight: 700;
}

/* Overlay adjustment for stats counter section */
.counter-staus-box.overlay-black-dark::before {
  background: rgba(0,0,0,0.45); /* lighter overlay for visibility */
}

.counter-staus-box .section-head,
.counter-staus-box .counter-style-5,
.counter-staus-box .counter-style-5 .counter,
.counter-staus-box .counter-style-5 p {
  color: #fff !important;
}

.counter-staus-box .icon-cell i {
  color: #fff !important;
  font-size: 2.5rem;
}

.counter-staus-box .dlab-separator {
  height: 4px;
  width: 40px;
  margin: 0 auto 12px auto;
  background: var(--color-primary);
  border-radius: 2px;
}

@media (max-width: 768px) {
  .stats-counter .counter {
    font-size: 2.5rem;
  }
}

.service-box .icon-lg i {
  color: var(--color-primary);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  padding: 0 0 0 .25rem;
}

.service-box .service-num {
  color: var(--color-primary);
  opacity: .1;
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1rem;
  padding: 0 0 0 .25rem;
  letter-spacing: 0.001rem;
  font-weight: 700;
} 

.icon-bx-wraper {
  padding: 50px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.8s;
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    z-index: 1;
}

.icon-bx-wraper.center {
    text-align: center;
}

.icon-bx-xl i,
.icon-bx-lg i,
.icon-bx-md i,
.icon-bx-sm i,
.icon-bx-xs i {
    vertical-align: middle;
}
.icon-bx-xl i {
    font-size: 80px;
}
.icon-bx-lg i {
    font-size: 60px;
}
.icon-bx-md i {
    font-size: 45px;
}
.icon-bx-sm i {
    font-size: 30px;
}
.icon-bx-xs i {
    font-size: 20px;
}
.icon-bx-xl img,
.icon-bx-lg img,
.icon-bx-md img,
.icon-bx-sm img,
.icon-bx-xs img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
}
.icon-bx-xl img {
    height: 80px;
}
.icon-bx-lg img {
    height: 55px;
}
.icon-bx-md img {
    height: 40px;
}
.icon-bx-sm img {
    height: 30px;
}
.icon-bx-xs img {
    height: 20px;
}
/*== 11. ICON ==*/

.icon-xl,
.icon-lg,
.icon-md,
.icon-sm,
.icon-xs {
    display: inline-block;
    text-align: center;
}
.icon-xl {
    width: 100px;
}
.icon-lg {
    width: 80px;
}
.icon-md {
    width: 60px;
}
.icon-sm {
    width: 40px;
}
.icon-xs {
    width: 30px;
}
.icon-xl i,
.icon-lg i,
.icon-md i,
.icon-sm i,
.icon-xs i {
    vertical-align: middle;
}
.icon-xl i {
    font-size: 80px;
	line-height: 80px;	
}
.icon-lg i {
    font-size: 60px;
}
.icon-md i {
    font-size: 45px;
}
.icon-sm i {
    font-size: 30px;
}
.icon-xs i {
    font-size: 20px;
}
.icon-xl img,
.icon-lg img,
.icon-md img,
.icon-sm img,
.icon-xs img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
}
.icon-xl img {
    height: 80px;
}
.icon-lg img {
    height: 70px;
}
.icon-md img {
    height: 50px;
}
.icon-sm img {
    height: 30px;
}
.icon-xs img {
    height: 20px;
}
/*== place icon with box ==*/

.icon-bx-wraper {
    position: relative;
}
.icon-bx-wraper .dlab-tilte {
    margin-top: 0;
}
.icon-bx-wraper .after-titile-line {
    margin-bottom: 10px;
}
.icon-bx-wraper p:last-child {
    margin: 0;
    text-transform: uppercase;
}
.icon-content {
    overflow: hidden;
}

.icon-footer {
    margin:20px 0px 0px;
}

.section-stats .counter {
    font-size: 60px;
    line-height: 60px;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.section-stats .play-btn {
    font-size: 18px;
    line-height: 70px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 40px;
    color: #fff;
    display: inline-block;
    margin-top: 30px;
}

.section-stats .section-head .title {
    font-size: 3rem;
    line-height: 55px;
    font-weight: 700;
    color: #fff;
}

/*---------------------------------------------------------------
5. BOX SPACING (inner & outer)
	>padding
	>marging
---------------------------------------------------------------*/
/*== >padding (around) ======*/

.p-a0 {
    padding: 0;
}
.p-a5 {
    padding: 5px;
}
.p-a10 {
    padding: 10px;
}
.p-a15 {
    padding: 15px;
}
.p-a20 {
    padding: 20px;
}
.p-a25 {
    padding: 25px;
}
.p-a30 {
    padding: 30px;
}
.p-a40 {
    padding: 40px;
}
.p-a50 {
    padding: 50px;
}
.p-a60 {
    padding: 60px;
}
.p-a70 {
    padding: 70px;
}
.p-a80 {
    padding: 80px;
}
.p-a90 {
    padding: 90px;
}
.p-a100 {
    padding: 100px;
}
/*== >Padding (top) ==*/

.p-t0 {
    padding-top: 0;
}
.p-t5 {
    padding-top: 5px;
}
.p-t10 {
    padding-top: 10px;
}
.p-t15 {
    padding-top: 15px;
}
.p-t20 {
    padding-top: 20px;
}
.p-t30 {
    padding-top: 30px;
}
.p-t40 {
    padding-top: 40px;
}
.p-t50 {
    padding-top: 50px;
}
.p-t60 {
    padding-top: 60px;
}
.p-t70 {
    padding-top: 70px;
}
.p-t80 {
    padding-top: 80px;
}
.p-t90 {
    padding-top: 90px;
}
.p-t100 {
    padding-top: 100px;
}
/*== >Padding (bottom) ==*/

.p-b0 {
    padding-bottom: 0;
}
.p-b5 {
    padding-bottom: 5px;
}
.p-b10 {
    padding-bottom: 10px;
}
.p-b15 {
    padding-bottom: 15px;
}
.p-b20 {
    padding-bottom: 20px;
}
.p-b30 {
    padding-bottom: 30px;
}
.p-b40 {
    padding-bottom: 40px;
}
.p-b50 {
    padding-bottom: 50px;
}
.p-b60 {
    padding-bottom: 60px;
}
.p-b70 {
    padding-bottom: 70px;
}
.p-b80 {
    padding-bottom: 80px;
}
.p-b90 {
    padding-bottom: 90px;
}
.p-b100 {
    padding-bottom: 100px;
}
/*== >Padding (left) ==*/

.p-l0 {
    padding-left: 0;
}
.p-l5 {
    padding-left: 5px;
}
.p-l10 {
    padding-left: 10px;
}
.p-l15 {
    padding-left: 15px;
}
.p-l20 {
    padding-left: 20px;
}
.p-l30 {
    padding-left: 30px;
}
.p-l40 {
    padding-left: 40px;
}
.p-l50 {
    padding-left: 50px;
}
.p-l60 {
    padding-left: 60px;
}
.p-l70 {
    padding-left: 70px;
}
.p-l80 {
    padding-left: 80px;
}
.p-l90 {
    padding-left: 90px;
}
.p-l100 {
    padding-left: 100px;
}
/*== >Padding (right) ==*/

.p-r0 {
    padding-right: 0;
}
.p-r5 {
    padding-right: 5px;
}
.p-r10 {
    padding-right: 10px;
}
.p-r15 {
    padding-right: 15px;
}
.p-r20 {
    padding-right: 20px;
}
.p-r30 {
    padding-right: 30px;
}
.p-r40 {
    padding-right: 40px;
}
.p-r50 {
    padding-right: 50px;
}
.p-r60 {
    padding-right: 60px;
}
.p-r70 {
    padding-right: 70px;
}
.p-r80 {
    padding-right: 80px;
}
.p-r90 {
    padding-right: 90px;
}
.p-r100 {
    padding-right: 100px;
}
/*== >Padding (left right) ==*/

.p-lr0 {
    padding-left: 0;
    padding-right: 0;
}
.p-lr5 {
    padding-left: 5px;
    padding-right: 5px;
}
.p-lr10 {
    padding-left: 10px;
    padding-right: 10px;
}
.p-lr15 {
    padding-left: 15px;
    padding-right: 15px;
}
.p-lr20 {
    padding-left: 20px;
    padding-right: 20px;
}
.p-lr30 {
    padding-left: 30px;
    padding-right: 30px;
}
.p-lr40 {
    padding-left: 40px;
    padding-right: 40px;
}
.p-lr50 {
    padding-left: 50px;
    padding-right: 50px;
}
.p-lr60 {
    padding-left: 60px;
    padding-right: 60px;
}
.p-lr70 {
    padding-left: 70px;
    padding-right: 70px;
}
.p-lr80 {
    padding-left: 80px;
    padding-right: 80px;
}
.p-lr90 {
    padding-left: 90px;
    padding-right: 90px;
}
.p-lr100 {
    padding-left: 100px;
    padding-right: 100px;
}
/*== >Padding (top bottom) ==*/

.p-tb0 {
    padding-bottom: 0;
    padding-top: 0;
}
.p-tb5 {
    padding-bottom: 5px;
    padding-top: 5px;
}
.p-tb10 {
    padding-bottom: 10px;
    padding-top: 10px;
}
.p-tb15 {
    padding-bottom: 15px;
    padding-top: 15px;
}
.p-tb20 {
    padding-bottom: 20px;
    padding-top: 20px;
}
.p-tb30 {
    padding-bottom: 30px;
    padding-top: 30px;
}
.p-tb40 {
    padding-bottom: 40px;
    padding-top: 40px;
}
.p-tb50 {
    padding-bottom: 50px;
    padding-top: 50px;
}
.p-tb60 {
    padding-bottom: 60px;
    padding-top: 60px;
}
.p-tb70 {
    padding-bottom: 70px;
    padding-top: 70px;
}
.p-tb80 {
    padding-bottom: 80px;
    padding-top: 80px;
}
.p-tb90 {
    padding-bottom: 90px;
    padding-top: 90px;
}
.p-tb100 {
    padding-bottom: 100px;
    padding-top: 100px;
}
/*== >margin (around) ======*/

.m-auto {
    margin: auto;
}
.m-a0 {
    margin: 0;
}
.m-a5 {
    margin: 5px;
}
.m-a10 {
    margin: 10px;
}
.m-a15 {
    margin: 15px;
}
.m-a20 {
    margin: 20px;
}
.m-a30 {
    margin: 30px;
}
.m-a40 {
    margin: 40px;
}
.m-a50 {
    margin: 50px;
}
.m-a60 {
    margin: 60px;
}
.m-a70 {
    margin: 70px;
}
.m-a80 {
    margin: 80px;
}
.m-a90 {
    margin: 90px;
}
.m-a100 {
    margin: 100px;
}
/*== >marging (top) ==*/

.m-t0 {
    margin-top: 0;
}
.m-t5 {
    margin-top: 5px;
}
.m-t10 {
    margin-top: 10px;
}
.m-t15 {
    margin-top: 15px;
}
.m-t20 {
    margin-top: 20px;
}
.m-t30 {
    margin-top: 30px;
}
.m-t40 {
    margin-top: 40px;
}
.m-t50 {
    margin-top: 50px;
}
.m-t60 {
    margin-top: 60px;
}
.m-t70 {
    margin-top: 70px;
}
.m-t80 {
    margin-top: 80px;
}
.m-t90 {
    margin-top: 90px;
}
.m-t100 {
    margin-top: 100px;
}
/*== >marging (bottom) ==*/

.m-b0 {
    margin-bottom: 0;
}
.m-b5 {
    margin-bottom: 5px;
}
.m-b10 {
    margin-bottom: 10px;
}
.m-b15 {
    margin-bottom: 15px;
}
.m-b20 {
    margin-bottom: 20px;
}
.m-b30 {
    margin-bottom: 30px;
}
.m-b40 {
    margin-bottom: 40px;
}
.m-b50 {
    margin-bottom: 50px;
}
.m-b60 {
    margin-bottom: 60px;
}
.m-b70 {
    margin-bottom: 70px;
}
.m-b80 {
    margin-bottom: 80px;
}
.m-b90 {
    margin-bottom: 90px;
}
.m-b100 {
    margin-bottom: 100px;
}
/*== >marging (left) ==*/

.m-l0 {
    margin-left: 0;
}
.m-l5 {
    margin-left: 5px;
}
.m-l10 {
    margin-left: 10px;
}
.m-l15 {
    margin-left: 15px;
}
.m-l20 {
    margin-left: 20px;
}
.m-l30 {
    margin-left: 30px;
}
.m-l40 {
    margin-left: 40px;
}
.m-l50 {
    margin-left: 50px;
}
.m-l60 {
    margin-left: 60px;
}
.m-l70 {
    margin-left: 70px;
}
.m-l80 {
    margin-left: 80px;
}
.m-l90 {
    margin-left: 90px;
}
.m-l100 {
    margin-left: 100px;
}
/*== >marging (right) ==*/

.m-r0 {
    margin-right: 0;
}
.m-r5 {
    margin-right: 5px;
}
.m-r10 {
    margin-right: 10px;
}
.m-r15 {
    margin-right: 15px;
}
.m-r20 {
    margin-right: 20px;
}
.m-r30 {
    margin-right: 30px;
}
.m-r40 {
    margin-right: 40px;
}
.m-r50 {
    margin-right: 50px;
}
.m-r60 {
    margin-right: 60px;
}
.m-r70 {
    margin-right: 70px;
}
.m-r80 {
    margin-right: 80px;
}
.m-r90 {
    margin-right: 90px;
}
.m-r100 {
    margin-right: 100px;
}
/*== >marging (left right) ==*/

.m-lr0 {
    margin-left: 0;
    margin-right: 0;
}
.m-lr5 {
    margin-left: 5px;
    margin-right: 5px;
}
.m-lr10 {
    margin-left: 10px;
    margin-right: 10px;
}
.m-lr15 {
    margin-left: 15px;
    margin-right: 15px;
}
.m-lr20 {
    margin-left: 20px;
    margin-right: 20px;
}
.m-lr30 {
    margin-left: 30px;
    margin-right: 30px;
}
.m-lr40 {
    margin-left: 40px;
    margin-right: 40px;
}
.m-lr50 {
    margin-left: 50px;
    margin-right: 50px;
}
.m-lr60 {
    margin-left: 60px;
    margin-right: 60px;
}
.m-lr70 {
    margin-left: 70px;
    margin-right: 70px;
}
.m-lr80 {
    margin-left: 80px;
    margin-right: 80px;
}
.m-lr90 {
    margin-left: 90px;
    margin-right: 90px;
}
.m-lr100 {
    margin-left: 100px;
    margin-right: 100px;
}

/* ====== Hero Slider Styles ====== */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 700px;
  overflow: hidden;
}
.hero-slider .slider-item {
  position: relative;
  width: 100%;
  height: 700px;
}
.hero-slider .slider-item img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}
.heroContentBox {
  background: rgba(33,33,33,0.75);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
  text-align: left;
  max-width: 35%;
  min-width: 280px;
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.slick-dots {
  bottom: 30px;
}
.slick-dots li {
  margin: 0 8px;
}
.slick-dots li button {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 0.5rem;
  border-radius: 50%;
  border: 2px solid #fff;
  cursor: pointer;
  background: transparent;
}
.slick-dots li button::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: .750rem;
  height: .750rem;
  background: #0086f0;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(-50%, -50%) scale(0);
}
.slick-dots li.slick-active button {
  border: 2px solid #0086f0;
  opacity: 1;
}
.slick-dots li.slick-active button::before {
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 991px) {
  .heroContentBox {
    padding: 1.2rem 1rem;
    border-radius: 14px;
    max-width: 90vw;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
  }
  .heroContentBox h2 {
    font-size: 2rem !important;
  }
  .heroContentBox p {
    font-size: 1rem !important;
  }
  .hero-slider, .hero-slider .slider-item, .hero-slider .slider-item img {
    min-height: 450px;
    height: 450px;
  }
}
@media (max-width: 600px) {
  .heroContentBox {
    padding: 0.8rem 0.5rem;
    border-radius: 10px;
    max-width: 98vw;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    text-align: center;
  }
  .heroContentBox h2 {
    font-size: 1.3rem !important;
  }
  .heroContentBox p {
    font-size: 0.95rem !important;
  }
  .hero-slider, .hero-slider .slider-item, .hero-slider .slider-item img {
    min-height: 350px;
    height: 350px;
  }
}

/* ====== Overlay ====== */
.overlay-black-middle {
  position: relative;
}
.overlay-black-middle::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
.overlay-black-middle .container {
  position: relative;
  z-index: 1;
}

/* ====== Testimonials Section ====== */
.section-testimonials {
    background-color: var(--color-secondary);
    background-image: url('../images/map-bg.webp');
    background-size: cover;
    background-position: center;
}

.section-testimonials .text-center.section-head p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    font-size: 18px;
    line-height: 28px;
    color: #ccc;
}
.section-testimonials .testimonial {
    padding: 40px 30px 20px 0;
    position: relative;
    font-size: 15px;
    font-weight: 400;
}
.section-testimonials .testimonial::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -2px;
    background: #fff;
    top: 0;
    opacity: 0.2;
}
.testimonial-pic img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial .testimonial-text {
  padding:40px 30px 20px 0;
}

.quote-left,
.quote-right {
    position: relative;
}

.quote-left:before,
.quote-right:after {
	font-family: "Font Awesome 6 Pro";
	font-weight:600;
    position: absolute;
    z-index: 10;
    top: 15px;
}

.quote-left:before {
    content: "\f10d";
    left: 0;
}

.quote-right:after {
    content: "\f10e";
    left: auto;
    top: auto;
    bottom: 0;
    right: 30px;
}

.testimonial-text {
    padding: 15px;
    position: relative;
	font-size:15px;
	font-weight: 400;
}

/* Testimonial Slick Dots - Owl Primary Full Style */
.owl-dots-style .slick-dots {
  bottom: -40px;
}
.owl-dots-style .slick-dots li {
  margin: 0 4px;
}
.owl-dots-style .slick-dots li button {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0;
  padding: 0;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  background: var(--color-primary, #0086f0);
  opacity: 0.5;
  transition: all 0.5s;
}
.owl-dots-style .slick-dots li button::before {
  content: none;
}
.owl-dots-style .slick-dots li.slick-active button {
  opacity: 1;
  width: 25px;
  background: var(--color-primary, #0086f0);
}

/* ====== Client Logo Section ====== */
.client-logo {
    padding: 15px;
    text-align: center;
}
.client-logo img {
    max-width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
.client-logo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.custom-prev-arrow { left: -50px; }
.custom-next-arrow { right: -50px; }

/* ====== About Image Wrapper ====== */
.aboutImageWrapper {
    position: relative;
    display: inline-block;
    border-radius: 12px;
    transition: box-shadow 0.2s, border 0.2s;
    padding: 18px;
}

/* ====== Our Story ====== */
.our-story > span {
    color: var(--color-primary);
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}
.our-story p {
    font-size: 1.063rem;
    line-height: 32px;
    color: #646464;
}
.our-story h2.title {
    font-size: 50px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}
.our-story h4.title {
    font-size: 1.625rem;
    line-height: 40px;
    font-weight: 500;
    color: #999;
}
.color-green {
    color: #3fa73f;
}

/* ====== Section Head ====== */
.section-head {
    margin-bottom: 50px;
}

/* ====== Fly Box / Project Cards ====== */
.fly-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fly-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.fbox-media {
    overflow: hidden;
    position: relative;
    background-color: #FFF;
}
.fbox-media img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.fly-box:hover .fbox-media img {
    transform: scale(1.1);
}
.fly-box h6 {
    padding: 15px 20px 5px 20px;
    margin: 0;
    font-weight: 600;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}
.fly-box p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
.fly-box:hover h6 {
    color: var(--color-primary);
}
.project-box {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .fly-box:hover {
        transform: translateY(-5px);
    }
    .fly-box:hover .fbox-media img {
        transform: scale(1.05);
    }
}

/* ====== Hero Banner for Subpages ====== */
.hero-section {
    position: relative;
    min-height: 320px;
}
.hero-section .overlay {
    z-index: 1;
}
.hero-section .container {
    z-index: 2;
}
.hero-section .breadcrumb {
    --bs-breadcrumb-divider: '\f054'; 
}

ol.breadcrumb li {
    padding: 0;
    margin-right: 0px;
    color: #fff;
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
}
.hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
    font-size: .875rem;
    line-height: 29px;
    content: '\f054';/* Font Awesome right arrow */
    font-family: "Font Awesome 6 Pro", sans-serif;
}
.hero-section .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.85);
}

/* ====== Font Override for Poppins (since not using Next.js font) ====== */
body, h1, h2, h3, h4, h5, h6, p, span, div, a, .btn, button, input, textarea, select, * {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ====== Slick Overrides ====== */
.slick-slide img {
    display: block;
    width: 100%;
}
.slick-track {
    display: flex;
    align-items: stretch;
}
/*== >marging (top bottom) ==*/

.m-tb0 {
    margin-bottom: 0;
    margin-top: 0;
}
.m-tb5 {
    margin-bottom: 5px;
    margin-top: 5px;
}
.m-tb10 {
    margin-bottom: 10px;
    margin-top: 10px;
}
.m-tb15 {
    margin-bottom: 15px;
    margin-top: 15px;
}
.m-tb20 {
    margin-bottom: 20px;
    margin-top: 20px;
}
.m-tb30 {
    margin-bottom: 30px;
    margin-top: 30px;
}
.m-tb40 {
    margin-bottom: 40px;
    margin-top: 40px;
}
.m-tb50 {
    margin-bottom: 50px;
    margin-top: 50px;
}
.m-tb60 {
    margin-bottom: 60px;
    margin-top: 60px;
}
.m-tb70 {
    margin-bottom: 70px;
    margin-top: 70px;
}
.m-tb80 {
    margin-bottom: 80px;
    margin-top: 80px;
}
.m-tb90 {
    margin-bottom: 90px;
    margin-top: 90px;
}
.m-tb100 {
    margin-bottom: 100px;
    margin-top: 100px;
}
/*== > colum gap less ==*/


/* Section Testimonials */
.section-testimonials .text-center.section-head p {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    font-size: 18px;
    line-height: 28px;
    color: #ccc;
}

.section-testimonials .testimonial {
    padding: 40px 30px 20px 0;
    position: relative;
    font-size: 15px;
    font-weight: 400;
}

.section-testimonials .testimonial::after {
    content: "";
    width: 1px;
    height: 100%;
    position: absolute;
    right: -2px;
    background: #fff;
    top: 0;
    opacity: 0.2;
}

/* Homepage */
.aboutImageWrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  transition: box-shadow 0.2s, border 0.2s;
  padding: 18px;
}

/* Our Story */
.our-story > span{
    color:var(--color-primary);
    font-size: 22px;
    display: block;
    margin-bottom: 10px;
}
.color-green {
    color: #3fa73f;
}
.our-story p {
    font-size: 1.063rem;
    line-height: 32px;
    color: #646464;
}
.our-story h2.title {
	font-size: 50px;
    line-height: 70px;
    font-weight: 400;
    margin-bottom: 20px;
}
.our-story h2.title span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
}
.our-story h4.title {
	font-size: 1.625rem;
    line-height: 40px;
    font-weight: 500;
    color: #999;
}

/* Projects - Enhanced Fly Box with Hover Effects */

.section-head {
    margin-bottom: 50px;
}

.fly-box {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fly-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.fbox-media {
    overflow: hidden;
    position: relative;
    background-color: #FFF;
}

.fbox-media img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fly-box:hover .fbox-media img {
    transform: scale(1.1);
}

.fly-box h6 {
    padding: 15px 20px 5px 20px;
    margin: 0;
    font-weight: 600;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.fly-box p {
    padding: 0 20px 20px 20px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.fly-box:hover h6 {
    color: var(--color-primary);
}

/* Project Box Spacing */
.project-box {
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .fly-box:hover {
        transform: translateY(-5px);
    }
    
    .fly-box:hover .fbox-media img {
        transform: scale(1.05);
    }
}