/* ✅ GLOBAL STYLES & BASE RESETS */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: w;
 
}

body {
  color: #fff;
  font-family: poppins;
  overflow-x: hidden;
  background-color:#2c2c2c;
}

/* ✅ NAVIGATION BAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 3rem;
  position: fixed;
  top: 0;
  width: 100vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
}

.navbar span {
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 50px;
  background: linear-gradient(90deg, transparent, #fff);
  animation: animate 90s infinite linear;
}

@keyframes animate {
  0% {
    left: 0;
    transform: translate(-100%);
  }

  100% {
    left: 100%;
    transform: translate(0%);
  }
}

.logo {
  text-transform: capitalize;
  font-size: 30px;
  cursor: pointer;
  font-family: w;
}

/* ✅ LISTS & LINKS RESET */
li {
  list-style: none;
}

a {
  color: #fff;
  text-decoration: none;
}


/* ✅ LOGO STYLES */
.logo-link {
  display: inline-block;
  max-width: 100%;
}

.logo-img {
  height: auto;
  width: 100%;
  max-width: 150px;
  display: block;
}

@media (max-width: 768px) {
  .logo-img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .logo-img {
    max-width: 100px;
  }
}



/* ✅ SECTION & VIDEO WRAPPER */
.wrapper {
  display: flex;
}

section {
  width: 100vw;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.video-section video,
.video-section img {
  height: 100vh;
  width: 100vw;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: -2;
}

.img-container {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
}

.img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* ✅ BOXES / GALLERY SECTION */
.section {
  background-color: #141414;
  padding: 7rem;
}

.boxes-container {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.columns {
  display: flex;
  gap: 1.5rem;
  position: relative;
}

.col img {
  object-fit: cover;
}

.col-1 {
  display: flex;
  gap: 1.5rem;
  flex: 5;
}

.col-2 {
  margin: auto;
  flex: 1.5;
}

.col-3 {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  flex: 4;
}

.col-2 h1 {
  font-family: w;
  font-size: 100px;
  text-transform: capitalize;
  position: absolute;
  top: 50px;
  left: 47%;
  z-index: 100;
}

.col-2 span {
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.7;
}

.line {
  height: 1px;
  width: 50px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.text-box p {
  font-size: 12px;
  line-height: 1.9;
  padding-bottom: 1rem;
  opacity: 0.7;
}

/* ✅ BOX-SPECIFIC IMAGE STYLES */
/* box1 */
.box1 .col-1 img:first-child {
  width: 150px;
  height: 180px;
  transform: translateY(-30px);
}

.box1 .col-1 img:nth-child(2) {
  width: 380px;
  height: 430px;
}

.box1 .col-2 h1 {
  top: 0;
}

.box1 .col-3 img:first-child {
  width: 320px;
  height: 170px;
}

.box1 .col-3 img:nth-child(2) {
  width: 150px;
}

.box1 .col-3 img:nth-child(3) {
  width: 200px;
  height: 200px;
}

/* box2 */
.box2 .col-1 img:first-child {
  width: 200px;
  height: 250px;
  transform: translateY(200px);
}

.box2 .col-1 img:nth-child(2) {
  height: 380px;
  width: 300px;
}

.box2 .col-3 img:nth-child(1) {
  height: 300px;
  width: 220px;
}

.box2 .col-3 img:nth-child(2) {
  width: 180px;
  height: 200px;
  align-self: flex-end;
}

.box2 .col-3 img:nth-child(3) {
  width: 380px;
  height: 200px;
  transform: translateX(80px);
}

/* box3 */
.box3 .col-1 {
  display: flex;
  flex-wrap: wrap;
}

.box3 .col-1 img:nth-child(1) {
  width: 200px;
  height: 280px;
  transform: translateX(30px);
}

.box3 .col-1 img:nth-child(2) {
  width: 180px;
  height: 200px;
  margin-left: 80px;
  align-self: center;
}

.box3 .col-1 img:nth-child(3) {
  width: 280px;
  height: 180px;
}

.box3 .col-1 img:nth-child(4) {
  width: 250px;
  height: 180px;
  transform: translateY(-30px);
}

.box3 .col-3 img {
  width: 400px;
  height: auto;
}

/* ✅ TEXT OVERLAY / SLIDE SECTION */
.text-content {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
 
}

.title {
  font-family: w;
  width: 450px;
  position: relative;
  height: 110px;
  overflow: hidden;
  font-family: poppins;
}

.bg {
  font-size: 40px;
}
.bg bottom{
  font-size: 80px;
}
.sm {
  font-size: 40px;
  height: 70px;
}

.left {
  left: -25%;
}
@media (max-width: 600px) {
  .left {
    left: 16% !important;
    bottom: 80px !important;
  }

  .right {
    left: 20% !important;
    top: -50px !important;
  }
  .txt-bottom {
    position: relative !important;
    left: 3% !important;
    bottom: 150px !important;
  }
  .v_container{
display: block !important;
padding-top:20px !important;
  }

.text-container{
      transform: translate3d(0px, 18.5px, 0px) !important;
}
.pin-spacer{
  height: 4000px !important;
}
  .bottom {
  transform: translateY(0) !important;
  font-size: 80px !important;
}
.tv{
  display: block !important;
}
}

.right {
  top: 50px;
  left: 70%;
}

.title span {
  position: absolute;
}

.n {
  z-index: -1;
}

.text-content p {
  transform: translateY(150px);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 12px;
  font-weight: 300;
}

/* ✅ VISION CONTAINER */
.v_container {
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.left-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem;
  gap: 5rem;
}

.tv {
  font-family: w;
  display: flex;
  text-transform: capitalize;
}

.bottom {
  transform: translateY(70px);
}

.text-container {
  max-width: 260px;
}

.text-container p {
  padding-bottom: 1rem;
  line-height: 1.4;
  opacity: 0.8;
}

.right-side {
  margin: auto;
  width: 150px;
  height: 150px;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  position: relative;
}

.right-side p {
  position: absolute;
  top: 45%;
  left: -15%;
  text-transform: uppercase;
  font-size: 14px;
}

.fa-arrow-right-long {
  transform: translateX(20px);
}

/* ✅ CARD SECTION */
.card-section h2 {
  text-align: center;
  font-size: 36px;
  margin: 60px 0 30px;
  font-weight: 700;
  color: white;
}

.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  font-family: poppins;
 
}

.card {
  background-color: #1e1e1e;
  border-radius: 12px;
  width: 260px;
  color: white;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 280px;
  border: 0.5px solid rgba(255, 255, 255, 0.3); /* Thin light white border */
    font-family: poppins;
    text-align: justify;
}

/* 🔥 Reflecting glow effect on hover */
.card:hover {
  border-color: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 8px 20px rgba(0, 0, 0, 0.3);
}


.card:hover {
  height: 360px;
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 15px;
  font-family: poppins;
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.card-description {
  font-size: 14px;
  color: white;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  padding: 0 12px;
  margin: 0;
 
}

.card:hover .card-description {
  opacity: 1;
  max-height: 200px; /* Slightly larger than needed */
  padding-bottom: 8px;
}


.mission-heading {
  text-align: center;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 40px;
  font-family: poppins;
}

.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.mission-vision-section {
  padding: 60px 20px;
  background-color: #002139;
  font-family: "Poppins", sans-serif;
}


.mission-vision-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-box {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.25),
    0 10px 40px rgba(255, 255, 255, 0.3), 0 20px 80px rgba(255, 255, 255, 0.2); /* ✅ Stronger layered white shadows */
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.mission-box::before {
  content: "";
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background: radial-gradient(rgba(255, 255, 255, 0.15), transparent 70%);
  border-radius: 15px;
  z-index: -1;
  filter: blur(10px); /* ✅ glowing halo effect */
}

.mission-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35),
    0 12px 50px rgba(255, 255, 255, 0.4), 0 25px 90px rgba(255, 255, 255, 0.25);
}

.mission-box h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000000;
  font-family: poppins;
}

.mission-box p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

.mission-box p strong {
  color: #000;
}

@media (max-width: 600px) {
  .mission-heading {
    font-size: 1.6rem;
  }

  .mission-box {
    padding: 20px;
  }

  .mission-box h3 {
    font-size: 18px;
  }

  .mission-box p {
    font-size: 14px;
  }
}

/* WHY CHOOSE US SECTION */
.whyus-section {
  background-color: #002139;
  padding: 60px 20px;
  color: #fff;
  font-family: "Inter", sans-serif;
}

.whyus-container {
  max-width: 1280px;
  margin: 0 auto;
}

.whyus-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.whyus-card {
  display: flex;
  background-color: #04314f;
  border: 1px solid #0d3c5a;
  border-radius: 8px;
  padding: 30px;
  gap: 20px;
  transition: 0.3s ease;
}

.whyus-card:hover {
  background-color: #0d3c5a;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.whyus-icon {
  width: 90px;
  height: 90px;
  background-color: #073050;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0; /* Optional: keep square shape */
}

.whyus-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fill the square, cropping if necessary */
  filter: none; /* remove brightness/invert filter for real images */
}


.whyus-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: poppins;
}

.whyus-content p {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  text-align: justify;
  
}

@media (max-width: 768px) {
  .whyus-grid {
    grid-template-columns: 1fr;
  }

  .whyus-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .whyus-icon {
    margin-bottom: 15px;
  }
}

/* HOW WE WORK SECTION */
.workflow-section {
  background-color: #ffffff;
  padding: 60px 20px;
  color: #000000;
  text-align: center;
}

.workflow-container {
  max-width: 1300px;
  margin: auto;
}

.workflow-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  font-family: poppins;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  font-family: poppins;
}

.workflow-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* Make sure image stays within the circle */
}

.workflow-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensures image is also a circle */
  display: block; /* Prevent inline gaps */
}





.workflow-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #010000;
  font-family: poppins;
}

.workflow-step p {
  font-size: 0.95rem;
  color: #010101;
  line-height: 1.6;
  text-align:center;
}



/* swiper */




.container.swiper {
  width: 100%;
  padding: 40px 0;
}


.wrapperr {
  width: 100%;
  position: relative;
  padding: 0 20px;
}


.swiper .card-list {
  display: flex;
}

 .swiper .card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.swiper .card:hover {
  transform: translateY(-10px);
}

 .swiper .card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  border-radius: 20px 20px 0 0;
}

 .swiper .card-content {
  padding: 20px 20px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
  font-family: poppins;
}

.swiper .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.swiper .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align:justify;
}

.swiper .card-footer {
  display: flex;
  justify-content: center; /* Center the button horizontally */
  align-items: center;
  margin-top: auto;
}


.swiper .card-button {
  padding: 10px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
  transition: all 0.3s ease;
}

.swiper .card-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(99, 102, 241, 0.3);
}

/* Swiper bullets */
.swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  background: #B1B3F8;
  opacity: 1;
  margin: 0 6px !important;
}

.swiper-pagination-bullet-active {
  background: #6366f1;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #6366f1;
  top: 45%;
  transition: 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #8b5cf6;
}

@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .wrapperr {
    padding: 0 10px;
  }
}



/* Background and Metallic Cuts */
.background {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: radial-gradient(circle at center, #232c3a 0%, #0a121d 80%);
  z-index: -10;
}

.cut {
  position: fixed;
  background: linear-gradient(45deg,
    #3a3f47 0%,
    #9fa2a7 40%,
    #14171a 60%,
    #3a3f47 100%);
  box-shadow:
    inset 0 0 5px 1px rgba(255,255,255,0.4),
    0 2px 5px rgba(0,0,0,0.6);
  border-radius: 2px;
  overflow: hidden;
  z-index: -9;
}

.cut::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.6) 50%,
    rgba(255,255,255,0) 100%
  );
  transform: skew(45deg);
  animation: shine 3s linear infinite;
}

/* Different animation speeds */
.cut.top-right-2::before,
.cut.bottom-left-2::before {
  animation-duration: 4.5s;
}

/* Cut positions */
.cut.top-right-1 {
  width: 380px;
  height: 15px;
  top: 10px;
  right: -120px;
  transform: rotate(35deg);
}
.cut.top-right-2 {
  width: 350px;
  height: 12px;
  top: 65px;
  right: -100px;
  transform: rotate(35deg);
}
.cut.bottom-left-1 {
  width: 380px;
  height: 15px;
  bottom: 90px;
  left: -200px;
  transform: rotate(35deg);
}
.cut.bottom-left-2 {
  width: 380px;
  height: 12px;
  bottom: 100px;
  left: -120px;
  transform: rotate(35deg);
}

@keyframes shine {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}
  .unique-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    z-index: 2;
  }
  
  .unique-arrow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-bottom: 4px solid #999;
    border-right: 4px solid #999;
    transform: rotate(45deg);
    left: 10px;
    top: 10px;
    animation: unique-bounce 2s infinite;
  }
  
  .unique-arrow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-bottom: 4px solid rgba(255, 255, 255, 0.7);
    border-right: 4px solid rgba(255, 255, 255, 0.7);
    transform: translate(5px, 5px);
    animation: unique-shine 2s infinite;
  }
  
  .unique-text {
    position: absolute;
    color: #999;
    font-size: 0.75rem;
    bottom: 0;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  /* Slider fix */
.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 623%; /* 100% × number of slides (3) */
}

.slider .menu-columns {
  flex: 0 0 100%; /* each slide takes full width */
  box-sizing: border-box;
}

/* Dots */
.slider-dots {
  text-align: center;
  margin-top: 10px;
}
.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.slider-dots .dot.active {
  background-color: #333;
}
  @keyframes unique-bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) rotate(45deg);
    }
    40% {
      transform: translateY(-20px) rotate(45deg);
    }
    60% {
      transform: translateY(-10px) rotate(45deg);
    }
  }
  
  @keyframes unique-shine {
    0% {
      opacity: 0;
      transform: translate(5px, 5px);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: translate(10px, 10px);
    }
  }