/********** Template CSS **********/
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#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;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.quote-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .quote-buttons {
    flex-direction: column;
    gap: 18px;
  }
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

.logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-text {
  display: inline-block !important;
  color: #06a3da !important;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  margin-left: 8px;
}

.site-logo {
  width: 45px;
  height: 45px;
}

@media (max-width: 991px) {
  .navbar-brand {
    max-width: calc(100% - 60px);
  }

  .logo-text {
    display: inline-block !important;
    font-size: 16px;
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 13px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}
.owl-carousel .owl-item {
  display: block;
  float: left;
}
.service-carousel {
  display: block;
  width: 100%;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/* Container for the effect */
/* Container for the effect */
.service-slide {
  position: relative;
  height: 400px;
  overflow: hidden;
}

/* Ensure the image fills the slide */
.service-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content overlay hidden by default and positioned absolutely */
.service-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 30, 62, 0.8); /* Dark background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0; /* Hidden by default */
  transition: 0.5s ease;
  text-align: center;
}

/* Title that sits at the bottom by default */
.service-title {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white;
  transition: 0.3s;
  z-index: 1;
}

/* On hover, fade in content and hide the initial title */
.service-slide:hover .service-content {
  opacity: 1;
}

.service-slide:hover .service-title {
  opacity: 0;
}

/* Hide Title on hover so description is visible */
.service-slide:hover .service-title {
  opacity: 0;
}

.service-title {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-item {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 420px;
}

.testimonial-item .pt-4 {
  flex: 1;
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}
/*** Testimonial Section Mobile Overflow Fix ***/
.testimonial-carousel,
.testimonial-item,
.testimonial-carousel .owl-stage-outer,
.testimonial-carousel .owl-item {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* Ensure individual testimonial cards fit inside mobile screens */
@media (max-width: 768px) {
  .testimonial-item {
    min-height: 520px;
    height: auto;
  }

  .testimonial-item .pt-4 {
    padding: 25px !important;
    font-size: 15px;
    line-height: 1.8;
  }

  .testimonial-item .border-bottom {
    padding: 25px !important;
  }
}

.testimonial-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.testimonial-carousel .owl-item {
  display: flex;
  height: auto;
}

.testimonial-item {
  width: 100%;
}
/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  right: 35px;
  bottom: 35px;
  display: none;
  z-index: 9999;
  background: transparent;
}

.button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #06a3da;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  overflow: hidden;
  position: relative;

  transition: 0.35s;

  box-shadow: 0px 0px 0px 4px rgba(6, 163, 218, 0.25);
}

.svgIcon {
  width: 13px;
  transition: 0.35s;
}

.svgIcon path {
  fill: #fff;
}

.button:hover {
  width: 150px;
  border-radius: 40px;

  background: #091e3e;
}

.button:hover .svgIcon {
  transform: translateY(-180%);
}

.button::before {
  content: "Back To Top";

  position: absolute;

  color: #fff;

  font-size: 0;

  transition: 0.35s;
}

.button:hover::before {
  font-size: 13px;
}

/* .bg-header { */
/* background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat; */
/* background-size: cover; */
/* } */

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

/* Intro Video */

#intro-video {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  transition: opacity 0.5s ease;
}

#intro-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#intro-video.hide {
  opacity: 0;
  pointer-events: none;
}

/* ================= HERO IMAGE + VIDEO ================= */

#header-carousel .carousel-item {
  height: 100vh;
}

#header-carousel .carousel-item img,
#header-carousel .carousel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#header-carousel .carousel-caption {
  z-index: 2;
}

.hero-video {
  display: block;
  background: #000;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    height: 70vh;
  }
}

h1[data-toggle="counter-up"]::after {
  content: "+";
}

.hero-title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
}

/* Mouse Cursor */
/* Hide default cursor */
body {
  cursor: none;
}

/* Small center dot */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: #091e3e;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
}

/* Outer ring */
.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(9, 30, 62, 0.8);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s ease,
    height 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* From Uiverse.io by ferlagher - Modified for SS Enterprises */

.btn-uiverse {
  position: relative;
  display: inline-block;
  padding: 0.9em 2em;

  background-color: #06a3da;

  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  font-weight: 600;

  border: none;
  border-radius: 30px;

  cursor: pointer;

  overflow: hidden;

  box-shadow: 0.5em 0.5em 0.8em rgba(0, 0, 0, 0.25);

  transition: all 0.3s ease;
}

.btn-uiverse.btn-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 6px 14px !important;

  min-width: auto !important;
  width: auto !important;
  height: auto !important;

  font-size: 11px !important;

  letter-spacing: 1px;

  border-radius: 5px;
}

.btn-uiverse::before {
  position: absolute;
  content: "";

  width: 32px;
  height: 32px;

  top: 0;
  left: 0;

  background: linear-gradient(
    135deg,
    #0b2239 0%,
    #0b2239 50%,
    #058fc0 50%,
    #06a3da 60%
  );

  border-radius: 0 0 8px 0;

  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.25);

  transform: scale(0);
  transform-origin: top left;

  transition: transform 0.35s ease;
}

.btn-uiverse:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn-uiverse:hover::before {
  transform: scale(1);
}

.btn-uiverse:active {
  transform: translate(2px, 2px);

  box-shadow: 0.2em 0.2em 0.4em rgba(0, 0, 0, 0.25);
}

/* What we offer */
.section-heading {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #06a3da;
}

.section-subheading {
  font-size: 19px;
  font-weight: 500;
  color: #5f6368;
}

/* ================= HERO RESPONSIVE ================= */

.carousel-item img,
.hero-video {
  width: 100%;
  height: 720px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .carousel-item img,
  .hero-video {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .carousel-item img,
  .hero-video {
    height: 380px;
  }
}

/* Hero Caption Width */
.hero-content-wrapper {
  max-width: 900px;
}

@media (max-width: 767px) {
  .hero-content-wrapper {
    max-width: 100%;
    padding: 20px;
  }
}

/* ================= ABOUT IMAGE ================= */

.about-card {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: 20px;
  overflow: hidden;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.about-card .bg {
  position: absolute;

  inset: 5px;

  z-index: 2;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px);

  border-radius: 16px;

  overflow: hidden;

  outline: 2px solid white;
}

.about-card .bg img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;
}

.about-card .blob {
  position: absolute;

  top: 50%;

  left: 50%;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: #06a3da;

  filter: blur(25px);

  opacity: 0.9;

  z-index: 1;

  animation: blob-bounce 5s infinite ease;
}

@keyframes blob-bounce {
  0% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }

  25% {
    transform: translate(-100%, -100%) translate3d(100%, 0, 0);
  }

  50% {
    transform: translate(-100%, -100%) translate3d(100%, 100%, 0);
  }

  75% {
    transform: translate(-100%, -100%) translate3d(0, 100%, 0);
  }

  100% {
    transform: translate(-100%, -100%) translate3d(0, 0, 0);
  }
}

/* ================= ABOUT SECTION MAP BACKGROUND ================= */

.about-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -100px;
  padding-top: 200px;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url("../img/map.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 1;

  z-index: -1;
}

/* Facts Section */
.facts .row {
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Remove gaps between columns */
.facts .col-lg-4 {
  padding: 0;
}

/* Make the cards fill the rounded container */
.facts .bg-primary,
.facts .bg-light {
  border-radius: 0 !important;
}

.facts .col-lg-4:first-child .bg-primary {
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
}

.facts .col-lg-4:last-child .bg-primary {
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
}

/* Container Fixes */
.floating-buttons-container {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-end !important;
}

.floating-buttons-container {
  position: fixed !important;
  bottom: 30px !important;
  right: 30px !important;
  z-index: 9999 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  align-items: flex-end !important;
}
/* WhatsApp Button Expanding Animation (Matching Template Style) */
.whatsapp-link {
  display: flex;
  align-items: center;
  background: #25d366;
  color: #ffffff;
  height: 45px;
  width: 45px;
  border-radius: 50px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-decoration: none;
  transition: width 0.3s ease-in-out;
  white-space: nowrap;
}
.floating-buttons-container > a.whatsapp-link {
  position: static !important;
  margin: 0 !important;
  float: none !important;
}

.floating-buttons-container > a.back-to-top {
  position: static !important;
  margin: 0 !important;
  float: none !important;
}

.whatsapp-inner {
  display: flex;
  align-items: center;
  padding: 0 13px;
  height: 100%;
}

.whatsapp-text {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  transition:
    max-width 0.3s ease-in-out,
    opacity 0.2s ease-in-out,
    margin-left 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Hover effect: Expands the button and slides open the "WhatsApp" text */
.whatsapp-link:hover {
  width: 140px;
  background: #1ebe5d;
  color: #ffffff;
}

.whatsapp-link:hover .whatsapp-text {
  max-width: 100px;
  opacity: 1;
  margin-left: 8px;
}

/* ===========================
   Quote Form
=========================== */

.quote-form {
  background: linear-gradient(180deg, #ffffff, #e4f4ff);

  padding: 40px;
  position: relative;
  border-radius: 35px;

  border: 4px solid #fff;

  box-shadow: 0 25px 40px rgba(6, 163, 218, 0.18);
}

.quote-form-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-input {
  width: 100%;

  height: 58px;

  border: none;

  border-radius: 30px;

  padding: 0 22px;

  background: #ffffff;

  box-shadow: 0 10px 18px rgba(6, 163, 218, 0.12);

  transition: 0.3s;
}

.quote-input:focus {
  outline: none;

  box-shadow: 0 0 0 4px rgba(6, 163, 218, 0.18);
}

.quote-message {
  height: 140px;

  padding-top: 18px;

  resize: none;
}

.quote-btn {
  position: absolute;
  overflow: visible;
  right: -18px;

  bottom: -10px;

  width: 185px;

  height: 54px;

  border: none;

  background: #0a157a;

  color: #fff;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;

  border-radius: 35px 0 0 35px;

  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);

  transition: 0.3s;

  cursor: pointer;
}

.quote-btn::after {
  content: "";

  position: absolute;

  right: 4px;

  bottom: 54px; /* Move it down */

  width: 0;

  height: 0;

  border-left: 0 solid transparent;

  border-right: 10px solid transparent;

  border-bottom: 10px solid #07126d;
}

.quote-btn:hover {
  transform: translateY(-4px);

  background: #06a3da;
}

/* Equal Height Testimonials */

.testimonial-carousel .owl-stage {
  display: flex;
}

.testimonial-carousel .owl-item {
  display: flex;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  height: 50%;
  min-height: 320px; /* Adjust if needed */
}

.testimonial-item .pt-4 {
  flex: 1;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;

  background: #eaf7fd; /* Light blue circle */

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.testimonial-avatar i {
  font-size: 28px;
  color: #06a3da; /* Blue icon */
}

/* Certificate  */

.certificate-card {
  position: relative;
  height: 100%;
  min-height: 430px;

  overflow: hidden;

  border-radius: 22px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.certificate-bg {
  position: absolute;

  inset: 5px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(20px);

  border-radius: 18px;

  outline: 2px solid #fff;

  z-index: 2;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: space-between;

  padding: 30px;
}

.certificate-blob {
  position: absolute;

  top: 50%;
  left: 50%;

  width: 220px;
  height: 220px;

  border-radius: 50%;

  background: #06a3da;

  filter: blur(30px);

  animation: blob-bounce 5s infinite ease;

  z-index: 1;
}

.cert-img-container {
  height: 150px;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 20px;
}

.cert-img {
  max-width: 180px;

  max-height: 120px;

  object-fit: contain;
}

.certificate-bg h5 {
  color: #0b1f4d;

  font-weight: 700;

  margin-top: 10px;
}

.certificate-bg p {
  text-align: center;

  color: #777;

  margin-bottom: 25px;
}

/* Quotation Form */
.quote-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 0.8px;
  background: #fff;
  margin-top: 5px;
}

.quote-card::before {
  content: "";
  position: absolute;

  inset: -50%;

  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    #06a3da 330deg,
    #09b8f2 350deg,
    transparent 360deg
  );

  animation: borderRotate 2s linear infinite;
}

.quote-card-bg {
  position: relative;
  z-index: 2;

  margin: 1px;
  padding: 40px;

  background: #ffffff;

  border-radius: 20px;

  border: -1px solid rgba(6, 163, 218, 0.18);

  box-shadow:
    0 25px 60px rgba(15, 23, 42, 0.1),
    0 10px 20px rgba(6, 163, 218, 0.08);
}

.col-lg-10 {
  padding-top: 5px;
}

@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Contact Page Background */

/* CONTACT PAGE BACKGROUND */

.contact-bg {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-bg::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("../img/Mappppp.png");

  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;

  opacity: 0.8;

  z-index: -1;
}

.contact-form-card {
  position: relative;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #eef8ff 25%,
    #dff3ff 70%,
    #edf9ff 100%
  );
  width: 100%;
  max-width: 650px;
  min-height: 450px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;

  box-shadow:
    0 20px 50px rgba(0, 145, 255, 0.1),
    0 0 35px rgba(0, 170, 255, 0.08);

  backdrop-filter: blur(12px);
}

.contact-form-card input,
.contact-form-card select {
  height: 60px !important;

  border: none !important;

  border-radius: 50px !important;

  background: #fff !important;

  padding: 0 28px !important;

  box-shadow: none;
}

.contact-form-card textarea {
  border: none !important;

  border-radius: 30px !important;

  background: #fff !important;

  padding: 22px !important;

  min-height: 180px;

  resize: none;
}

.contact-form-card textarea {
  border: none !important;

  border-radius: 30px !important;

  background: #fff !important;

  padding: 22px !important;

  min-height: 180px;

  resize: none;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
.contact-form-card select:focus {
  box-shadow: 0 0 0 4px rgba(0, 167, 255, 0.15);

  outline: none;
}

.contact-form-card .btn-uiverse {
  margin-top: 15px;

  background: #0b1b83;

  border-radius: 50px;

  min-width: 220px;

  height: 58px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* Contact Page Button */

.contact-btn {
  position: absolute;

  right: -8px;
  bottom: -18px;

  width: 190px;
  height: 54px;

  border: none;
  border-radius: 30px 0 0 30px;

  background: #0f0092;
  color: #fff;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow: -5px 8px 20px rgba(0, 0, 0, 0.3);

  transition: 0.3s;
}

.contact-btn::after {
  content: "";
  position: absolute;

  right: -1px;
  bottom: 51px;

  border-right: 10px solid transparent;
  border-bottom: 10px solid #1a044e;
}

.contact-btn:hover {
  background: #07013d;
}

/* About page card */
/* .about-page-card{
    padding:4px;
    background:linear-gradient(
        135deg,
        #06a3da 0%,
        #7fd8ff 30%,
        #ffffff 50%,
        #ffb347 75%,
        #06a3da 100%
    );

    border-radius:20px;
}

.about-page-card .bg{
    inset:4px;
    border-radius:16px;
}
 */

.cursor-dot,
.cursor-outline {
  visibility: visible !important;
  opacity: 1 !important;
}

/*==================================================
                OUR PURPOSE
==================================================*/

.purpose-section {
  padding: 80px;
  background: #f7f9fc;
}

.purpose-heading {
  width: min(800px, 90%);
  margin: 0 auto 45px;
  text-align: center;
}

.purpose-heading span {
  display: inline-block;
  color: #06a3da;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.purpose-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #091e3e;
  margin-bottom: 18px;
}

.purpose-heading p {
  font-size: 18px;
  line-height: 1.8;
  color: #6c757d;
}

.purpose-grid {
  width: min(1200px, 90%);
  margin: auto;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
}

.purpose-card {
  position: relative;
  isolation: isolate;
  padding: 5px;

  border-radius: 28px;

  background: linear-gradient(135deg, #06a3da, #6fd6ff);
  overflow: visible;
  transition: 0.45s ease;
}

.purpose-card::before {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 28px;

  background: linear-gradient(135deg, #9ee6ff, #dff5ff);

  transform: rotate(-1.2deg);

  z-index: -1;

  transition: all 0.45s ease;
}

.purpose-card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 28px;

  background: linear-gradient(135deg, #cff2ff, #ffffff);

  transform: rotate(-1.2deg);

  z-index: -2;

  transition: all 0.45s ease;
}

.purpose-card-inner {
  background: #fff;
  border-radius: 24px;
  padding: 40px;

  position: relative;
  z-index: 2;

  transition: 0.45s;
}

.purpose-icon {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: linear-gradient(135deg, #06a3da, #0d6efd);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  box-shadow: 0 15px 35px rgba(13, 110, 253, 0.25);

  transition: 0.4s;
}

.purpose-icon i {
  color: #fff;

  font-size: 28px;
}

.purpose-card:hover .purpose-icon {
  transform: scale(1.12) rotate(8deg);
}

.purpose-card li {
  list-style: none;

  position: relative;

  padding-left: 30px;

  margin-bottom: 14px;
}

.purpose-card li::before {
  content: "✓";

  position: absolute;

  left: 0;

  color: #06a3da;

  font-weight: 700;
}

.purpose-card:hover {
  transform: translateY(-8px);
}

.purpose-card:hover::before {
  transform: rotate(0deg);
  opacity: 0;
}

.purpose-card:hover::after {
  transform: rotate(0deg);
  opacity: 0;
}

.purpose-card:hover .purpose-card-inner {
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
}

/*==================================================
                CORE VALUES
==================================================*/

.core-values {
  background: #fff;
  padding-bottom: 40px;
}

.value-card {
  position: relative;
  overflow: visible;
  padding: 3px;

  border-radius: 26px;

  background: linear-gradient(135deg, #06a3da, #79d9ff);

  transition: 0.4s ease;
}

/* Gradient Layers */

.value-card::before,
.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  z-index: -1;
  transition: 0.4s ease;
}

.value-card::before {
  background: linear-gradient(135deg, #8be7ff, #dff6ff);

  transform: rotate(2deg);
}

.value-card::after {
  background: linear-gradient(135deg, #b8f0ff, #ffffff);

  transform: rotate(-2deg);
}

/* Inner Card */

.value-card-inner {
  background: #fff;

  border-radius: 22px;

  padding: 22px 12px;

  min-height: 230px;

  text-align: center;

  transition: 0.4s;
}

/* Icon Circle */

.value-icon {
  width: 60px;
  height: 60px;

  margin: auto;

  border-radius: 50%;

  background: linear-gradient(135deg, #06a3da, #0d6efd);

  display: flex;
  justify-content: center;
  align-items: center;

  color: #fff;

  font-size: 24px;

  margin-bottom: 16px;

  box-shadow: 0 15px 30px rgba(6, 163, 218, 0.25);

  transition: 0.4s;
}

/* Heading */

.value-card h5 {
  font-weight: 700;
  color: #091e3e;
  margin-bottom: 20px;
  margin-bottom: 10px;
}

/* Text */

.value-card p {
  color: #666;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 0;
}

/* Hover */

.value-card:hover {
  transform: translateY(-8px);
}

.value-card:hover::before,
.value-card:hover::after {
  transform: rotate(0deg);
  opacity: 0;
}

.value-card:hover .value-card-inner {
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.value-card:hover .value-icon {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .purpose-grid {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 8px;
  }

  .purpose-card {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 768px) {
  .purpose-card-inner {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .purpose-heading span {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .purpose-heading h2 {
    font-size: 28px;
  }

  .purpose-heading p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .purpose-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 18px;
  }

  .purpose-icon i {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .purpose-card li {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .purpose-section {
    padding: 60px 15px;
  }
}

/*==================================================
            INDUSTRIES WE SERVE
==================================================*/

.industry-card {
  position: relative;
  overflow: visible;

  padding: 4px;

  border-radius: 24px;

  background: linear-gradient(135deg, #06a3da, #79d9ff);

  transition: 0.4s ease;
}

.industry-card::before,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;

  border-radius: 24px;

  z-index: -1;

  transition: 0.4s ease;
}

.industry-card::before {
  background: linear-gradient(135deg, #9ee6ff, #dff6ff);

  transform: rotate(2deg);
}

.industry-card::after {
  background: linear-gradient(135deg, #cff2ff, #ffffff);

  transform: rotate(-2deg);
}

.industry-card-inner {
  background: #fff;

  border-radius: 20px;

  padding: 28px 18px;

  height: 240px; /* Fixed height */

  display: flex;

  flex-direction: column;

  justify-content: flex-start;

  align-items: center;

  text-align: center;

  transition: 0.4s;
}

.industry-icon {
  width: 60px;
  height: 60px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px;

  flex-shrink: 0;
}

.industry-card h6 {
  font-size: 20px;
  font-weight: 700;
  color: #0e3269;
  height: 56px; /* Same height for all headings */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.industry-card p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  flex: 1;
  display: flex;
  align-items: flex-start;
}

/* Hover */

.industry-card:hover {
  transform: translateY(-10px);
}

.industry-card:hover::before,
.industry-card:hover::after {
  transform: rotate(0deg);
  opacity: 0;
}

.industry-card:hover .industry-card-inner {
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.15);
}

.industry-card:hover .industry-icon {
  transform: scale(1.18);
  color: #0d6efd;
}

@media (max-width: 768px) {
  .industry-card-inner {
    min-height: 190px;
    padding: 25px 18px;
  }

  .industry-card h6 {
    font-size: 18px;
  }

  .industry-card p {
    font-size: 14px;
  }
}

/*=========================
SERVICE CARD
==========================*/

.service-card {
  position: relative;

  height: 310px;

  padding: 3px;

  border-radius: 24px;

  overflow: hidden;

  transition: 0.45s;
}

.service-card::before {
  content: "";

  position: absolute;

  width: 160%;
  height: 160%;
  left: -30%;
  top: -30%;

  background: conic-gradient(
    transparent 0deg,

    transparent 250deg,

    #06a3da 285deg,

    #62d8ff 320deg,

    #06a3da 360deg
  );

  animation: borderRotate 3s linear infinite;
}

.service-card-inner {
  position: relative;

  background: #fff;

  border-radius: 20px;

  min-height: 304px;

  padding: 35px 25px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  text-align: center;

  z-index: 2;
}

.service-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-12px);

  box-shadow: 0 30px 70px rgba(6, 163, 218, 0.22);
}

@keyframes borderRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-logo {
  width: 100px; /* Increase this if you want it bigger */
  height: 90px;
  object-fit: contain;
  transition: 0.3s;
}

.logo-text {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

/* Sticky Navbar */

.sticky-top .site-logo {
  width: 70px;
  height: 70px;
}

.sticky-top .logo-text {
  color: #113975;
}

@media (max-width: 991px) {
  .site-logo {
    width: 46px;
    height: 46px;
  }

  .logo-text {
    font-size: 22px;
  }
}

.commodity-bg-card {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  border-radius: 12px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Semi-transparent dark overlay to make text readable */
.commodity-bg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

/* Ensure text and icons sit above the overlay */
.commodity-content {
  position: relative;
  z-index: 2;
  color: #ffffff !important;
}

.commodity-content h5,
.commodity-content p {
  color: #ffffff !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
