:root {
  --bs-primary: #4ab5a3;
  --bs-secondary: #234d5b;
  --bs-dark: #234d5b;
}

body {
  font-family: "Poppins", sans-serif;
}

p {
  font-size: 18px;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 1.5rem;
}

/* Center align introductory paragraphs in section headers */
.text-center p,
.mx-auto p {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: "League Spartan", sans-serif;
  color: var(--bs-secondary);
}

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition:
    opacity 0.5s ease-out,
    visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  transition: 0.5s;
  z-index: 99;
}

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-xl-square {
  width: 66px;
  height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.btn-primary {
  color: var(--bs-white);
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
  border-radius: 0;
}

.btn.btn-primary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

.btn.btn-secondary {
  color: var(--bs-white);
  background: var(--bs-secondary);
  border: 1px solid var(--bs-secondary);
  border-radius: 0;
}

.btn.btn-secondary:hover {
  background: var(--bs-primary);
  border: 1px solid var(--bs-primary);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 35px 0;
  color: var(--bs-white);
  font-size: 17px;
  font-weight: 400;
  outline: none;
  transition: 0.5s;
  /* Subtle drop-shadow so text is readable on hero images */
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.35);
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--bs-dark);
  text-shadow: none;
}

/* Hover — drop-shadow replaced with neon teal glow */
.navbar-light .navbar-nav .nav-link:hover {
  color: #1a7a6e;
  text-shadow:
    0 0 6px rgba(74, 181, 163, 0.9),
    0 0 16px rgba(74, 181, 163, 0.6),
    0 0 30px rgba(74, 181, 163, 0.3);
}

/* Active menu — dark teal, clean (no glow, no shadow) */
.navbar-light .navbar-nav .nav-link.active {
  color: #1a7a6e;
  text-shadow: none;
  background: transparent;
}

/* Active on sticky navbar */
.sticky-top.navbar-light .navbar-nav .nav-link.active {
  color: #1a7a6e;
  text-shadow: none;
}

.sticky-top.navbar-light .navbar-nav .nav-link.active::before {
  display: none;
}

.navbar-light .navbar-brand img {
  max-height: 80px;
  transition: 0.5s;
  /* logo image stays at original colour */
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

/* Darken only the logo text ("Asixa Marine") on the hero navbar */
.navbar-light .navbar-brand h3 {
  color: #1a7a6e !important;
  /* deeper teal — darker version of --bs-primary */
  transition: color 0.5s;
}

/* Restore default brand text colour on sticky navbar */
.sticky-top.navbar-light .navbar-brand h3 {
  color: var(--bs-primary) !important;
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  vertical-align: middle;
  margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light);
  transition: 0.5s;
  opacity: 1;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--bs-white);
  }

  .navbar.navbar-expand-lg .navbar-toggler {
    padding: 10px 20px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-primary);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--bs-dark);
    text-shadow: none;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    border-radius: 10px;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border: none;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: var(--bs-light);
    border: none;
  }

  /* Active indicator bar — sits at the TOP of the nav item */
  .navbar-light .navbar-nav .nav-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    top: 0;
    left: 50%;
    background: var(--bs-primary);
    transition: 0.5s;
  }

  .sticky-top.navbar-light .navbar-nav .nav-item::before {
    top: 0;
  }

  /* Downward-pointing arrow — hangs from the TOP bar */
  .navbar-light .navbar-nav .nav-item::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--bs-primary) transparent transparent transparent;
    opacity: 0;
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-item:hover::after,
  .navbar-light .navbar-nav .nav-item.active::after {
    top: 1px;
    opacity: 1;
  }

  .navbar-light .navbar-nav .nav-item:hover::before,
  .navbar-light .navbar-nav .nav-item.active::before {
    width: calc(100% - 2px);
    left: 1px;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
  position: relative;
  overflow: hidden;
}

.carousel-indicators {
  display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.7;
  z-index: 2;
  transition: opacity 0.3s ease;
}

.carousel .carousel-control-prev:hover,
.carousel .carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev {
  left: 15px;
  right: auto;
}

.carousel-control-next {
  right: 15px;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

/* Responsive sizing for smaller screens */
@media (max-width: 768px) {

  .carousel .carousel-control-prev,
  .carousel .carousel-control-next {
    width: 30px;
    height: 30px;
    opacity: 0.6;
  }

  .carousel .carousel-control-prev .carousel-control-prev-icon,
  .carousel .carousel-control-next .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }

  .carousel-control-prev {
    left: 10px;
  }

  .carousel-control-next {
    right: 10px;
  }
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
  border-radius: 50%;
}

.carousel .carousel-control-next .carousel-control-next-icon {
  border-radius: 50%;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
  background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
  position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center align */
  /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)); */
  background-size: cover;
}

.carousel-caption-content {
  text-align: center;
  padding: 0 20px;
  /* Center padding */
}

.carousel-caption-content .carousel-caption-content-btn {
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .carousel .carousel-inner .carousel-item {
    height: 500px;
    margin-top: -100px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 500px;
    object-fit: cover;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption {
    max-width: 100% !important;
    justify-content: center;
    padding-top: 60px;
  }

  .carousel-caption-content {
    padding: 0 20px !important;
    text-align: center !important;
  }

  .carousel-caption-content h4 {
    font-size: 1rem !important;
    letter-spacing: 2px !important;
    margin-bottom: 1rem !important;
  }

  .carousel-caption-content h1 {
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
  }

  .carousel-caption-content p {
    font-size: 1rem !important;
    margin-bottom: 1.5rem !important;
  }

  .carousel-caption-content .btn {
    padding: 0.75rem 2rem !important;
    font-size: 0.9rem !important;
  }

  .carousel-caption-content .carousel-caption-content-btn {
    justify-content: center;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: flex !important;
  }
}

/* Mobile landscape and smaller tablets */
@media (max-width: 768px) {
  .carousel .carousel-inner .carousel-item {
    height: 500px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 650px;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption {
    padding-top: 80px;
  }

  .carousel-caption-content {
    padding: 0 15px !important;
  }

  .carousel-caption-content h4 {
    font-size: 0.95rem !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 0.75rem !important;
  }

  .carousel-caption-content h1 {
    font-size: 2rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.2 !important;
  }

  .carousel-caption-content p {
    font-size: 0.95rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.4 !important;
  }

  .carousel-caption-content .btn {
    padding: 0.65rem 1.75rem !important;
    font-size: 0.9rem !important;
  }
}

/* Mobile portrait */
@media (max-width: 576px) {
  .carousel .carousel-inner .carousel-item {
    height: 450px;
  }

  .carousel .carousel-inner .carousel-item img {
    height: 650px;
  }

  .carousel .carousel-inner .carousel-item .carousel-caption {
    padding-top: 70px;
  }

  .carousel-caption-content {
    padding: 0 40px !important;
    max-width: 100% !important;
  }

  .carousel-caption-content h4 {
    font-size: 0.9rem !important;
    letter-spacing: 1px !important;
    margin-bottom: 0.5rem !important;
  }

  .carousel-caption-content h1 {
    font-size: 1.85rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.2 !important;
  }

  .carousel-caption-content p {
    font-size: 0.9rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.3 !important;
  }

  .carousel-caption-content .btn {
    padding: 0.6rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
}

.modal .modal-header {
  height: 100px;
}

#searchModal .modal-content {
  background: rgba(255, 255, 255, 0.6);
}

/* Custom Fade In Up Animation for Carousel */
@keyframes fadeInUpCustom {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.carousel-caption h4 {
  animation: fadeInUpCustom 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}

.carousel-caption h1 {
  animation: fadeInUpCustom 1s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
  animation: fadeInUpCustom 1s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
  text-align: center !important;
  margin-bottom: 1.5rem;
}

/* Reset animation when carousel item becomes active */
.carousel-item.active .carousel-caption h4,
.carousel-item.active .carousel-caption h1,
.carousel-item.active .carousel-caption p {
  animation: fadeInUpCustom 0.8s ease-out forwards;
}

.carousel-item.active .carousel-caption h4 {
  animation-delay: 0.3s;
}

.carousel-item.active .carousel-caption h1 {
  animation-delay: 0.6s;
}

.carousel-item.active .carousel-caption p {
  animation-delay: 1s;
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)),
    url(../img/breadcrumb.jpg);
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding: 120px 0 60px 0;
  transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
  position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
  color: var(--bs-white);
}

@media (max-width: 992px) {
  .bg-breadcrumb {
    padding: 60px 0 60px 0;
  }
}

/*** Single Page Hero Header End ***/

/* Asixa image animation start*/
.asixa-img {
  animation: floatImg 4s ease-in-out infinite;
}

@keyframes floatImg {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Asixa image animation */

/*** Features Start ***/
.feature .feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bs-white);
  border-radius: 10px;
  transition: 0.5s;
}

.feature .feature-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.feature .feature-item .feature-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
  transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
  transform: rotate(360deg);
}

.feature .feature-item p {
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.feature .feature-item a.btn {
  transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
  color: var(--bs-primary) !important;
}

/*** Features End ***/

/*** About Start ***/
.about .about-img {
  position: relative;
  padding-bottom: 30px;
  margin-top: 30px;
  margin-left: 30px;
  background-color: #234d5b20;
}

.about .about-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  top: -30px;
  right: 0;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 100%;
  left: -30px;
  bottom: 30px;
  border-radius: 10px;
  background: var(--bs-secondary);
}

.about .about-img .about-exp {
  position: absolute;
  top: 0;
  left: 0;
  padding: 25px;
  font-size: 30px;
  font-weight: bold;
  background: var(--bs-secondary);
  color: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  margin-top: -30px;
  margin-left: -30px;
  border-radius: 10px;
}

/*** About End ***/

/*** Service Start ***/
.service-item {
  position: relative;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.service-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  bottom: 0;
  border-radius: 10px;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 1;
}

.service-item:hover::after {
  width: 100%;
  height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
  position: relative;
  z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
  transition: 0.5s;
}

.service-item:hover .service-content a:hover {
  color: var(--bs-secondary);
}

.service-item:hover .service-content p {
  color: var(--bs-white);
}

.service-item .service-btn {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bs-primary);
  transition: 0.5s;
}

.service-item .service-btn i {
  transition: 0.5s;
}

.service-item:hover .service-btn {
  background: var(--bs-white);
}

.service-item:hover .service-btn i {
  transform: rotate(360deg);
  color: var(--bs-primary) !important;
}

/*** Service End ***/

/*** Counter Start ***/
.counter {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgb(35, 77, 91, 0.8), rgba(35, 77, 91, 0.9)),
    url(../img/coral-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

.counter .counter-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.counter .counter-item .counter-item-icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: var(--bs-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/*** Counter End ***/

/*** Products Start ***/
.product .product-item {
  background: #ffffff;
  border: 1px solid rgba(196, 211, 211, 0.9);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product .product-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
  border-radius: 10px;
  background: var(--bs-light);
  transition: 0.5s;
}

.blog .blog-item:hover {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.5s;
  z-index: 1;
}

.blog .blog-item .blog-img img {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
  transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
  background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
  position: absolute;
  top: 25px;
  left: 25px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--bs-white);
  z-index: 2;
}

.blog .blog-item .blog-content a {
  transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
  color: var(--bs-primary) !important;
}

/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
  position: relative;
  overflow: hidden;
  background: var(--bs-white);
  border: 1px solid var(--bs-secondary);
  border-radius: 10px;
}

.team .team-item .team-inner {
  transition: 0.5s;
}

.team .team-item:hover .team-inner {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
  position: relative;
  z-index: 2;
}

.team .team-item .team-inner .team-img::after {
  content: "";
  width: 100%;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background: rgba(0, 209, 249, 0.2);
  transition: 0.5s;
  z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
  height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
  position: absolute;
  left: 10px;
  bottom: 10px;
  transition: 0.5s;
  z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
  opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
  position: absolute;
  bottom: 0;
  left: -100%;
  border-bottom-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  display: inline-flex;
  background: var(--bs-primary);
  transition: 0.5s;
  z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon {
  left: -25px;
}

/*** Team End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  background: var(--bs-primary);
  color: var(--bs-white);
  padding: 5px 30px;
  border-radius: 30px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
  display: flex;
  justify-content: center;
  margin-left: 20px;
  margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  margin-right: 15px;
  border: 1px solid var(--bs-secondary);
  background: var(--bs-primary);
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
  width: 20px;
  height: 20px;
  border-radius: 20px;
  border: 1px solid var(--bs-primary);
  background: var(--bs-secondary) !important;
  transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
  position: relative;
  margin-top: 50%;
  margin-left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bs-white);
}

@media (max-width: 992px) {
  .owl-carousel.testimonial-carousel {
    padding-top: 30px;
  }

  .testimonial .owl-nav .owl-prev,
  .testimonial .owl-nav .owl-next {
    top: -30px;
  }
}

/*** testimonial End ***/

/*** Footer Start ***/
.footer {
  background: var(--bs-secondary);
  color: white;
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.footer .footer-item a {
  line-height: 35px;
  color: white;
  transition: 0.5s;
}

.footer .footer-item p {
  line-height: 35px;
}

.footer .footer-item a:hover {
  letter-spacing: 1px;
  color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
  transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
  background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
  color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bs-dark);
}

/*** copyright end ***/

/* timeline start */
.process-section {
  padding: 150px 5% 200px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  color: var(--bs-primary);
}

.section-subtitle {
  margin: 10px 0 50px;
  color: #555;
}

.process-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  align-items: center;
  position: relative;
}

/* CARD */
.process-card {
  position: relative;
  background: #fff;
  width: 320px;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(74, 181, 163, 0.2);
  transition:
    transform 0.5s ease,
    box-shadow 0.5s ease;
  will-change: transform;
  z-index: 2;

  /* hidden initially */
  opacity: 0;
  transform: translateY(40px);
}

/* ACTIVE CARD */
.process-step.card-active .process-card {
  opacity: 1;
  transform: translateY(0);
}

/* HOVER */
.process-card:hover {
  transform: scale(1.25x) translateY(-10px);
  box-shadow: 0 15px 30px rgba(74, 181, 163, 0.35);
  z-index: 5;
}

.process-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f2f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon i {
  font-size: 30px;
  color: var(--bs-primary);
  transition: transform 0.6s ease;
}

/* subtle hover pop */
.process-card:hover .process-icon i {
  transform: rotate(360deg);
}

/* CONNECTOR LINE */
.process-line {
  width: 120px;
  height: 4px;
  margin: 0 -1px;
  background: var(--bs-primary);
  /* border-radius:10px; */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

/* ACTIVE LINE */
.process-step.line-active .process-line {
  transform: scaleX(1);
}

/* MOBILE */
@media (max-width: 991px) {
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .process-step {
    flex-direction: column;
    position: relative;
  }

  .process-line {
    width: 4px;
    height: 120px;
    margin: -1px 0px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.7s ease-in-out;
  }

  .process-step.line-active .process-line {
    transform: scaleY(1);
  }
}

/* timeline end */

/* WHY SEACALCI */
.why-seacalci {
  padding-bottom: 100px !important;
  /* background-color: #00dec030 !important
    margin-bottom: 100px; */
}

.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.why-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--bs-primary);
}

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  background: var(--bs-light);
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: var(--bs-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.08) rotate(360deg);
}

.why-icon i {
  font-size: 28px;
  color: #ffffff;
}

.why-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bs-primary);
}

.why-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-secondary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.application-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  background: #ffffff;
  transition: background 0.5s ease;
}

.application-item:hover {
  background: var(--bs-primary);
}

.application-item img {
  width: 100%;
  transition: 0.5s;
}

.application-item:hover img {
  transform: scale(1.1);
}

.application-item .application-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 20px;
  transition: 0.5s;
  z-index: 2;
}

.application-item:hover .application-content {
  background: var(--bs-primary);
  bottom: 20px;
  left: 20px;
  right: 20px;
  width: auto;
  border-radius: 10px;
  margin: 0 20px 20px 20px;
  /* fallback layout if absolute positioning needs adjustment, but utilizing the image margin logic */
  width: calc(100% - 40px);
  margin: 0;
  bottom: 20px;
  left: 20px;
}

.application-item .application-content h5 {
  color: var(--bs-secondary) !important;
  /* Force dark blue text initially */
  margin: 0;
  transition: 0.5s;
}

.application-item:hover .application-content h5 {
  color: var(--bs-white) !important;
}

/* Application Carousel Navigation Arrows */
.application-carousel .owl-nav {
  position: relative;
  margin-top: 20px;
}

.application-carousel .owl-nav .owl-prev,
.application-carousel .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
  z-index: 10;
  margin-top: -150px;
}

.application-carousel .owl-nav .owl-prev {
  left: -25px;
}

.application-carousel .owl-nav .owl-next {
  right: -25px;
}

.application-carousel .owl-nav .owl-prev:hover,
.application-carousel .owl-nav .owl-next:hover {
  background: var(--bs-primary) !important;
  transform: translateY(-50%) scale(1.1);
}

/* Responsive adjustments for application carousel arrows */
@media (max-width: 768px) {

  .application-carousel .owl-nav .owl-prev,
  .application-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .application-carousel .owl-nav .owl-prev {
    left: -15px;
  }

  .application-carousel .owl-nav .owl-next {
    right: -15px;
  }
}

/*** Application End ***/

.text-secondary {
  color: var(--bs-primary) !important;
}

.bg-medium {
  background-color: #00dec040 !important;
}

.bg-about {
  background-color: #93ffe955 !important;
}

.bg-med {
  background-color: #00e0ca40;
}


