/**
* Template Name: Logis
* Template URL: https://bootstrapmade.com/logis-bootstrap-logistics-website-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: "Poppins",  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: #001973; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0d42ff; /* 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: #0d42ff; /* 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: #f7f9fc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0e1d34;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #19335c;
  --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 {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

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

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

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
}

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

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/*.navmenu {
  margin: 0;
  padding: 0;
} */

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* ================= NAVBAR STABILITY FIX ================= */

#navbar{
    padding: 18px 0;
    transition: all 0.3s ease;
}

#navbar .container{
    display: flex;
    align-items: center;
}

 .nav-link{
        color: #fff !important;
        padding: 12px 0;
        font-weight: 600;
        position: relative;
    }
    
 .nav-link:hover,
        color: #0d42ff !important;
    }

/* prevent jumping */
.navbar-brand{
    display: flex;
    align-items: center;
    gap: 10px;
}

/* logo stable */
.navbar-brand img{
    margin-top:20px;
    height: 150px;
    width: auto;
    transition: all 0.3s ease;
}

/* text stable */
.brand-text{
    margin: 0 !important;
    font-size: 18px;
    line-height: 1.2;
}

/* shrink on scroll */
#navbar.navbar-scrolled{
    padding: 8px 0;
}

#navbar.navbar-scrolled .navbar-brand img{
    height: 80px;
}

/* ================= UNDERLINE ON HOVER AFTER SCROLL ================= */

#navbar.navbar-scrolled .nav-link{
    position: relative;
}

/* underline line */
#navbar.navbar-scrolled .nav-link::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 0%;
    height: 2px;
    background: #0D42FF;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* expand on hover */
#navbar.navbar-scrolled .nav-link:hover::after{
    width: 70%;
    color: #0D42FF;
}



/* ================= CLEAN HOVER UNDERLINE RESET ================= */

/* ================= CLEAN HOVER UNDERLINE FIX ================= */

.nav-link{
    position: relative;
    display: inline-block;
}

/* underline (hidden by default) */
.nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 2px;
    background: #00072D;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* show ONLY on hover */
.nav-link:hover::after{
    transform: scaleX(1);
    color: #0D42FF;
}





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

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

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  padding: 10px 0;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(14, 29, 52, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Mobile */

@media (max-width: 1199px) {

    .navbar-collapse{
        background: #ffffff !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99999;
        padding: 15px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .nav-link{
        color: #00072D !important;
        padding: 12px 0;
        font-weight: 600;
    }

    .nav-link:hover,
    .nav-link.active{
        color: #0d42ff !important;
    }

    .navbar-toggler{
        border: none;
        box-shadow: none;
        color: #00072D !important;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;
  border-radius: 50%;

  border: 1px solid #0d42ff;   /* ? FIXED */
  font-size: 16px;

  color: #0d42ff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background: #0d42ff;
  color: #fff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links a:hover {
  color: #0d42ff;
}

.footer .footer-links h4 {
   color: #0d42ff;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline-block;
  line-height: 1;
}



.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid color-mix(in srgb, var(--heading-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

/* n.footer .credits {
  margin-top: 4px;
  font-size: 13px;
} */

.footer .credits{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
  margin-top: 6px;
}

.credits-label{
  white-space: nowrap;
}

.footer .credits a {
  color: var(--default-color);
}

.footer .credits a[href*="aatreyatechnologies"] {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Force link + image inline */
/* .aatreya-credit {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  text-decoration: none;
} */



/* Fix logo alignment */
/*.aatreya-credit img {
  height: 40px;   /* IMPORTANT: reduce size */
  width: 40px;
  display: inline-block;
  vertical-align: middle;
} */

.aatreya-credit{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

/* FIX HUGE LOGO */
.aatreya-credit img{
  height: 40px;
  width: 40px;
  display: block;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# 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
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol a {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.page-title .breadcrumbs ol a:hover {
  color: var(--contrast-color);
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 4px;
  color: color-mix(in srgb, var(--heading-color), transparent 95%);
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 1;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 20px;
  padding: 0;
  font-size: 40px;
  font-weight: 700;
}

.hero-btn {
/*  color: var(--accent-color); */
  color: #D10000;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
}

@media (max-width: 575px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 40px;
}

.hero form {
  background: color-mix(in srgb, var(--default-color) 5%, white 90%);
  padding: 10px;
  border-radius: 10px;
}

.hero form .form-control {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  border: none;
  margin-right: 10px;
  border: none !important;
  background: none !important;
}

.hero form .form-control:hover,
.hero form .form-control:focus {
  outline: none;
  box-shadow: none;
}

.hero form .btn-primary {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  flex-shrink: 0;
  padding: 0 25px;
}

.hero form .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .stats-item {
  padding: 30px;
  width: 100%;
}

.hero .stats-item span {
  font-size: 32px;
  display: block;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
}

.hero .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.hero .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  position: relative;
  height: 100%;
  margin-bottom: 30px;
}

.featured-services .service-item .icon {
  margin-right: 20px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 40px;
  transition: 0.3s;
}

.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

.featured-services .service-item .title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 20px;
  transition: 0.3s;
}

.featured-services .service-item .description {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 10px;
}

.featured-services .service-item .readmore {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  font-weight: 700;
  font-size: 14px;
}

.featured-services .service-item .readmore i {
  margin-left: 8px;
}

.featured-services .service-item:hover .title,
.featured-services .service-item:hover .readmore,
.featured-services .service-item:hover .icon i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  display: flex;
  align-items: flex-start;
  margin-top: 40px;
}

.about .content ul i {
  flex-shrink: 0;
  font-size: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  line-height: 0;
}

.about .content ul h5 {
  font-size: 18px;
  font-weight: 700;
}

.about .content p {
  text-align: justify;
}

.about .content ul p {
  font-size: 15px;
}

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

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

.about-section .reveal-text {
  opacity: 1 !important;
  transform: none !important;
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .card {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  position: relative;
  border-radius: 0;
  height: 100%;
}

.services .card .card-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 0;
}

.services .card .card-img img {
  transition: 0.3s ease-in-out;
}

.services .card h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 5px;
  padding: 10px 30px;
  text-transform: uppercase;
}

.services .card a {
  color: var(--heading-color);
  transition: 0.3;
}

.services .card a:hover {
  color: var(--accent-color);
}

.services .card p {
  padding: 0 30px;
  margin-bottom: 30px;
  text-align: justify;
  /*color: color-mix(in srgb, var(--default-color), transparent 40%); */
  font-size: 15px;
}

.services .card:hover .card-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action img {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.call-to-action:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 20%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .features .features-item+.features-item {
    margin-top: 40px;
  }
}

.features .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

.features .features-item ul {
  list-style: none;
  padding: 0;
}

.features .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features .features-item ul li:last-child {
  padding-bottom: 0;
}

.features .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--background-color);
  padding: 60px 40px;
  height: 100%;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: var(--accent-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border: 1px solid var(--accent-color);
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  border-top-color: var(--accent-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 50%);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--default-color);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  overflow: hidden;
  transition: 0.3s;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  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-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.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: var(--heading-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-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);
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
#stats{
    background: linear-gradient(135deg, #00072D, #0d42ff);
}

#stats::before{
    content: "";
    position: absolute;
    inset: 0;
/*    background: url("../img/grid-pattern.png"); */
    opacity: 0.08;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: #fff;
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: #fff;
  /* color-mix(in srgb, var(--default-color), transparent 40%); */
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

.stats .stats-item i.stats-icon{
    font-size: 34px;
    color: #0d42ff;
    margin-bottom: 15px;
    display: block;
    transition: 0.3s ease;
}

.stats .stats-item:hover i.stats-icon{
    transform: translateY(-5px);
    color: #00072D;
}

.stats .stats-item:hover p {
    transform: translateY(-5px);
    color: #00072D;
}

/* smoother number emphasis */
.stats .stats-item span{
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.stats .stats-item:hover span{
    color: #0d42ff;
}

.stats .stats-item{
    transition: all 0.3s ease;
    border-radius: 12px;
}

.stats .stats-item:hover{
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  text-align: center;
  margin-bottom: 20px;
}

.team .member img {
  margin: -1px -1px 30px -1px;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  transition: 0.3s;
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

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

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

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Alt Pricing Section
--------------------------------------------------------------*/
.alt-pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  position: relative;
}

.alt-pricing .pricing-item h3 {
  font-weight: 700;
  margin-bottom: 0;
  font-size: 24px;
}

.alt-pricing .pricing-item h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 400;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.alt-pricing .pricing-item h4 sup {
  font-size: 28px;
}

.alt-pricing .pricing-item h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.alt-pricing .pricing-item ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-align: left;
  line-height: 20px;
}

.alt-pricing .pricing-item ul li {
  padding-top: 15px;
  display: flex;
  align-items: center;
}

.alt-pricing .pricing-item ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.alt-pricing .pricing-item ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.alt-pricing .pricing-item ul .na span {
  text-decoration: line-through;
}

.alt-pricing .buy-btn {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  font-family: var(--heading-font);
}

.alt-pricing .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.alt-pricing .featured {
  background: var(--accent-color);
}

.alt-pricing .featured h3,
.alt-pricing .featured h4,
.alt-pricing .featured h4 span,
.alt-pricing .featured ul,
.alt-pricing .featured ul .na,
.alt-pricing .featured ul i,
.alt-pricing .featured ul .na i {
  color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.alt-pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black 15%);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
#contact {
    background: linear-gradient(135deg,#f5f9ff,#eef4ff);
    padding: 120px 0;
}


.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Get A Quote Section
--------------------------------------------------------------*/
.get-a-quote .quote-bg {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.get-a-quote .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-a-quote .php-email-form {
    padding: 20px;
  }
}

.get-a-quote .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-a-quote .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.get-a-quote .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-a-quote .php-email-form input[type=text],
.get-a-quote .php-email-form input[type=email],
.get-a-quote .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 20%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.get-a-quote .php-email-form input[type=text]:focus,
.get-a-quote .php-email-form input[type=email]:focus,
.get-a-quote .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.get-a-quote .php-email-form input[type=text]::placeholder,
.get-a-quote .php-email-form input[type=email]::placeholder,
.get-a-quote .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.get-a-quote .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.get-a-quote .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*==================================
VISION & MISSION
==================================*/

.vision-mission{
    background:#f8fbff;
    position:relative;
}

.vm-card{
    background:#fff;
    padding:45px 35px;
    border-radius:15px;
    height:100%;
    text-align:left;
    box-shadow:0 5px 25px rgba(0,0,0,0.08);
    transition:all .4s ease;
    border-top:4px solid #0d6efd;
}

.vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.vm-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#084298);
    display:flex;
    align-items:center;
    justify-content:center;
}

.vm-icon i{
    color:#fff;
    font-size:38px;
}

.vm-card h3{
    color:#001f4d;
    font-weight:700;
    margin-bottom:20px;
}

.vm-card p{
    color:#5d6b82;
    line-height:1.9;
    margin-bottom:0;
}

/* ==================================
   WHY CHOOSE US SECTION
================================== */

.why-us{
    background:#f8fafc;
    padding:90px 0;
}

.why-card{
    background:#fff;
    border-radius:15px;
    padding:35px 30px;
    text-align:center;
    height:100%;
    transition:all .4s ease;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    border-bottom:4px solid transparent;
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
    border-bottom:4px solid #0d6efd;
}

.why-icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#0048b3);
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    color:#fff;
    font-size:34px;
}

.why-card h4{
    font-size:22px;
    font-weight:700;
    color:#001f4d;
    margin-bottom:15px;
}

.why-card p{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:0;
}

@media (max-width:768px){

    .why-card{
        padding:30px 20px;
    }

    .why-card h4{
        font-size:20px;
    }

}

/* =====================================
   CORE VALUES - MODERN TIMELINE STYLE
===================================== */

.core-values-v2{
    background:linear-gradient(135deg,#f5f9ff,#eef4ff);
    padding:100px 0;
    position:relative;
}

.timeline{
    position:relative;
    max-width:1000px;
    margin:0 auto;
}

/* vertical line */
.timeline::before{
    content:'';
    position:absolute;
    top:0;
    left:50%;
    width:3px;
    height:100%;
    background:#0d6efd;
    transform:translateX(-50%);
    opacity:0.3;
}

/* each item */
.timeline-item{
    position:relative;
    width:50%;
    padding:20px 40px;
    margin-bottom:40px;
}

/* left side */
.timeline-item.left{
    left:0;
    text-align:right;
}

/* right side */
.timeline-item.right{
    left:50%;
}

/* icon */
.timeline-icon{
    width:60px;
    height:60px;
    background:#0d6efd;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:20px;
    z-index:2;
    box-shadow:0 10px 25px rgba(13,110,253,0.3);
    transition:0.4s ease;
}

/* positioning icons */
.timeline-item.left .timeline-icon{
    right:-30px;
}

.timeline-item.right .timeline-icon{
    left:-30px;
}

/* hover animation */
.timeline-item:hover .timeline-icon{
    transform:scale(1.2) rotate(10deg);
    background:#001f4d;
}

/* content box */
.timeline-content{
    background:#fff;
    padding:25px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    transition:0.4s ease;
}

/* hover lift */
.timeline-item:hover .timeline-content{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* text alignment fix */
.timeline-item.left .timeline-content{
    margin-right:40px;
}

.timeline-item.right .timeline-content{
    margin-left:40px;
}

/* heading */
.timeline-content h4{
    color:#001f4d;
    font-weight:700;
    margin-bottom:10px;
}

/* paragraph */
.timeline-content p{
    color:#5b6b80;
    margin:0;
    line-height:1.7;
}

/* mobile */
@media(max-width:768px){

    .timeline::before{
        left:20px;
    }

    .timeline-item{
        width:100%;
        padding-left:60px;
        text-align:left !important;
        left:0 !important;
    }

    .timeline-icon{
        left:0 !important;
    }

    .timeline-content{
        margin:0 !important;
    }
}

/* Rover Logistics Services */

.service-card{
    border:none;
    overflow:hidden;
    transition:all .4s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.service-card .card-img{
    overflow:hidden;
}

.service-card img{
    transition:all .5s ease;
    height:260px;
    object-fit:cover;
    width:100%;
}

.service-card:hover img{
    transform:scale(1.08);
}

.service-card h3{
    padding:25px 25px 10px;
    font-size:22px;
    font-weight:700;
    color:#001f4d;
}

.service-card p{
    padding:0 25px 25px;
    color:#666;
    line-height:1.8;
}

/* ================================
   INDUSTRIES ORBIT - FINAL STABLE VERSION
   (DO NOT MODIFY TRANSFORMS BELOW)
================================ */

.industries-orbit{
    background: linear-gradient(135deg,#f5f9ff,#eef4ff);
    padding: 120px 0;
}

/* WRAPPER */
.orbit-wrapper{
  position: relative;
  width: 560px;
  height: 560px;
  margin: auto;
  overflow: visible;
}

.orbit-logo{
    width: 110px;
    margin-top: 50px;
    margin-left: 15px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.25));
}

.orbit-center::after{
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    animation: pulseRing 3s infinite ease-in-out;
}

@keyframes pulseRing{
    0% { transform: scale(0.95); opacity: 0.6; }
    50% { transform: scale(1.05); opacity: 0.2; }
    100% { transform: scale(0.95); opacity: 0.6; }
}

/* ================================
   CENTER CIRCLE
================================ */

.orbit-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 170px;
    height: 170px;
    border-radius: 50%;

/*    background: linear-gradient(135deg,#0d6efd,#001f4d); */
    background: #fff;

    color: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    z-index: 10;

    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ================================
   ORBIT ITEMS (DO NOT CHANGE POSITIONS)
================================ */

.orbit-item{
    position: absolute;
    top: 50%;
    left: 50%;

    width: 92px;
    height: 92px;
    border-radius: 50%;

    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    cursor: pointer;

    z-index: 5;

    transition: background 0.25s ease, box-shadow 0.25s ease;
}

:root{
  --orbit-radius: 210px;
}


/* ================================
   YOUR EXISTING ORBIT POSITIONS
   (UNCHANGED - CRITICAL FOR ALIGNMENT)
================================ */
.orbit-item[data-i="0"]  { transform: translate(-50%, -50%) rotate(0deg)   translate(var(--orbit-radius)) rotate(0deg); }
.orbit-item[data-i="1"]  { transform: translate(-50%, -50%) rotate(30deg)  translate(var(--orbit-radius)) rotate(-30deg); }
.orbit-item[data-i="2"]  { transform: translate(-50%, -50%) rotate(60deg)  translate(var(--orbit-radius)) rotate(-60deg); }
.orbit-item[data-i="3"]  { transform: translate(-50%, -50%) rotate(90deg)  translate(var(--orbit-radius)) rotate(-90deg); }
.orbit-item[data-i="4"]  { transform: translate(-50%, -50%) rotate(120deg) translate(var(--orbit-radius)) rotate(-120deg); }
.orbit-item[data-i="5"]  { transform: translate(-50%, -50%) rotate(150deg) translate(var(--orbit-radius)) rotate(-150deg); }
.orbit-item[data-i="6"]  { transform: translate(-50%, -50%) rotate(180deg) translate(var(--orbit-radius)) rotate(-180deg); }
.orbit-item[data-i="7"]  { transform: translate(-50%, -50%) rotate(210deg) translate(var(--orbit-radius)) rotate(-210deg); }
.orbit-item[data-i="8"]  { transform: translate(-50%, -50%) rotate(240deg) translate(var(--orbit-radius)) rotate(-240deg); }
.orbit-item[data-i="9"]  { transform: translate(-50%, -50%) rotate(270deg) translate(var(--orbit-radius)) rotate(-270deg); }
.orbit-item[data-i="10"] { transform: translate(-50%, -50%) rotate(300deg) translate(var(--orbit-radius)) rotate(-300deg); }
.orbit-item[data-i="11"] { transform: translate(-50%, -50%) rotate(330deg) translate(var(--orbit-radius)) rotate(-330deg); }

/* ================================
   ICON + TEXT
================================ */

.orbit-item i{
    font-size: 20px;
    color: #0d6efd;
}

.orbit-item span{
    font-size: 11px;
    font-weight: 600;
    margin-top: 3px;
}

.orbit-wrapper{
  position: relative;
  isolation: isolate;
  overflow: visible; /* IMPORTANT */
}

.orbit-item{
  overflow: visible !important;
  position: absolute;
}

/* ================================
   CLEAN TOOLTIP (NO MOVEMENT)
================================ */

.hover-box{
  position: fixed;   /* ESCAPE all parent stacking */
  left: 0;
  top: 0;

  transform: translate(-50%, -120%);

  width: 220px;
  padding: 10px 12px;

  background: rgba(0, 31, 77, 0.95);
  color: #fff;

  font-size: 11px;
  border-radius: 8px;

  opacity: 0;
  visibility: hidden;

  z-index: 999999;
  pointer-events: none;

  transition: opacity .2s ease;
}

.orbit-item:hover .hover-box{
  opacity: 1;
  visibility: visible;
}

/* SHOW ON HOVER (NO ANIMATION, NO SHIFT) */
.orbit-item:hover .hover-box{
    opacity: 1;
    visibility: visible;
}

/* OPTIONAL HOVER STYLE ONLY (NO TRANSFORM) */
.orbit-item:hover{
    background: #0d6efd;
}

.orbit-item:hover i,
.orbit-item:hover span{
    color: #fff;
}



/* ================================
   RESPONSIVE
================================ */

@media (max-width: 768px){

    .orbit-wrapper{
        width: 360px;
        height: 360px;
    }

    .orbit-item{
        width: 72px;
        height: 72px;
    }

    .orbit-item span{
        font-size: 10px;
    }

    :root{
    --orbit-radius: 155px;
     }
     
     .orbit-item{
       overflow: visible;
      }
      
      .orbit-wrapper{
        isolation: isolate;
       }

    /* PERFECT 12-NODE SYMMETRIC ORBIT */
    .orbit-item[data-i="0"]  { transform: translate(-50%, -50%) rotate(0deg)   translate(var(--orbit-radius)) rotate(0deg); }
    .orbit-item[data-i="1"]  { transform: translate(-50%, -50%) rotate(30deg)  translate(var(--orbit-radius)) rotate(-30deg); }
    .orbit-item[data-i="2"]  { transform: translate(-50%, -50%) rotate(60deg)  translate(var(--orbit-radius)) rotate(-60deg); }
    .orbit-item[data-i="3"]  { transform: translate(-50%, -50%) rotate(90deg)  translate(var(--orbit-radius)) rotate(-90deg); }
    .orbit-item[data-i="4"]  { transform: translate(-50%, -50%) rotate(120deg) translate(var(--orbit-radius)) rotate(-120deg); }
    .orbit-item[data-i="5"]  { transform: translate(-50%, -50%) rotate(150deg) translate(var(--orbit-radius)) rotate(-150deg); }
    .orbit-item[data-i="6"]  { transform: translate(-50%, -50%) rotate(180deg) translate(var(--orbit-radius)) rotate(-180deg); }
    .orbit-item[data-i="7"]  { transform: translate(-50%, -50%) rotate(210deg) translate(var(--orbit-radius)) rotate(-210deg); }
    .orbit-item[data-i="8"]  { transform: translate(-50%, -50%) rotate(240deg) translate(var(--orbit-radius)) rotate(-240deg); }
    .orbit-item[data-i="9"]  { transform: translate(-50%, -50%) rotate(270deg) translate(var(--orbit-radius)) rotate(-270deg); }
    .orbit-item[data-i="10"] { transform: translate(-50%, -50%) rotate(300deg) translate(var(--orbit-radius)) rotate(-300deg); }
    .orbit-item[data-i="11"] { transform: translate(-50%, -50%) rotate(330deg) translate(var(--orbit-radius)) rotate(-330deg); }
    
    .orbit-lines{
    z-index: 1 !important;
}

.orbit-item{
    z-index: 5 !important;
}

.orbit-center{
    z-index: 10 !important;
}

.hover-box{
    z-index: 999999 !important;
}
}


.orbit-center{
    position:relative;
}

.orbit-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.orbit-lines line{
  stroke:#0d6efd;
  stroke-width:2;
  opacity:0;
  transition:0.3s ease;
}

.orbit-center:hover{
  cursor:pointer;
}

.orbit-item{
  z-index: 10;
}

.hover-box{
  z-index: 99999;
}

.orbit-wrapper{
  overflow: visible;
}




.call-to-action{
    position: relative;
    padding: 120px 0;
    color: #fff;
    text-align: center;
}

.call-to-action img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.call-to-action::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,31,77,0.85), rgba(13,110,253,0.75));
    z-index: 2;
}

.cta-content{
    position: relative;
    z-index: 3;
}

.call-to-action h3{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.call-to-action p{
    font-size: 16px;
    opacity: 0.9;
    max-width: 850px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-highlights{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.cta-item{
    background: rgba(255,255,255,0.12);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
}

.cta-btn{
    display: inline-block;
    padding: 12px 28px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover{
    background: #0b5ed7;
    transform: translateY(-2px);
}



.hero-section{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.heroSwiper{
    height:100vh;
    width:100%;
}

/* IMPORTANT: let Swiper control fade */
.heroSwiper .swiper-slide{
    height:100vh;
    background-size:cover;
    background-position:center;
    position:relative;
}

/* DARK OVERLAY (SAFE LAYERING) */
.heroSwiper .swiper-slide::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    z-index:1;
    pointer-events:none;
}

/* HERO MAIN CONTENT */
.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:5;
    text-align:center;
    color:#fff;
    width:90%;
}

/* -------------------------------
   SLIDE CAPTIONS (CLEAN SYSTEM)
--------------------------------*/
.slide-caption{
    position:absolute;
    z-index:3;
    color:#fff;
    max-width:600px;

    opacity:0;
    transform:translateY(30px);
    transition:all 0.9s ease;
}

/* Active slide caption only */
.swiper-slide-active .slide-caption{
    opacity:1;
    transform:translateY(0);
}

/* POSITION VARIANTS */
.slide-caption.left{
    top:50%;
    left:10%;
    transform:translateY(-50%);
}

.slide-caption.right{
    top:50%;
    right:10%;
    text-align:right;
    transform:translateY(-50%);
}

.slide-caption.top{
    top:25%;
    left:50%;
    transform:translateX(-50%);
    text-align:center;
}

/* TEXT STYLE */
.slide-caption h1{
    color: #fff;
    font-size:3.5rem;
    font-weight:800;
    margin-bottom:15px;
}

.slide-caption p{
    font-size:1.2rem;
    opacity:0.9;
}

/* -------------------------------
   SWIPER CONTROLS
--------------------------------*/
.swiper-button-prev,
.swiper-button-next{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.25);
    transition:.4s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover{
    background:var(--secondary);
    transform:scale(1.12);
    box-shadow:0 0 20px rgba(245,130,32,0.6);
}

.swiper-button-prev:after,
.swiper-button-next:after{
    font-size:18px;
    color:#fff;
    font-weight:bold;
}

.swiper-button-prev{ left:25px; }
.swiper-button-next{ right:25px; }

/* -------------------------------
   PAGINATION
--------------------------------*/
.swiper-pagination-bullet{
    background:rgba(255,255,255,0.5);
    opacity:1;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    background:var(--secondary);
    width:18px;
    border-radius:10px;
}

#navbar{
    transition: all 0.35s ease;
    padding: 20px 0;
}

.brand-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
    color: #fff;
    font-size: 20px;
    font-weight: bold;

}

.navbar-brand {
    margin-top: -20px;
    padding-top: var(--bs-navbar-brand-padding-y);
    padding-bottom: var(--bs-navbar-brand-padding-y);
    margin-right: var(--bs-navbar-brand-margin-end);
    font-size: var(--bs-navbar-brand-font-size);
    color: var(--bs-navbar-brand-color);
    text-decoration: none;
    white-space: nowrap;
}

/*.navbar-brand .brand-text{
    color: #fff;
    margin-left: -20px;
    margin-top:-30px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    transition: 0.3s ease;
} */


/* TEXT COLOR ON SCROLL */
#navbar.navbar-scrolled .navbar-brand h4,
#navbar.navbar-scrolled .navbar-brand .brand-text{
    color: #00072D;
    font-size: 20px;
}

/* NAV LINKS */
/*.nav-link{
    color: #fff !important;
    font-weight: 600;
    margin-top:-50px;
    margin-left: 18px;
    padding: 6px 10px;
    transition: all 0.3s ease;
} */

/* SCROLLED NAV LINKS */
#navbar.navbar-scrolled .nav-link{
    color: #222 !important;
}

#navbar.navbar-scrolled {
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .12);
    padding: 4px 0;   /* reduces height */
}

#navbar.navbar-scrolled .navbar-brand img{
    height: 75px;
    width: auto;
}


/* optional: shrink brand text slightly */
#navbar .brand-text{
    transition: all 0.35s ease;
}

#navbar.navbar-scrolled .brand-text{
    font-size: 14px;
}

/* HOVER EFFECT */
/*.nav-link:hover,
.nav-link.active{
    color: var(--secondary) !important;
} */

/* ALIGN MENU ITEMS */
.navbar-nav{
    display: flex;
    align-items: center;
}

/* MOBILE TOGGLER CLEANUP */
.navbar-toggler{
    border: none;
    outline: none;
    box-shadow: none;
}

/* ================= FIX NAVBAR ALIGNMENT ================= */

#navbar .container{
    min-height: 80px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* when scrolled, keep alignment stable */
#navbar.navbar-scrolled .container{
    min-height: 60px;
}

/* ================= MOBILE NAV FIX ================= */

@media (max-width: 1199px) {

    /* FORCE WHITE MOBILE MENU BACKGROUND */
    .navbar-collapse{
        background: #ffffff !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 99999;
        padding: 15px 20px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    /* NAV LINKS COLOR */
    .navbar-collapse .nav-link{
        color: #00072D !important;
        padding: 12px 0;
        font-weight: 600;
    }

    .navbar-collapse .nav-link:hover{
        color: #0d42ff !important;
    }

    /* REMOVE OVERLAP ISSUES */
    .navbar-nav{
        gap: 10px;
    }

    /* HAMBURGER */
    .mobile-nav-toggle,
    .navbar-toggler{
        color: #0d42ff !important;
        border: none;
        outline: none;
        box-shadow: none;
    }
}

/& ABOUT US NEW SECTION */

/* ================= ABOUT SECTION ================= */

.about-section{
    padding: 90px 0;
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

/* SECTION TITLE */
.section-title{
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2{
    font-size: 36px;
    font-weight: 700;
    color: #00072D;
}

.section-title p{
    color: #555;
    margin-top: 10px;
}

/* GRID LAYOUT */
.about-grid{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

/* LEFT CONTENT */
.about-content h3{
    font-size: 28px;
    color: #00072D;
    margin-bottom: 15px;
}

.about-content p{
    color: #444;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: justify;
}

.about-content ul{
    margin: 20px 0;
    padding-left: 18px;
}

.about-content ul li{
    margin-bottom: 10px;
    color: #222;
}

/* BUTTON */
.btn-primary{
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #0d42ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-primary:hover{
    background: #00072D;
    transform: translateY(-3px);
}

/* STATS BOX */
.about-stats{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box{
    background: #00072D;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.stat-box:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.stat-box h2{
    font-size: 28px;
    color: #0D42FF;
    margin-bottom: 5px;
}

.stat-box p{
    color: #fff;
}

/* ================= ANIMATIONS ================= */

.reveal{
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.reveal-left{
    opacity: 0;
    transform: translateX(-60px);
    animation: slideLeft 1s ease forwards;
}

.reveal-right{
    opacity: 0;
    transform: translateX(60px);
    animation: slideRight 1s ease forwards;
}

@keyframes fadeUp{
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px){
    .about-grid{
        grid-template-columns: 1fr;
    }

    .about-stats{
        grid-template-columns: 1fr 1fr;
    }
}

/* ================= SCROLL TEXT ANIMATION ================= */

.reveal-text{
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-text.active{
    opacity: 1;
    transform: translateY(0);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-text {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-text.active {
  opacity: 1;
  transform: translateY(0);
}
/* ================= PARALLAX (CRISP VERSION) ================= */

.logistics-parallax{
    position: relative;
    height: 120vh;
    background-image: url("../img/slider/ocean_freight2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    /* REMOVE fixed (this causes blur in many browsers) */
    background-attachment: scroll;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* REMOVE DARK OVERLAY COMPLETELY */
.logistics-parallax::before{
    display: none;
}

/* content box */
.parallax-content{
    position: relative;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: #ffffff;
}

/* heading */
.parallax-content h2{
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* paragraph */
.parallax-content p{
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    line-height: 1.7;
    opacity: 1;
}

/* smooth animation (optional only) */
.parallax-content h2,
.parallax-content p{
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px){
    .parallax-content h4{
        font-size: 24px;
    }

    .parallax-content p{
        font-size: 14px;
    }
}


/* =========================
   GLOBAL SERVICES SECTION
========================= */

.global-services-section{
  padding:100px 0;
  background:#f7f9fc;
}

.services-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;
}

.service-card{
  flex:0 0 calc(33.333% - 25px);
}



/* Tablet */
@media (max-width: 992px){
  .services-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

/* Mobile */
/*@media (max-width: 576px){
  .services-grid{
    grid-template-columns:1fr;
  }
} */

@media (max-width: 992px){
  .service-card{
    flex:0 0 calc(50% - 25px);
  }
}

@media (max-width: 576px){
  .service-card{
    flex:0 0 100%;
  }
}
/* CARD */
.service-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  transition:all .4s ease;
  position:relative;
}

/* IMAGE */
.service-card img{
  width:100%;
  height:190px;
  object-fit:cover;
}

/* ICON */
.service-icon{
  position:absolute;
  top:15px;
  left:15px;
  background:#0d42ff;
  width:40px;
  height:40px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  z-index:2;
}

/* TEXT */
.service-card h3{
  font-size:17px;
  font-weight:700;
  margin:15px;
  color:#0b1b3a;
}

.service-card p{
  font-size:14px;
  color:#555;
  margin:0 15px 20px;
  line-height:1.5;
}

/* HOVER EFFECT */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

/* IMAGE ZOOM ON HOVER */
.service-card:hover img{
  transform:scale(1.05);
  transition:0.4s ease;
}

/*.services-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:25px;
} */

/* =========================
   ANIMATION (fade up)
========================= */

.reveal-up{
  opacity:1;
  transform:none;
}

.reveal-up.active{
  opacity:1;
  transform:translateY(0);
}


