:root {
  --primary-color: #3024ae;
  --secondary-color: #4338ca;
  --accent-color: #6366f1;
  --light-blue: #e0e7ff;
  --dark-bg: #0f172a;
  --text-light: #f8fafc;
  --text-dark: #1e293b;
  --gradient: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  --card-shadow: 0 20px 40px rgba(48, 36, 174, 0.15);
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--light-blue);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--accent-color) 100%
  );
  transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
  background: var(--primary-color);
}

::-webkit-scrollbar-corner {
  background: var(--light-blue);
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) var(--light-blue);
  overflow-x: hidden;
}

/* Custom Text Selection Styles */
::selection {
  background: var(--accent-color);
  color: var(--text-light);
  text-shadow: none;
}

::-moz-selection {
  background: var(--accent-color);
  color: var(--text-light);
  text-shadow: none;
}

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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Navbar */

.navbar {
  padding: 1rem 0;
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: transparent; /* Fully transparent when at top */
  backdrop-filter: none; /* Remove blur when transparent */
  -webkit-backdrop-filter: none; /* Remove blur for Safari */
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent when scrolled */
  backdrop-filter: blur(12px); /* Apply blur when scrolled */
  -webkit-backdrop-filter: blur(12px); /* Apply blur for Safari */
}

.navbar-brand .logo {
  max-width: 151px;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 1rem;
  position: relative;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background: var(--accent-color);
  transition: 0.3s;
  transform: translateX(-50%);
}

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

/* Button */
.btn-primary-custom {
  background: var(--primary-color);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  transition: 0.3s;
  text-decoration: none;
      text-align: center;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(48, 36, 174, 0.4);
  color: white;
}

/* Side Menu */
.side-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100%;
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 2rem;
  transition: 0.4s ease;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side-menu.active {
  right: 0;
}

.side-menu .close-btn {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  align-self: flex-end;
}

.side-nav {
  list-style: none;
  padding: 0;
}

.side-nav li {
  margin: 1rem 0;
}

.side-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.side-nav a:hover {
  color: var(--accent-color);
}

/* Overlay */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1090;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 991px) {
  #navbarNav {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
  height: 100dvh;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.hero-swiper {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide .hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 4s ease;
  /* slow zoom */
  z-index: 0;
}

.hero-slide.zoom .hero-img {
  transform: scale(1.1);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: capitalize;
}

.svg-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero-svg {
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

#hero-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.9;
}

/* About Section */
.about-section {
  padding: 8rem 0;
  background: linear-gradient(90deg, #00000012 1px, transparent 1px),
    linear-gradient(0deg, #00000012 1px, transparent 1px), #ffffff;
  background-size: 165px 165px;
  position: relative;
  overflow: hidden;
}

.about-section .section-title {
  text-align: left;
  margin-bottom: 4rem;
}

.about-section .section-title h2 {
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  color: #3024ae;
}

.about-section .section-title h3 {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 3.875rem);
  text-transform: capitalize;
  color: #000;
  margin-bottom: 1rem;
  position: relative;
}

.about-section .section-title p {
  font-weight: 400;
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  text-transform: capitalize;
  color: #2d2d2d;
}

.mission-vision-card {
  padding: 3rem 2rem;
  border-radius: 20px;
  height: 100%;
  border-top: 4px solid transparent;
  transition: all 0.3s ease;
}

.mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 6px 18px rgb(196 192 235 / 48%);
  border-top: 4px solid #3ab4ff;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /* box-shadow: var(--glass-shadow); */
}

.mission-vision-card h4 {
  color: #000000;
  font-weight: 700;
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 0;
}

.mission-vision-card p {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #2d2d2d;
}

.about-image-container {
  position: relative;
  overflow: hidden;
  transform: rotate(50deg);
  bottom: 8px;
  right: 0;
  clip-path: ellipse(36% 50% at 50% 50%);
  width: 700px;
}

.about-image-container img {
  width: 100%;
  height: 100%;
  /* transform: rotate(-310deg); */
  transform: rotate(-50deg);

  object-fit: cover;
}

.wave-shape {
  position: absolute;
  bottom: -171px;
  left: -132px;
  width: 830px;
  height: auto;
  transform: rotate(-10deg);
}

@media (max-width: 1024px) {
  .about-section .about-right-container {
    margin-left: 80px;
  }

  .mission-vision-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .wave-shape {
    display: none;
  }

  .about-section .section-title h2 {
    font-size: 2.5rem;
  }

  .mission-vision-card {
    padding: 1.8rem 1.4rem;
  }
}

@media (max-width: 768px) {
}

/* Products Section */
.products-section {
  background: #000000;
  color: var(--text-light);
  max-height: 569px;
  padding-top: 130px;
  margin-bottom: 230px;
  position: relative;
  overflow-x: clip;
}

.products-section .section-title h2 {
  color: var(--text-light);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.875rem);
  text-transform: capitalize;
  margin-bottom: -60px;
}

.product-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 516px;
  /* full card height */
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.product-card-content {
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 40%, transparent 100%);
  color: var(--text-light);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
}

.product-card-content h5 {
  font-weight: 800;
  font-size: 20px;
  text-transform: capitalize;
  color: #fff;
  margin-bottom: 0.5rem;
  text-align: center;
  margin-top: auto;
}

.product-card-content p {
  margin-top: 0.5rem;
  opacity: 0;
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
  color: #ffffffcc;
  transform: translateY(20px);
  transition: all 0.4s ease;
  text-align: center;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card:hover .product-card-content {
  /* bottom: 0px; */
  transform: translateY(0%);
}

.product-card:hover .product-card-content p {
  opacity: 1;
}

.products-swiper .swiper-wrapper {
  padding: 120px 0;
  padding-bottom: 70px;
}

.products-bullets {
  display: block;
}

.decoration-title {
  font-weight: 800;
  font-size: clamp(3rem, 15vw, 15rem);
  line-height: 1.1;
  text-transform: capitalize;
  position: absolute;
  top: 18px;
  width: 100%;
  pointer-events: none;
  text-align: center;
  white-space: nowrap;
  overflow: visible;
  color: #ffffff12;
}

.shiny-text {
  position: relative;
  display: inline-block;
}

.shiny-text::after {
  content: attr(data-text);
  position: absolute;
  font-size: clamp(3rem, 15vw, 15rem);
  top: 0;
  left: 0;
  width: 100%;
  line-height: 1.1;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.713) 50%,
    rgba(255, 255, 255, 0) 60%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s linear infinite;
  pointer-events: none;
  text-decoration: ;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: -100%;
  }
}

.decoration-img {
  position: absolute;
  left: 0;
  bottom: -65%;
  pointer-events: none;
}

/* Custom Swiper buttons */
.products-section .swiper-button-next,
.products-section .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  top: 24px;
  cursor: pointer;
  color: #fff !important;
}

.products-section .swiper-button-next::after,
.products-section .swiper-button-prev::after {
  content: "";
  position: absolute;
  font-size: 18px;
  color: #ededed4d !important;
}

.products-section .swiper-button-next:hover,
.products-section .swiper-button-prev:hover {
  background: #ededed33;
  border: 1px solid #ffffff80;
  color: #ffffff80;
  transform: scale(1.05);
}

.products-section .swiper-button-next {
  right: 60px;
  /* adjust as needed */
}

.products-section .swiper-button-prev {
  right: 160px;
  /* adjust as needed */
  left: auto;
}

span.swiper-pagination-bullet {
  background: #3024ae;
}

@media (max-width: 768px) {
  .products-section .swiper-button-next,
  .products-section .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 74px;
  }

  .products-section .swiper-button-next {
    right: 20px;
  }

  .products-section .swiper-button-prev {
    right: 80px;
  }
}

@media (max-width: 500px) {
  /* .products-swiper .swiper-slide {
    width: 100% !important;
  } */
}

/* Projects Section */
.projects-section {
  overflow: hidden;
  padding: 8rem 0;
}

.projects-section .section-title h2 {
  font-weight: 600;
  font-size: clamp(16px, 1.125rem + 0.5vw, 20px);
  text-transform: capitalize;
  color: var(--primary-color);
  text-align: center;
}

.projects-section .section-title p {
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3.875rem);
  text-transform: capitalize;
  color: #000000;
  text-align: center;
}

.project-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.swiper-slide-next .project-card,
.swiper-slide-prev .project-card {
  opacity: 0.8;
}

.swiper-slide-next .project-card::before,
.swiper-slide-prev .project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(173, 173, 173, 0.83) 100%
  );
  transition: background 0.3s ease;
  z-index: 1;
}

.project-card:hover {
  transform: scale(1.05);
}

.project-content {
  position: absolute;
  top: 20%;
  left: 10%;
  padding: 62px 50px;
  color: white;
  z-index: 2;
  width: fit-content;
  max-width: 400px;

  background: rgba(0, 0, 0, 0.15);
  /* Doped with a subtle black tint for a cooler, more mysterious depth while maintaining transparency */
  backdrop-filter: blur(20px) saturate(120%) brightness(110%) contrast(105%);
  /* Enhanced with slight contrast boost for sharper modern edges */
  -webkit-backdrop-filter: blur(20px) saturate(120%) brightness(110%)
    contrast(105%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in;
}

.project-card:hover .project-content {
  transform: scale(1.05);
}

.project-content h5 {
  font-weight: 700;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.5;
  text-transform: capitalize;
  /*margin-bottom: 26px;*/
}

.project-content p {
  font-weight: 400;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  text-transform: capitalize;
  display:none;
}

@media (max-width: 768px) {
  .project-content {
    padding: 30px 20px;
    max-width: 300px;
    position: absolute;
    left: 5%;
  }
}

@media (max-width: 375px) {
  .project-content {
    padding: 30px 18px;
    max-width: 250px;
    position: absolute;
    left: 5%;
  }
}

/* Custom Swiper buttons */
.projects-section .swiper-button-next,
.projects-section .swiper-button-prev {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  top: 50%;
  cursor: pointer;
  color: #fff !important;
}

.projects-section .swiper-button-next::after,
.projects-section .swiper-button-prev::after {
  content: "";
  position: absolute;
  font-size: 18px;
  color: #ededed4d !important;
}

.projects-section .swiper-button-next:hover,
.projects-section .swiper-button-prev:hover {
  background: #ededed33;
  border: 1px solid #ffffff80;
  color: #ffffff80;
  transform: scale(1.05);
}

.projects-section .swiper-button-next {
  right: -100px;
}

.projects-section .swiper-button-prev {
  left: -100px;
}

.projects-section .swiper-pagination {
  margin-bottom: -50px;
}

@media (max-width: 1024px) {
  .projects-section .swiper-button-next,
  .projects-section .swiper-button-prev {
    width: 40px;
    height: 40px;
    top: 50%;
  }

  .projects-section .swiper-button-next {
    right: 10px;
  }

  .projects-section .swiper-button-prev {
    left: 10px;
  }
}

@media (max-width: 450px) {
  .projects-section .swiper-button-next,
  .projects-section .swiper-button-prev {
    display: none;
  }
}

/* Why Choose Us Section */
.why-choose-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 150px 0;
}

/* LPC Background Text */
.lpc-bg-text {
  position: absolute;
  font-size: 69rem;
  font-weight: 900;
  color: #3ab4ff;
  opacity: 0.05;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  user-select: none;
  pointer-events: none;
}

.why-choose-img {
  transform: rotate(-60deg) !important;
}

.main-image {
  clip-path: ellipse(30% 50% at 50% 50%);
  max-width: 755px;
  height: 600px;
  width: 100%;
}

.main-image-container {
  transform: rotate(45deg);
}

/* 
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
} */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  margin-top: 80px;
}

.section-subtitle {
  color: var(--primary-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.2;
  color: #000000;
}

.section-description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  color: #202020;
  margin-bottom: 3rem;
  max-width: 500px;
  text-align: start;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: #3024ae;
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(48, 36, 174, 0.3);
  color: white;
  text-decoration: none;
}

@media (max-width: 750px) {
  .section-description {
    max-width: 400px;
  }
}

/* Right Content */
.right-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.left-content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Main Image Container */
.decor-main {
  transform: scale(-1);
}

/* Decorative Elements */
.decor-element {
  position: absolute;
  z-index: 3;
}

.why-choose-section .about-right-container {
  position: relative;
  left: -50%;
  /* transform: translateX(-50%); */
  transform: rotate(8deg);
  scale: 1.2 !important;
  pointer-events: none;
}

.why-choose-section .about-image-container {
  position: relative;
  overflow: visible;
  transform: rotate(50deg);
  bottom: -5px;
  right: -207px;
  clip-path: ellipse(30% 52% at 50% 50%);
  width: 700px;
}

.wave-shape-main {
  position: absolute;
  bottom: -91px;
  left: 136px;
  width: 550px;
  height: auto;
  transform: rotate(-6deg);
}

/* Solutions Box */
.solutions-box {
  position: absolute;
  /* top: 240px; */
  /* right: 40px; */
  background: #ffffff;
  padding: 52px;
  border-radius: 20px;
  box-shadow: 0px 0px 35px 0px #3024ae12;
  max-width: 384px;
  z-index: 4;
  margin-top: 300px;
  margin-left: 550px;
  width: 100%;
}

.solutions-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  text-transform: capitalize;
  margin-bottom: 1rem;
}

.solutions-text {
  color: #202020;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
  .solutions-box {
    margin-top: 300px;
    margin-left: 150px;
    text-align: left;
  }

  .why-choose-section .about-right-container {
    scale: 0.9 !important;
    left: -50%;
  }
}

@media (max-width: 768px) {
  .lpc-bg-text {
    font-size: 10rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .main-image-container {
    width: 350px;
    height: 280px;
  }

  .why-choose-section .about-right-container {
    left: -40%;
    bottom: 120px;
  }

  .why-choose-section {
    padding: 50px 0;
  }

  .solutions-box {
    margin-top: 0px;
  }
}

/* Join Us Section */
.join-us-section {
  padding: 6rem 0;
  color: #000000;
}

.right-left-border {
  border-left: 1px solid #00000033;
  border-right: 1px solid #00000033;
}

.dot-line {
  display: inline-block;
  width: 95px;
  height: 2px;
  /* line thickness */
  background-color: black;
  position: relative;
}

.dot-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  /* dot size */
  height: 8px;
  background-color: black;
  border-radius: 50%;
}

.flip-x {
  transform: scaleX(-1);
  display: inline-block;
  /* ensure transform works */
}

.join-title h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 3.25rem);
  text-transform: capitalize;
  text-wrap: nowrap;
}

.join-title p {
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  text-transform: capitalize;
  color: #202020;
}

.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
  max-width: 520px;
}

.form__field {
  font-family: inherit;
  width: 100%;
  border: none;
  border-bottom: 2px solid #00000033;
  /* Default border color */
  outline: 0;
  font-size: 17px;
  color: #202020b2;
  /* Default text color */
  padding: 7px 0;
  background: transparent;
  transition: border-color 0.2s, color 0.2s;
}

.form__field::placeholder {
  color: transparent;
}

.form__field:placeholder-shown ~ .form__label {
  font-size: 17px;
  cursor: text;
  top: 20px;
  left: 34%;
}

.form__label {
  position: absolute;
  top: 0;
  display: block;
  transition: 0.2s;
  font-size: 18px;
  color: #202020b2;
  /* Match label to default text color */
  pointer-events: none;
  text-transform: capitalize;
  font-weight: 400;
  left: 38%;
}

.form__field:focus {
  padding-bottom: 6px;
  font-weight: 400;
  border-width: 2px;
  border-image: var(--gradient);
  /* Uses palette gradient */
  border-image-slice: 1;
  color: #000;
}

.form__field:focus ~ .form__label {
  position: absolute;
  top: -10px;
  display: block;
  transition: 0.2s;
  font-size: 17px;
  color: var(--accent-color);
  /* Uses accent color */
  font-weight: 700;
  left: 34%;
}

/* reset input */
.form__field:required,
.form__field:invalid {
  box-shadow: none;
}

.join-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.email-submit-btn {
  position: relative;
  border: 1px solid #000 !important;
  background: #fff;
  color: #000;
  border-radius: 50px;
  padding: clamp(8px, 1.2vw, 12px) clamp(16px, 2vw, 22px)
    clamp(8px, 1.2vw, 12px) clamp(14px, 1.8vw, 20px);
  min-width: clamp(140px, 18vw, 180px);
  font-weight: 800;
  font-size: clamp(14px, 1.5vw, 18px);
  text-transform: capitalize;
  width: fit-content;
  transition: all 0.3s ease;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.email-submit-btn:hover {
  background: var(--dark-bg);
  color: #fff;
  transform: translateX(-4px);
}

.email-submit-btn .email-submit-text {
  transition: all 0.3s ease-in;
}

.email-submit-btn:hover .email-submit-text {
  transform: translateX(-6px);
}

.email-submit-btn i.send-icon {
  position: absolute;
  right: 22px;
  opacity: 0;
  transform: translateY(0);
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* Icon appears on hover */
.email-submit-btn:hover i.send-icon {
  opacity: 1;
}

.email-submit-btn.active i.send-icon {
  animation: flyOut 0.6s ease forwards;
}

@keyframes flyOut {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  50% {
    transform: translate(20px, -20px);
    opacity: 1;
  }

  100% {
    transform: translate(50px, -50px);
    opacity: 0;
  }
}

@media screen and (max-width: 767px) {
  .right-left-border {
    border: none;
  }
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
}

.partners-section .section-title {
  padding: 24px 0;
  border-bottom: 1px solid #00000033;
  border-top: 1px solid #00000033;
}

.partners-section .section-title h2 {
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 3.25rem);
  text-transform: capitalize;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.partner-logo {
  transition: all 0.3s ease;
  width: auto;
  height: auto;
  object-fit: contain;
  max-width: 80%;
  display: block;
  margin: 0 auto;
}

.partner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  /* adjust height for consistent alignment */
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.partners-swiper {
  padding-bottom: 80px;
}

.partners-swiper .swiper-slide {
  border-left: 1px solid #00000033;
}

.partners-swiper .swiper-slide-active {
  border: none;
}

/* Footer */
/* ================= FOOTER BASE ================= */
.footer {
  background: #000;
  color: var(--text-light, #fff);
  padding: 100px 0 40px 0;
  overflow: hidden;
}

.footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 140px;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.decor-footer {
  position: absolute;
  top: -16px;
  right: -30px;
  width: 100%;
  max-width: 713px;
  pointer-events: none;
}

.contact-form {
  padding: 50px;
  border-radius: 12px;
  border: 1px solid rgba(58, 180, 255, 0.4);
  background: radial-gradient(
      circle at 100px calc(100% - 100px),
      rgba(47, 36, 174, 0.53) 0%,
      rgba(48, 36, 174, 0.4) 10%,
      rgb(0 0 0 / 31%) 25%
    ),
    rgba(0, 0, 0, 0.15);
  background-repeat: no-repeat;
  background-size: cover;

  /* Glassmorphism blur */
  backdrop-filter: blur(20px) saturate(120%) brightness(110%) contrast(105%);
  -webkit-backdrop-filter: blur(20px) saturate(120%) brightness(110%)
    contrast(105%);

  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.input-container {
  position: relative;
  margin-bottom: 40px;
}

.input-field {
  display: block;
  width: 100%;
  padding: 10px 5px;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  outline: none;
  background-color: transparent;
  color: #fff;
}

.input-label {
  position: absolute;
  top: 10px;
  left: 5px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  transition: all 0.3s ease;
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.input-field:focus + .input-label,
.input-field:not(:placeholder-shown) + .input-label {
  top: -15px;
  font-size: 12px;
  color: #ffffff;
}

.input-field:focus + .input-label + .input-highlight {
  width: 100%;
}

textarea.input-field {
  resize: none;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-left p {
  font-weight: 400;
  font-size: clamp(0.875rem, 1.4vw, 1.125rem);
  text-transform: capitalize;
  color: #d1d1d1;
}

.contact-form button {
  width: 100%;
}

.footer iframe {
  border-radius: 12px;
  border: 0;
  height: 218px;
  filter: sepia(25%) saturate(600%) hue-rotate(180deg) brightness(65%)
    contrast(190%);
}

.footer-left,
.footer-right {
  flex: 1;
  min-width: 0;
  /* prevents flex item overflow */
  padding: 0 20px;
  /* optional, for spacing */
  z-index: 5;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #fcfcfc33;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #ffffff;
  font-size: 14px;
  margin: auto;
  margin-top: 44px;
}

.footer-bottom p {
  margin: 0;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: -webkit-fill-available;
}

.footer-left img {
  max-width: 151px;
  margin-bottom: 40px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin: 12px 0;
}

.social-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  /* perfect circle */
  border: 1px solid #ffffff80;
  color: #ffffff80;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  /* background stays inside circle */
  transition: color 0.3s ease, transform 0.3s ease, border-color 0.4s ease 0.2s;
  /* delay border */
}

/* Circular background animation */
.social-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #3024ae;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease;
  z-index: 0;
}

/* Hover styles */
.social-icon:hover {
  color: #fff;
  border-color: #3024ae;
  /* border changes slower */
  transform: translateY(-2px);
}

.social-icon:hover::before {
  transform: scale(1);
  /* background expands first */
}

/* Icon above background */
.social-icon i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

@media (max-width: 1024px) {
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .footer-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .footer-left,
  .footer-right {
    padding: 0;
    width: 100%;
  }
}

/* ================== Swiper Customization ====================== */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background-color: #ededed26;
  border: 1px solid #ffffff4d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  color: #ffffff4d !important;
  font-size: 16px !important;
  font-weight: 300 !important;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background-color: #ededed;
  color: #000;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  transition: transform 0.3s, background-color 0.3s;
}

.hero-swiper .swiper-button-next::after {
  transform: rotate(45deg);
  right: 50%;
  top: 50%;
  margin-right: 8px;
  margin-top: -1px;
}

.hero-swiper .swiper-button-prev::after {
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin-left: 8px;
  margin-top: -1px;
}

.hero-swiper .swiper-button-next {
  right: 20px;
}

.hero-swiper .swiper-button-prev {
  left: 20px;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  color: #000 !important;
}

.hero-swiper .swiper-pagination-bullet {
  background: var(--accent-color);
}

.swiper-pagination-bullet-active {
  background: var(--primary-color);
  width: 22px;
  height: 8px;
  border-radius: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
  .contact-form {
    padding: 18px 20px;
  }

  .navbar {
    padding: 0 !important;
  }

  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }

  .navbar-nav .nav-link {
    margin: 0.5rem 0;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.glass-cards-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  bottom: 300px;
}

.single-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px 70px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--glass-shadow);
  max-width: 1200px;
  margin: 0 auto;

  /* background: var(--glass-bg, rgba(255, 255, 255, 0.1)); */
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.2));
  color: var(--text-light, #f8fafc);
  max-width: 1200px;
  margin: 0 auto;
}

.single-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: all 0.6s;
}

.single-glass-card:hover::before {
  left: 100%;
}

.single-glass-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(48, 36, 174, 0.3);
}

.items-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.philosophy-item {
  text-align: left;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
  border-radius: 15px;
  position: relative;
}

.philosophy-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.philosophy-item h4 {
  font-weight: 800;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  text-transform: capitalize;
  margin-bottom: 1rem;
  color: #ffffff;
}

.philosophy-item p {
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 400;
  color: #ffffffcc;
  line-height: 1.5;
  margin: 0;
  text-transform: capitalize;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
}

.about-right-container {
  margin-left: 200px;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (max-width: 992px) {
  .items-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }

  .philosophy-item:nth-child(2)::after,
  .philosophy-item:nth-child(4)::after {
    display: none;
  }

  .philosophy-item:nth-child(1)::after,
  .philosophy-item:nth-child(3)::after {
    right: -0.5rem;
  }
}

@media (max-width: 769px) {
  .single-glass-card {
    padding: 2rem 1.5rem;
    bottom: 10px;
  }

  .glass-cards-container {
    bottom: 400px;
  }

  .items-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .philosophy-item::after {
    display: none;
  }

  .philosophy-item h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .glass-cards-container {
    bottom: 300px;
  }

  .hero-swiper .swiper-button-next,
  .hero-swiper .swiper-button-prev {
    display: none;
  }

  .why-choose-section .about-right-container {
    display: none;
  }

  .solutions-box {
    margin: 0 !important;
    margin-top: 30px !important;
    display: block;
    position: unset;
    padding: 18px 14px;
  }

  .single-glass-card {
    padding: 0 !important;
    bottom: 38px;
  }

  .philosophy-item {
    padding: 1rem 0.5rem;
  }

  .philosophy-item h4 {
    font-size: 1.1rem;
  }

  .items-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}
