@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:focus {
  outline: none;
}

:root {
  /* Colors */
  --dark-primary: #0c2849;
  --primary: #14427b;
  --secondary: #b99400;
  --new-secondary: #a3ccff;
  --success: #198754;
  --danger: #dc3545;
  --warning: #ffc107;
  --dark: #212529;
  --light: #f8f9fa;
  --muted: #6c757d;
  --border: #e0e0e0;
  --light-text: #d3d3d3;

  /* Gradient */
  --gradient: linear-gradient(
    90deg,
    rgba(20, 66, 123, 1) 0%,
    rgb(10, 32, 59) 45%,
    rgba(20, 66, 123, 1) 100%
  );

  /* Typography */
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Syne", sans-serif;

  --fs10px: 10px;
  --fs12px: 12px;
  --fs14px: 14px;
  --fs16px: 16px;
  --fs18px: 18px;
  --fs20px: 20px;
  --fs22px: 22px;
  --fs24px: 24px;
  --fs26px: 26px;
  --fs30px: 30px;
  --fs32px: 32px;
  --fs34px: 34px;
  --fs36px: 36px;
  --fs40px: 40px;
  --fs48px: 48px;
  --fs65px: 65px;
  --fs74px: 74px;
  --fs96px: 96px;
  --fs140px: 140px;
  --fw300: 300;
  --fw400: 400;
  --fw500: 500;
  --fw600: 600;
  --fw700: 700;

  /* Shadows */
  --box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);

  /* Transition */
  --transition: all 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#smooth-wrapper {
  overflow: hidden;
}

#smooth-content {
  overflow: visible;
  width: 100%;
}

html,
body {
  background: var(--gradient);
}
a {
  text-decoration: none;
  color: #fff;
}
body {
  font-family: var(--primary-font);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  height: 100vh;
}

.smooth-wrapper {
  overflow: hidden;
  position: relative;
}

#smooth-content {
  will-change: transform;
}

#smooth-wrapper,
#smooth-content {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #333;
  border-radius: 50px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--new-secondary);
  border-radius: 50px; /* Apply radius here */
  transition: 0.3s ease;
}

/* Hover effect with glow */
::-webkit-scrollbar-thumb:hover {
  background: var(--new-secondary);
  box-shadow:
    0 0 10px var(--new-secondary),
    0 0 20px var(--new-secondary);
}

/* #smooth-content {
  overflow: visible;
  width: 100%;
  height: 1000000px;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.07) 2px,
      transparent 2px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 2px, transparent 2px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -2px -2px, -2px -2px, -1px -1px, -1px -1px;
} */

/* global css */
/* Preloader Container - This is the wrapper that will curve up */

/* Prevent scrolling during preloader */
/* Prevent scrolling during preloader */
/* Prevent scrolling during preloader */
body.loading {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

/* Fade & scale logo reveal */
.preloader-logo {
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--gradient);
  border-bottom: 1px solid var(--new-secondary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  overflow: hidden;
}

/* Logo/Brand */
.preloader-logo {
  margin-bottom: 30px;
}
.preloader-logo img {
  width: 200px;
}

/* Counter */
.preloader-counter {
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

/* Progress Bar Container */
.progress-container {
  width: 300px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* Progress Bar Fill */
.progress-bar {
  height: 100%;
  width: 0%;
  background: var(--new-secondary);
  transition: width 0.1s ease;
  border-radius: 10px;
}

/* Loading Text */
.loading-text {
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #fff;
  text-transform: uppercase;
}

main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 1;
}

.word {
  display: inline-block;
  overflow: hidden;
  margin: 0 8px 0 0;
}

.word-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.custom-title {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  margin: auto;
}
.section-title h2 {
  font-size: var(--fs65px);
  color: var(--light);
  font-weight: 600;
  font-family: var(--secondary-font);
  line-height: 70px;
}
.large-section-title h2 {
  font-size: 90px;
  font-weight: 300;
  line-height: 90px;
}
.section-title p {
  color: var(--light);
  font-size: 18px;
  padding: 10px 0px;
}
.theme-btn {
  font-size: 16px;
  font-weight: 500;
  background: var(--primary);
  color: var(--light);
  padding: 10px 20px;
  border: 2px solid var(--primary);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.theme-btn:hover {
  color: var(--primary);
}

.theme-btn:after {
  content: "";
  background: white;
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: var(--transition);
}

.theme-btn:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/* light theme btn */

.light-theme-btn {
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: var(--light);
  padding: 10px 20px;
  border: 2px solid var(--light);
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.light-theme-btn:hover {
  color: var(--dark-primary);
  font-weight: 600;
}
.light-theme-btn a {
  transition: all 0.5s;
}
.light-theme-btn:hover a {
  color: var(--dark-primary);
  font-weight: 600;
}

.light-theme-btn:after {
  content: "";
  background: var(--new-secondary);
  position: absolute;
  z-index: -1;
  left: -20%;
  right: -20%;
  top: 0;
  bottom: 0;
  transform: skewX(-45deg) scale(0, 1);
  transition: all 0.5s;
}

.light-theme-btn:hover:after {
  transform: skewX(-45deg) scale(1, 1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.large-btn {
  font-size: 20px;
}

.bg-btn {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  background-color: #a3ccff;
  border: 2px solid #a3ccff;
  transition: all 1s ease;
}

.bg-btn:hover {
  box-shadow:
    0 0 5px #a3ccffab,
    0 0 25px #a3ccff9d,
    0 0 50px #a3ccff9d,
    0 0 100px #a3ccff9d;
}

.navigation-title .arrow-btn {
  width: 120px;
  height: 50px;
  border: 1px solid var(--new-secondary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
  padding: 10px 20px;
  transition: var(--transition);
  cursor: pointer;
}
.navigation-title .arrow-btn img {
  transition: var(--transition);
}
.arrow-btn-column {
  display: flex;
  justify-content: end;
}
.navigation-title .arrow-btn:hover {
  background-color: var(--new-secondary);
  box-shadow:
    0 0 5px #a3ccffab,
    0 0 25px #a3ccff9d,
    0 0 50px #a3ccff9d,
    0 0 100px #a3ccff9d;
}
.navigation-title .arrow-btn:hover img {
  filter: brightness(0);
}

.navigation-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* header style */

.primary_header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;

  background: rgba(0, 0, 0, 0.432);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.479);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.primary_header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.25)
  );
  opacity: 0.4;
  pointer-events: none;
}

.primary_header .navbar-brand img {
  width: 150px;
}
.primary_header .nav-item {
  padding: 5px 10px;
}

.primary_header .nav-item .nav-link {
  color: var(--light);
  transition: all 0.5s ease;
}
.primary_header .nav-item:hover .nav-link {
  color: var(--new-secondary);
}

.primary_header .nav-item .active {
  font-weight: 500;
  position: relative;
  padding-left: 25px; /* space for the dot */
}

.primary_header .nav-item .active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid var(--new-secondary);
  border-radius: 50%;
  box-shadow:
    0 0 2px #a3ccff96,
    0 0 10px #a3ccff6e,
    0 0 20px #a3ccff9d,
    0 0 40px #a3ccff30;
}

.primary_header.scrolled {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
  transition: all 0.4s ease;
}

.Home_bnr {
  position: relative;
}

.Home_bnr .sliderWrapper {
  height: 750px;
  width: 100%;
}

.Home_bnr .sliderWrapper {
  position: relative;
  overflow: hidden;
}

.Home_bnr .sliderImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* important */

  animation-duration: 28s; /* total slider duration */
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-fill-mode: both;
}

.Home_bnr .sliderImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.Home_bnr .sliderImage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgb(0, 0, 0), rgba(0, 0, 0, 0.308));
  z-index: 2; /* must be higher than image */
  pointer-events: none;
}

/* Name of animations and selection of images */
.Home_bnr .sliderImage:nth-of-type(1) {
  animation-name: slide-01;
}

.Home_bnr .sliderImage:nth-of-type(2) {
  animation-name: slide-02;
}

.Home_bnr .sliderImage:nth-of-type(3) {
  animation-name: slide-03;
}

@-webkit-keyframes slide-01 {
  0% {
    opacity: 1;
    -webkit-transform: scale(1.4) translate(0, 0);
  }

  16% {
    opacity: 1;
    -webkit-transform: scale(1.2) translate(-20px, -10px);
  }

  33% {
    opacity: 0;
    -webkit-transform: scale(1.4) translate(0, 0);
  }

  50% {
    opacity: 0;
  }

  67% {
    opacity: 0;
  }

  84% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1.4) translate(0, 0);
  }
}

@-webkit-keyframes slide-02 {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 0;
    -webkit-transform: scale(1.2) translate(-20px, -10px);
  }

  33% {
    opacity: 1;
    -webkit-transform: scale(1.4) translate(0, 0);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.2) translate(-20px, 10px);
  }

  67% {
    opacity: 0;
    -webkit-transform: scale(1.4) translate(0, 0);
  }

  84% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@-webkit-keyframes slide-03 {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(1.4) translate(0, 0);
  }

  67% {
    opacity: 1;
    -webkit-transform: scale(1.4) translate(-20px, 10px);
  }

  84% {
    opacity: 1;
    -webkit-transform: scale(1.2) translate(20px, -10px);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(1.4) translate(0, 0);
  }
}

/* Styles for all other browsers */
@keyframes slide-01 {
  0% {
    opacity: 1;
    transform: scale(1.4) translate(0, 0);
  }

  16% {
    opacity: 1;
    transform: scale(1.2) translate(-20px, -10px);
  }

  33% {
    opacity: 0;
    transform: scale(1.4) translate(0, 0);
  }

  50% {
    opacity: 0;
  }

  67% {
    opacity: 0;
  }

  84% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    transform: scale(1.4) translate(0, 0);
  }
}

@keyframes slide-02 {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 0;
    transform: scale(1.2) translate(-20px, -10px);
  }

  33% {
    opacity: 1;
    transform: scale(1.4) translate(0, 0);
  }

  50% {
    opacity: 1;
    transform: scale(1.2) translate(-20px, 10px);
  }

  67% {
    opacity: 0;
    transform: scale(1.4) translate(0, 0);
  }

  84% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes slide-03 {
  0% {
    opacity: 0;
  }

  16% {
    opacity: 0;
  }

  33% {
    opacity: 0;
  }

  50% {
    opacity: 0;
    transform: scale(1.4) translate(0, 0);
  }

  67% {
    opacity: 1;
    transform: scale(1.4) translate(-20px, 10px);
  }

  84% {
    opacity: 1;
    transform: scale(1.2) translate(20px, -10px);
  }

  100% {
    opacity: 0;
    transform: scale(1.4) translate(0, 0);
  }
}

.Home_bnr .carousel_caption {
  position: absolute;
  bottom: 50px;
  right: 70px;
  z-index: 1;
}
.Home_bnr .carousel_caption .banner-content {
  text-align: right;
}
.Home_bnr .carousel_caption .banner-content h1 {
  font-size: 120px;
  color: var(--light);
  font-weight: 600;
  line-height: 100px;
  font-family: var(--secondary-font);
  text-transform: uppercase;
}
.Home_bnr .carousel_caption .banner-content h1 span {
  color: var(--new-secondary);
}
.Home_bnr .carousel_caption .banner-content p {
  color: var(--light);
  font-size: var(--fs20px);
}

/* about styles */

.section-padding {
  padding: 150px 0;
}

.about-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-section .experience-count {
  margin-top: 40px;
  position: relative;
  z-index: -1;
}

.about-section .experience-count h2 {
  font-size: 250px;
  color: #ffffff1f;
  line-height: 230px;
  margin-top: 20px;
}
.about-section .experience-count h5 {
  color: var(--light);
  font-size: 40px;
  color: #ffffff1f;
}

/* ===== GSAP Circular Cards Wrapper ===== */
.gsap-circular-cards-wrapper {
  position: relative;
  width: 550px;
  height: 550px;
  margin: auto;
}

/* ===== GSAP Circular Card Base ===== */
.gsap-circular-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  border-radius: 22px;
  background: linear-gradient(145deg, #104483 0%, #0a2c55 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #47daff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  will-change: transform;
}

.gsap-circular-card:hover {
  background: var(--new-secondary);
  border-color: var(--new-secondary);
  box-shadow: 0 0 30px #a3ccffb0;
  z-index: 10;
}

.gsap-circular-card:hover .number h2,
.gsap-circular-card:hover .words h2 {
  color: var(--dark-primary);
}

/* ===== Text ===== */
.gsap-circular-card .number h2 {
  font-size: var(--fs32px);
  color: #fff;
  font-weight: 600;
  margin: 0;
}

.gsap-circular-card .words h2 {
  font-size: var(--fs22px);
  color: #fff;
  font-weight: 500;
  margin: 0;
  line-height: 1.2;
}

/* ===== Initial Circular Positions ===== */
.gsap-card-1 {
  transform: rotate(-90deg) translate(230px) rotate(90deg);
}

.gsap-card-2 {
  transform: rotate(-18deg) translate(230px) rotate(18deg);
}

.gsap-card-3 {
  transform: rotate(54deg) translate(230px) rotate(-54deg);
}

.gsap-card-4 {
  transform: rotate(126deg) translate(230px) rotate(-126deg);
}

.gsap-card-5 {
  transform: rotate(198deg) translate(230px) rotate(-198deg);
}

/* who we serve */

.who-we-serve .image-box {
  padding: 10px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}

.who-we-serve .image-wrapper {
  position: relative;
  overflow: hidden; /* Keeps the shine clipped to the image area */
  border-radius: 20px;
}

.who-we-serve .image-wrapper img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  display: block; /* Removes bottom gap on images */
}

/* Shine pseudo-element on the wrapper, not the img */
.who-we-serve .image-wrapper::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none; /* So it doesn't block hover on the image */
}

.who-we-serve .image-wrapper:hover::before {
  animation: shine 0.75s ease-in-out;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.who-we-serve .image-box .content {
  padding-left: 10px;
}
.who-we-serve .image-box .content h2 {
  font-size: 18px;
  color: var(--light);
  margin-top: 10px;
  margin-bottom: 0px;
}
.who-we-serve .owl-dots {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
.who-we-serve .owl-theme .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
}

.text-reveal-sec {
  position: relative;
  background-image: url("../images/text-reveal-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}

/* overlay */
.text-reveal-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.637);
  z-index: -1;
}

.text-reveal-sec h2 {
  font-size: 60px;
  line-height: 90px;
  color: #fff;
  font-weight: 300;
}
.sec-gap-left {
  padding-left: 50px;
}

/* testimonial styles */
.testimonial-section .card {
  flex-direction: column;
  justify-content: space-between;
  max-height: 500px;
  min-height: 500px;
  display: flex !important;
  border-radius: 40px;
  padding: 30px;
  outline: none !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none; /* Remove border entirely */
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    /* Fake border via inset shadow */ 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.7;
  transition:
    opacity 0.4s ease,
    box-shadow 0.4s ease;
}

.testimonial-section .card-2 {
  margin-top: -50px;
  opacity: 1;
}

.testimonial-section .card {
  flex-direction: column;
  justify-content: space-between;
  max-height: 500px;
  min-height: 500px;
  display: flex !important;
  border-radius: 40px;
  padding: 30px;
  outline: none !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 32px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.7;
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  will-change: opacity, box-shadow;
}

.testimonial-section .card:hover {
  opacity: 1;
  box-shadow:
    inset 0 0 0 1px var(--new-secondary),
    0 0 2px #a3ccff96,
    0 0 10px #a3ccff6e,
    0 0 20px #a3ccff9d,
    0 0 40px #a3ccff30 !important;
}

.testimonial-section .card p {
  font-size: 18px;
  color: #fff;
}
.testimonial-section .card .profile {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-section .card .profile h6 {
  color: #fff;
  font-size: 18px;
}
.testimonial-section .card .icon {
  display: flex;
  justify-content: end;
}
.testimonial-section .testi-card-row {
  margin-top: 80px;
}
.testimonial-section .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.testimonial-section .card .author p {
  font-size: 16px;
  color: var(--light-text);
  margin-bottom: 0px;
}
.testimonial-section .card .profile img {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 5px;
  padding: 5px;
  object-fit: contain;
}

/* client styles */
.client-section .logo {
  width: 100%;
  height: 150px;
  background: rgba(255, 255, 255, 0.623);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.client-section .logo:hover {
  background: #fff;
}
.client-section .logo img {
  width: 100px !important;
}
#client_slider {
  margin-top: 30px;
}

#client_slider_two {
  margin-top: 10px;
}

/* PROJECT STYLES */

.project-section {
  padding-bottom: 700px; /* or a fixed value like 800px */
}

.project-section .project-cards {
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.project-section .project-cards img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}
.project-section .project-cards {
  max-height: 100vh;
  height: 100vh;
}
/* Overlay with linear gradient */
.project-section .project-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.801),
    rgba(0, 0, 0, 0)
  );
  z-index: 1;
}

/* Keep image below overlay */
.project-section .project-cards img {
  position: relative;
  z-index: 0;
}

.project-section .project-cards .project-detail {
  position: absolute;
  top: 50px;
  left: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 99;
}
.project-section .project-cards .project-detail .number h2 {
  color: #fff;
  font-size: 100px;
}
.project-section .project-cards .project-detail .name h3 {
  font-size: 40px;
  color: #fff;
}
.project-section .project-cards .project-detail .name h6 {
  font-size: 20px;
  color: #fff;
}

/* certificate styles */

/* Certificate Slider Styles */
#certificate_slider .owl-item {
  transition: all 0.3s ease;
  opacity: 0.5;
  transform: scale(0.7);
}

#certificate_slider .owl-item.center {
  opacity: 1;
  transform: scale(1);
  z-index: 10;
  position: relative;
}

#certificate_slider .owl-item img {
  width: 100%;
  border: none;
  outline: none;
  display: block;
  border-radius: 20px;
  transition: var(--transition);
}
#certificate_slider .owl-item img:hover {
  transform: scale(1.05);
}

/* Allow slider to extend beyond container */
#certificate_slider {
  overflow: hidden;
}

#certificate_slider .owl-stage-outer {
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: visible !important;
}

#certificate_slider .owl-stage {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Ensure all parent containers allow overflow */
.certificate-section {
  overflow: visible !important;
}

.certificate-section .col-lg-6 {
  overflow: visible !important;
}

.certificate-section .container {
  overflow: visible !important;
}

.certificate-section .row {
  overflow: visible !important;
}

.sliding_cta {
  position: relative;
  background: url(../images/latest_updates_bg.png);
  background-position: center;
  background-repeat: repeat-x;
  background-size: cover;
  padding: 250px 0;
  overflow: hidden;
  animation: slideBg 40s linear infinite;
}

/* Black overlay */
.sliding_cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4); /* adjust darkness */
  z-index: 1;
}

/* Keep inside content above overlay */
.sliding_cta > * {
  position: relative;
  z-index: 2;
}

.sliding_cta h2 {
  max-width: 700px;
  margin: auto;
}

/* Marquee-style background animation */
@keyframes slideBg {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2000px 0;
  }
}

.moments-section .card {
  background: transparent;
  padding: 15px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  margin-top: 30px;
}

.moments-section .card:hover {
  transform: translateY(-20px) !important;
  transition: var(--transition);
}
.latest-news .col-lg-4 {
  display: flex;
}
.moments-section .card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Image box wrapper */
.moments-section .card .img-box {
  position: relative;
}

.moments-section .card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Black overlay */
/* .moments-section .card .img-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.884)
  );
  z-index: 1;
} */

/* Play icon */
.moments-section .card .play-icon {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.moments-section .card .play-icon svg {
  font-size: 20px;
}

/* Text content */
.moments-section .card .content {
  position: absolute;
  bottom: 20px;
  left: 30px;
  z-index: 2;
}

.moments-section .card .content h2 {
  font-size: 18px;
  color: #fff;
}

.latest-news .card {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    0 8px 32px 0 rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  will-change: box-shadow;
}

.latest-news .card:hover {
  box-shadow:
    inset 0 0 0 1px var(--new-secondary),
    0 0 2px #a3ccff96,
    0 0 10px #a3ccff6e,
    0 0 20px #a3ccff9d,
    0 0 40px #a3ccff30 !important;
}
.latest-news .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}
.latest-news .card .image {
  position: relative;
}

.latest-news .image-wrapper {
  position: relative;
  overflow: hidden; /* Keeps the shine clipped to the image area */
  border-radius: 20px;
}

.latest-news .image-wrapper img {
  height: 300px;
  width: 100%;
  object-fit: cover;
  display: block; /* Removes bottom gap on images */
}

/* Shine pseudo-element on the wrapper, not the img */
.latest-news .image-wrapper::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none; /* So it doesn't block hover on the image */
}

.latest-news .image-wrapper:hover::before {
  animation: shine 0.75s ease-in-out;
}

.latest-news .card .image .date {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}
.latest-news .card .image .date h6 {
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
  border-radius: 50px;
  background-color: #000000af;
}
.latest-news .card .content {
  padding-top: 20px;
}
.latest-news .card .content h2 {
  color: #fff;
  font-size: 22px;
}
.latest-news .card .content p {
  color: #ffffffbd;
  font-size: 16px;
  padding: 10px 0px;
}
.latest-news .card h6 {
  font-size: 18px;
  color: #fff;
  text-decoration: underline;
}

.faq-sec-row {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
  padding: 50px 20px;
}
.home-faq-section .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
}
.home-faq-section .accordion {
  --bs-accordion-bg: transparent;
}
.home-faq-section .accordion-button {
  color: #fff;
}
.home-faq-section .accordion-body p {
  color: #fff;
  font-size: 15px;
}
.home-faq-section .accordion-item {
  border: none;
  border: 1px solid var(--new-secondary);
  margin-bottom: 20px;
  border-radius: 10px;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}

/* footer styles */
.footer-section {
  border-top: 1px solid #ffffff2e;
}
.footer-section .logo {
  padding-bottom: 20px;
}
.footer-section .logo img {
  width: 180px;
}
.footer-section p {
  color: #d8d8d8;
  font-size: 16px;
  margin-bottom: 0px;
}
.footer-section .footer-title {
  margin-bottom: 30px;
}
.footer-section .footer-title h2 {
  font-size: 20px;
  color: #fff;
}
.footer-section .footer-menu-items ul {
  list-style-type: none;
  padding-left: 0px;
}
.footer-section .footer-menu-items ul li {
  color: #d8d8d8;
  font-size: 16px;
  font-weight: 300;
  padding-bottom: 10px;
}
.footer-section .contact-items ul li {
  display: flex;
  align-items: start;
  gap: 10px;
}
.bottom-footer {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  padding: 20px 0px;
  border-top: 1px solid var(--new-secondary);
}
.bottom-footer .right-content ul {
  display: flex;
  gap: 50px;
  padding-left: 0px;
  margin-bottom: 0px;
}
.bottom-footer .right-content ul li {
  color: #d8d8d8;
  font-size: 16px;
  font-weight: 300;
}

.text-reveal-sec {
  min-height: 100%;
}

.reveal-text {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.4;
  color: white;
  font-weight: 300;
  margin: 0;
}

.reveal-line {
  display: block;
  overflow: hidden;
}

.reveal-line-inner {
  display: block;
  clip-path: inset(100% 0 0 0);
}

/* btn-galaxy styles */

.galaxy-cta-section {
  position: relative;
}
.galaxy-cta-section:after,
.galaxy-cta-section:before {
  border-radius: 50%;
  content: "";
  height: 300px;
  position: absolute;
  width: 300px;
  z-index: 1;
}

.galaxy-cta-section:before {
  background: var(--new-secondary);
  filter: blur(100px);
  left: 50%;
  opacity: 0.6;
  top: 55%;
  transform: translate(-50%, -50%);
}
.galaxy-cta-section:after {
  animation-delay: 0ms;
  animation-duration: 30s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: galaxy;
  animation-timing-function: linear;
  background: url(../images/galaxy-dots.png);
  background-position: 50%;
  background-size: contain;
  left: 40%;
  top: 50%;
}

@keyframes galaxy {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}

.galaxy-cta-section .bg-btn {
  position: relative;
  z-index: 99;
}

.navbar-toggler-icon {
  filter: brightness(0) invert(1);
}
.dropdown-item {
  padding: 10px 10px;
  font-weight: 500;
  color: #000000;
  transition: var(--transition);
}
.dropdown-item:hover {
  color: #000;
  font-weight: 500;
  background-color: transparent;
  margin-left: 20px;
  transition: var(--transition);
}
.navbar-nav .dropdown-menu {
  background: rgba(255, 255, 255, 0.932);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0px;
  min-width: 220px;
}
.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
  background-color: transparent !important;
  color: #000;
  margin-left: 10px;
}
.navbar-nav .dropdown-menu li {
  color: #000000;
  padding: 5px 10px;
}
.dropdown-item::before {
  background: var(--primary) !important;
}

/* breadcrumb css */
.breadcrumb {
  padding: 200px 0px 100px 0px;
  text-align: center;
  max-width: 1000px;
  margin: auto;
  position: relative;
}
.breadcrumb h2 {
  font-size: 80px;
  color: #fff;
  position: relative;
  z-index: 2;
  font-weight: 600;
}
.breadcrumb h5 {
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
}
/* Background Stroke Text */
.breadcrumb h2::before {
  content: attr(data-text);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.063);
  z-index: 1;
  white-space: nowrap;
}
.breadcrumb .navigations {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0px 40px 0px;
}
.breadcrumb .navigations svg {
  color: #fff;
}
.breadcrumb .navigations h6 {
  color: #fff;
  margin-bottom: 0px;
}
.breadcrumb .navigations span {
  background-color: #ffffff45;
  border-radius: 50px;
  padding: 5px 10px;
}
.breadcrumb p {
  color: var(--light-text);
}
.breadcrumb button {
  width: fit-content;
  margin: 20px auto;
}
.video-wrapper {
  width: 100%;
  height: 550px;
  overflow: hidden;
  border-radius: 20px;
  margin-top: 30px;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 30px;
}
.breadcrumb .image {
  height: 500px;
  width: 100%;
  margin-top: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}
.breadcrumb .image img {
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
}

.why-choose-us {
  background-image: url(../images/why-choose-bg.jpg);
  background-position: center;
  background-size: cover;
  z-index: 1;
  position: relative;
}
.why-choose-us::before {
  position: absolute;
  content: "";
  background-color: #000;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.why-choose-us .card-items {
  margin-top: 50px;
}
.why-choose-us .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
  padding: 50px;
  border-radius: 20px;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  transition: var(--transition);
}
.why-choose-us .card:hover {
  margin-top: -20px;
  transition: var(--transition);
  border: 1px solid var(--new-secondary);
}
.why-choose-us .card img {
  width: 50px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}
.why-choose-us .card h2 {
  margin-bottom: 20px;
  font-size: 25px;
}
.why-choose-us .card p {
  color: var(--light-text);
}

.management-members .card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.management-members .card:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccff96,
    0 0 10px #a3ccff6e,
    0 0 20px #a3ccff9d,
    0 0 40px #a3ccff30;
  margin-top: -20px;
}

.management-members .card .image img {
  width: 100%;
  height: 300px;
  object-position: top;
  object-fit: cover;
}
.management-members .card .designation {
  background: linear-gradient(90deg, #136fce 0%, #043a72 100%);
}
.management-members .card .designation {
  padding: 10px 0px;
}
.management-members .card .designation h2 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 5px;
}
.management-members .card .designation p {
  color: var(--light-text);
  font-size: 16px;
  text-align: center;
  margin-bottom: 0px;
}
.management-members .management-detail-content {
  padding-left: 30px;
}
.management-members .management-detail-content h1 {
  color: #fff;
  font-size: 35px;
}
.management-members .management-detail-content p {
  color: #fff;
  padding-top: 20px;
}
.management-members .management-detail-content .quote-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  padding: 10px;
  max-width: 70%;
  margin: 30px 0px 20px 0px;
}
.management-members .management-detail-content .quote-box .quote-content {
  display: flex;
  gap: 5px;
  align-items: flex-start;
}
.management-members .management-detail-content .quote-box .quote-content svg {
  font-size: 100px;
  margin-left: -20px;
  color: #ffffff6b;
}
.management-members .management-detail-content .quote-box .quote-content h3 {
  font-size: 18px;
  color: var(--light-text);
  font-weight: 400;
  line-height: 30px;
  padding-top: 10px;
  margin-left: -30px;
}
.management-members .management-detail-content .quote-box h6 {
  font-size: 18px;
  color: #fff;
  display: flex;
  justify-content: end;
  padding-top: 0px;
}
.management-members .management-detail-content p {
  font-size: 17px;
  line-height: 30px;
  color: var(--light-text);
}
.management-members .management-detail-content ul li {
  color: var(--light-text);
}
.management-members .row {
  align-items: flex-start;
}

.management-detail-page .card .image img {
  height: 500px;
}

.network_section .card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.2),
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
  margin-top: 0px;
  min-height: 620px;
  transition:
    box-shadow 0.6s cubic-bezier(0.25, 0.1, 0.25, 1),
    margin-top 0.6s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
  will-change: box-shadow, margin-top;
  border: 1px solid #ffffff3c;
}

.network_section .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  z-index: 0;
  border-radius: 20px;
}

.network_section .card > * {
  position: relative;
  z-index: 1;
}

.network_section .card:hover::before {
  opacity: 1;
}

.network_section .card:hover {
  margin-top: -20px;
  border: 1px solid var(--new-secondary);
    box-shadow:
    0 0 2px #a3ccff7b,
    0 0 5px #a3ccff74,
    0 0 10px #a3ccff5d,
    0 0 20px #a3ccff36;
}
.network_section .card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px;
}
.network_section .card h2 {
  color: #fff;
  padding-bottom: 10px;
  font-size: 25px;
  margin: 0px 0px 20px 0px;
  margin: 0px 0px 20px 0px;
  border-bottom: 1px solid #ffffff4d;
}
.network_section .content {
  padding: 20px;
}
.network_section .card .item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.network_section .card .icon {
  color: #fff;
}
.network_section .card .detail {
  color: #fff;
}
.network_section .card .detail h6 {
  margin-bottom: 5px;
  color: #c0ebff;
  font-size: 18px;
}
.network_section .card .detail p {
  margin-bottom: 0px;
}

.network_section .container {
  max-width: 70%;
  margin: auto;
}

.testimonial-page .card {
  margin-bottom: 30px;
}

.video-testimonial iframe {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
}

.certification-section .item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  min-height: 700px;
  transition: var(--transition);
}
.certification-section .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  filter: grayscale();
}
.certification-section .item:hover {
  margin-top: -20px;
    box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}
.certification-section .item:hover img {
  filter: none;
  transition: var(--transition);
}
.certification-section .item h2 {
  font-size: 25px;
  margin: 20px 0px 10px 0px;
  color: #fff;
}
.certification-section .item p {
  font-size: 16px;
  color: var(--light-text);
}

.contact-page .item {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.contact-page .item:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}
.contact-page .item .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.contact-page .item h6 {
  font-size: 18px;
  color: #fff;
}
.contact-page .item p {
  color: #fff;
  font-size: 22px;
  margin-bottom: 0px;
}

.contact-page .form-container {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  transition: var(--transition);
}
.contact-page .form-container:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}
.contact-page input,
.contact-page textarea {
  width: 100%;
  padding: 15px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}
.contact-page label {
  color: #fff;
  width: 100%;
  margin-bottom: 10px;
}
.contact-page input::placeholder,
.contact-page label::placeholder,
.contact-page textarea::placeholder {
  color: #fff;
}
.contact-page input:active,
.contact-page textarea:active {
  background-color: #fff;
  color: #000;
}
.contact-page input:focus,
.contact-page textarea:focus {
  background-color: #fff;
  color: #000;
}

.contact-page .social-media-links ul {
  display: flex;
  gap: 10px;
  padding-left: 0px;
}
.contact-page .social-media-links h6 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}
.contact-page .social-media-links ul li {
  height: 50px;
  width: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid #fff;
  transition: var(--transition);
  cursor: pointer;
}
.contact-page .social-media-links ul li:hover{
  background: transparent;
  color: #fff;
  border: 1px solid var(--new-secondary);
}

.career-section .item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.career-section .item h2 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-text);
}
.career-section .item ul {
  padding-left: 0px;
  list-style-type: none;
}
.career-section .item ul li {
  color: var(--light-text);
  font-size: 16px;
  padding: 5px 0px;
}
.career-section .item ul li span {
  font-weight: 500;
  color: #fff;
}
.career-section .item .btns {
  display: flex;
  gap: 20px;
  padding-top: 10px;
}

.career-section .row {
  display: flex;
  flex-wrap: wrap;
}

.career-section .col-lg-4 {
  display: flex;
}

.career-section .item {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: var(--transition);
}
.career-section .item:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}

.career-search {
  margin-bottom: 50px;
}
.career-search input {
  max-width: 500px;
  margin: auto;
  padding: 12px 45px 12px 15px; /* space for icon */
  border-radius: 50px;
  border: 1px solid #ccc;

  background-image: url("../images/search-icon.png"); /* your icon */
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 18px;
}

.career-section #noResult {
  text-align: center;
  padding: 50px 0px;
  font-size: 40px;
}
.career-section #resultCount {
  color: #fff;
  text-align: center;
  display: flex;
  margin: auto;
  justify-content: center;
}

.project-page .nav-link {
  background: transparent;
  color: #fff;
  border: 1px solid var(--new-secondary);
  border-radius: 50px;
  min-width: 120px;
  padding: 7px 20px;
}
.project-page .nav {
  gap: 20px;
}
.project-page .nav-link.active {
  background-color: var(--new-secondary);
  color: var(--dark-primary);
}
.project-page .filters {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}
.project-page .filters label {
  color: #fff;
  margin-bottom: 0px;
}
.project-page .filters select {
  width: 140px;
  padding: 5px 20px;
  border-radius: 50px;
}
.project-page .tab-content {
  margin-top: 50px;
}
.project-page .project-item {
  max-width: 100%;
  margin-top: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  transition: var(--transition);
}

.project-page .project-item:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}

.project-page .project-item .category {
  display: flex;
  justify-content: space-between;
}
.project-page .project-item .image {
  height: 350px;
  width: 100%;
  margin-bottom: 20px;
}
.project-page .project-item .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.project-page .project-item .content .category h6 {
  color: var(--new-secondary);
  font-size: 20px;
}
.project-page .project-item .content h2 {
  color: #fff;
  font-size: 25px;
  margin-top: 10px;
}

.latest-blog .item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: var(--transition);
  width: 100%;
}

.latest-blog .item:hover {
  border: 1px solid var(--new-secondary);
  box-shadow:
    0 0 2px #a3ccffab,
    0 0 5px #a3ccff9d,
    0 0 10px #a3ccff9d,
    0 0 20px #a3ccff9d;
}
.latest-blog .image {
  height: 500px;
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.latest-blog .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.latest-blog .content .date {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  width: fit-content;
  padding: 10px 20px;
}
.latest-blog .content .date h6 {
  color: #fff;
  margin-bottom: 0px;
}
.latest-blog .content h2 {
  color: #fff;
  font-size: 30px;
  margin: 20px 0px 10px 0px;
}
.latest-blog .content p {
  color: var(--light-text);
  font-size: 16px;
}
.latest-blog .blog-footer {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.latest-blog .content .author {
  display: flex;
  align-items: start;
  gap: 20px;
}
.latest-blog .content .author img {
  width: 50px;
  padding: 2px;
  background-color: #fff;
  border-radius: 50px;
}
.latest-blog .content .author h6 {
  margin-bottom: 0px;
  color: var(--light-text);
  font-size: 14px;
}
.latest-blog .content .author p {
  margin-bottom: 0px;
  color: #fff;
  font-size: 18px;
}

.blog-posts .image {
  height: 300px;
}
.blog-posts .section-title {
  margin-bottom: 50px;
}
.blog-posts .content h2 {
  font-size: 25px;
}

.blog-posts .col-lg-4 {
  display: flex;
}

.sectors-page .content span {
  font-size: 80px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
.sectors-page .content h2 {
  font-size: 40px;
  color: #fff;
  margin-bottom: 20px;
}
.sectors-page .content p {
  font-size: 18px;
  color: var(--light-text);
  margin-bottom: 30px;
}

.sectors-page .image {
  height: 450px;
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}
.sectors-page .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.sectors-page .image-wrapper {
  position: relative;
  overflow: hidden; /* Keeps the shine clipped to the image area */
  border-radius: 20px;
  height: 100%;
}

.sectors-page .image-wrapper img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block; /* Removes bottom gap on images */
}

/* Shine pseudo-element on the wrapper, not the img */
.sectors-page .image-wrapper::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  pointer-events: none; /* So it doesn't block hover on the image */
}

.sectors-page .image-wrapper:hover::before {
  animation: shine 0.75s ease-in-out;
}

.sectors-page .left-text,
.sectors-page .right-text {
  display: flex;
  align-self: center;
  margin-bottom: 100px;
}
.sectors-page .right-text .content {
  padding-left: 30px;
}

.service-details .image {
  height: 100%;
  width: 100%;
}
.service-details .image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.service-details h6 {
  color: #fff;
  font-size: 25px;
  margin-bottom: 20px;
}
.service-details p {
  color: var(--light-text);
  font-size: 18x;
}
.service-details .section-title {
  margin-bottom: 30px;
}

.key-features .item {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  margin-bottom: 30px;
}
.key-features .item .icon {
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.key-features .item .icon svg {
  color: #fff;
  font-size: 20px;
}
.key-features .item h2 {
  color: #fff;
  font-size: 25px;
}
.key-features .item p {
  color: var(--light-text);
  font-size: 18px;
}
.key-features .section-title {
  margin-bottom: 30px;
}

.key-features .col-lg-4 {
  display: flex;
}
.detail-blog-page h1 {
  padding: 20px 0px;
}
.detail-blog-page h6,
.detail-blog-page h5,
.detail-blog-page h4,
.detail-blog-page h3,
.detail-blog-page h2,
.detail-blog-page h1 {
  color: #fff;
}
.project-detail-content .content h1 {
  font-size: 30px;
}
.project-detail-content .content h2 {
  font-size: 27px;
}
.project-detail-content .content h3 {
  font-size: 24px;
}
.project-detail-content .content h4 {
  font-size: 21px;
}
.project-detail-content .content h5 {
  font-size: 20px;
}
.project-detail-content .content h6 {
  font-size: 19px;
}

.detail-blog-page p {
  font-size: 18px;
}
.detail-blog-page ul li {
  color: var(--light-text);
}

.detail-blog-page .blog-right-posts .item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.detail-blog-page .item .image {
  height: 600px;
}
.detail-blog-page .blog-right-posts .item .image {
  width: 200px;
  height: 100px;
}
.detail-blog-page .blog-right-posts .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.detail-blog-page .blog-right-posts .item .content h2 {
  font-size: 15px;
}
.detail-blog-page .blog-right-posts .section-title h2 {
  font-size: 25px;
}
.detail-blog-page h3,
.detail-blog-page h2,
.detail-blog-page h4,
.detail-blog-page h5 {
  margin-top: 20px;
}
.detail-blog-page .content{
  color: #fff;
}
.detail-blog-page .item{
  padding-bottom: 50px;
}
.detail-blog-page ol {
  color: #fff;
}
.detail-blog-page li {
  color: #fff;
}
.detail-blog-page strong {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.detail-blog-page a {
  color: #fff;
}
.detail-blog-page table {
  border-collapse: collapse;
  margin-bottom: 20px;
}

.detail-blog-page table,
.detail-blog-page th,
.detail-blog-page td {
  border: 1px solid var(--new-secondary);
  padding: 5px 20px;
  color: #fff;
}

/* 🔥 FORCE BOOTSTRAP MODAL TO TOP */
.modal {
  z-index: 99999 !important;
}

.modal-backdrop {
  z-index: 99998 !important;
}

.filter-year select {
  padding: 8px 35px 8px 10px; /* top right bottom left */
}
select {
  appearance: none;
}

.filter-year select {
  appearance: none;
  padding: 8px 40px 8px 12px;
  border-radius: 20px;
  background-image: url("../images/dropdown-icon.png"); /* your icon */
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.project-detail-page .project-detail-content {
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}
.project-detail-page .item {
  padding: 0px;
  margin-bottom: 0px;
}
.project-detail-page .project-detail-content img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
.project-detail-page .project-detail-content .image {
  margin-bottom: 0px;
  position: relative;
  height: fit-content;
}
.project-detail-page .owl-nav {
  display: none;
}
.project-detail-page .owl-dots {
  position: absolute;
  bottom: 10px; /* space from bottom */
  left: 50%;
  transform: translateX(-50%);
}
.project-detail-page .category-and-location {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0px 0px 0px;
}
.project-detail-page .category-and-location h6 {
  color: var(--new-secondary);
  font-size: 25px;
}

.scroll-top-btn {
  background: var(--primary);
  border: 1px solid var(--new-secondary);
  color: #fff;
  font-size: 20px;
}
.whatsapp-btn {
  background: #1eb557;
  border: 1px solid #1eb557;
  color: #fff;
  font-size: 20px;
}
.call-btn {
  background: var(--new-secondary);
  border: 1px solid var(--new-secondary);
  color: #fff;
  font-size: 20px;
}
.scroll-top-btn,
.floating-btn {
  position: fixed;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 999;
  padding: 10px;
  border-radius: 50px;
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Individual positions */
.scroll-top-btn {
  bottom: 80px;
}

.whatsapp-btn {
  bottom: 20px;
}

.call-btn {
  display: none;
}

/* Show when active */
.scroll-top-btn.active,
.floating-btn.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover,
.floating-btn:hover {
  transform: scale(1.1);
}

.theme-modal-popup .modal-content {
  background: var(--gradient);
  padding: 20px;
  border-radius: 20px;
  color: #fff;
  border: 1px solid var(--new-secondary);
}
.theme-modal-popup input,
.theme-modal-popup select,
.theme-modal-popup textarea {
  background: transparent;
  border: 1px solid var(--new-secondary);
  padding: 10px 15px;
  border-radius: 10px;
  transition: all 0.5s ease;
  background-color: #fff;
  color: #000;
  margin-bottom: 10px;
}

/* Optional: also apply on focus */
.theme-modal-popup input:focus,
.theme-modal-popup textarea:focus,
.theme-modal-popup select:focus {
  background-color: #fff;
  color: #000;
}
.theme-modal-popup input::placeholder,
.theme-modal-popup textarea::placeholder,
.theme-modal-popup select::placeholder {
  background-color: #fff;
  color: #000;
}
.theme-modal-popup .modal-content .text-muted {
  color: var(--light-text) !important;
}
.theme-modal-popup .btn-close {
  filter: brightness(0) invert(1);
  opacity: 1;
}
.theme-modal-popup .modal-header {
  margin-bottom: 30px;
}
.theme-modal-popup .modal-footer {
  border-top: 0px !important;
  justify-content: start;
}
input:-internal-autofill-selected {
  background-color: transparent !important;
}

/* instgram-feed-page page */
.instgram-feed-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.instgram-feed-page .post {
  display: flex;
  flex-direction: column;
  width: 30%;
  margin-bottom: 30px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}
.instgram-feed-page .post img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}
.instgram-feed-page .post video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 20px;
}
.instgram-feed-page .post .caption {
  color: #fff;
  margin: 20px 0px;
}

/* .instgram-feed-page .post button{
  width: fit-content;
} */

.instagram-feed-pagination {
  margin: auto;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 50px;
}
.instagram-feed-pagination a {
  width: 50px;
  height: 50px;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--new-secondary);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.5s ease;
}
.instagram-feed-pagination .active-page {
  background-color: var(--new-secondary);
  color: #000;
  font-weight: 600;
}
.instagram-feed-pagination a:hover {
  background-color: var(--new-secondary);
  color: #000;
}
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20,40 70,90 120,40' fill='none' stroke='black' stroke-width='20'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center; /* move arrow */
  background-size: 12px;

  padding-right: 45px !important; /* create space */
}
.faq-blog .accordion-header {
  margin: 0px !important;
}
.faq-blog .section-title h2 {
  line-height: normal !important;
  margin-bottom: 20px;
}
.detail-blog-page .faq-sec-row {
  padding: 20px !important;
}
.detail-blog-page .faq-sec-row .accordion-body p {
  margin-bottom: 0px !important;
}

.career-description-popup .modal-body strong{
  font-weight: 500;
  color: #fff;
}
.career-description-popup p{
  color: var(--light-text);
}
.career-description-popup ul li{
  color: var(--light-text);
}
.career-description-popup .modal-title{
  font-size: 30px;
}
.career-description-popup .modal-body h1{
  font-size: 30px;
}
.career-description-popup .modal-body h2{
  font-size: 25px;
}
.career-description-popup .modal-body h3{
  font-size: 22px;
}
.career-description-popup .modal-body h4{
  font-size: 20px;
}
.career-description-popup .modal-body h5{
  font-size: 18px;
}