/* ====== FORM WRAPPER ====== */
.form-wrapper {
  background: linear-gradient(
    90deg,
    rgba(7, 21, 32, 0.582) 0%,
    rgba(13, 57, 86, 1) 35%,
    rgba(15, 27, 45, 1) 100%
  ) !important;
  backdrop-filter: blur(12px);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}

/* ====== FORM INPUTS ====== */
.form-control,
.form-select,
textarea {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  color: #fff !important;
  padding: 12px;
  border-radius: 8px;
  transition: 0.3s ease;
}

.form-control::placeholder,
.form-select {
  color: rgba(255, 255, 255, 0.7);
}

.form-control:focus,
textarea:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 0 8px rgba(111, 177, 252, 0.8);
}
.form-select:focus {
  background-color: rgb(53, 66, 92) !important;
}
/* ====== DROPDOWN ARROW COLOR ====== */
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 011.708 0L8 9.293l4.646-4.647a.5.5 0 01.708.708l-5 5a.5.5 0 01-.708 0l-5-5a.5.5 0 010-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
}

/* ====== BUTTON STYLE ====== */
.btn-gradient {
  background: linear-gradient(90deg, #0052d4, #4364f7, #6fb1fc);
  border: none;
  color: white;
  transition: 0.3s ease;
  border-radius: 25px;
}

.btn-gradient:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ====== FLOATING FORM ANIMATION ====== */
.animate-float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.section-five {
  background: url("./Assets/form-bg.jpeg") no-repeat center center / cover;
}

@import url("https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
  margin: 0%;
  padding: 0%;
}
html {
  scroll-behavior: smooth;
}
.fa-envelope,
.fa-phone-alt {
  font-size: 22px !important;
}
.fa-home,
.fa-ticket-alt,
.fa-map-marker-alt,
.fa-globe,
.fa-passport,
.fa-user-tie,
.fa-phone {
  font-size: 16px !important; /* Adjusted icon size */
  margin-right: 4px !important; /* Increased spacing */
}

.nav-link {
  font-size: 15px !important;
  margin-left: 10px;
  transition: color 0.3s ease-in-out;
}

.navbar-brand {
  font-size: 20px;
  letter-spacing: 1px;
}
.Brand-logo {
  height: 10vh;
  padding-right: 3vh;
}
.Brand-Name {
  height: 4vh;
}
.countries-bg {
  position: absolute;
  left: 0%;
  right: 0%;
  bottom: 0px !important;
  background-image: url("");
  background-size: cover;
  background-repeat: no-repeat;

  width: 100%;
  margin: 0%;
  padding: 0%;
  z-index: 0;
}
.section-one {
  position: relative;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  
  
  
}

/* Full background video style */
.landing-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  
  z-index: -1;
}



/* To ensure content stays visible above video */
.section-one .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: left;
  padding-left: 20px;
}

/* Style for animated text */
.ah-headline {
  font-family: "Nunito", Helvetica, Arial, sans-serif !important;
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
}

/* Add some style to the words wrapper */
.ah-words-wrapper {
  font-family: "Nunito", Helvetica, Arial, sans-serif !important;
  font-size: 9vh;
  text-transform: uppercase;
}

.para {
  text-align: left;
  font-display: left;
  color: white;
  /* padding-left:px;  */
  font-style: italic;
  position: relative;
  z-index: 10;
}
/* Style for the link */
.styled-link {
  display: inline-block;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: rgb(28, 83, 155);
  background-color: white;
  border: 2px solid skyblue;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(135, 206, 250, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  /* margin-left: 18px; */
  position: relative;
  z-index: 10;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.card-adjust {
  flex: 1 1 calc(33.33% - 20px);
  max-width: calc(33.33% - 20px);
  margin: 10px;
  box-sizing: border-box;
  padding-left: 91px;
}
.card {
  position: relative;
  margin: 20px 0;
  width: 218px;
  height: 283px;
  background: #fff;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.5),
    0 20px 20px rgba(0, 0, 0, 0.5);
  transition: 1s;
  border-radius: 20px;
}
.card:hover {
  z-index: 10000;
  transform: perspective(2000px) rotate(-10deg);
  box-shadow: inset 20px 0 50px rgba(0, 0, 0, 0.5),
    0 10px 100px rgba(0, 0, 0, 0.5);
}

.card .Box {
  position: relative;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  position: relative;
  transform-origin: left;
  border-radius: 20px;
  z-index: 1;
  transition: 1s cubic-bezier(0.15, 1.7, 0.84, 0.58);
  background: #111;
}
.card .Box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.card:hover .Box {
  transform: rotateY(-135deg);
}
.card .details {
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  padding: 20px;
  z-index: -1;
}
/* ...................................... Section 2 ........................................ */
.section2-Heading {
  font-family: "Nunito", Helvetica, Arial, sans-serif !important;
  font-weight: bolder;
  font-size: 4.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(270deg, #007cf0 0%, #012524 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff; /* fallback for non-webkit browsers */
}
/* ...................................... Section 3 ........................................ */
.section3-Heading {
  font-family: "Nunito", Helvetica, Arial, sans-serif !important;
  font-weight: bolder;
  font-size: 4.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(270deg, #007cf0 0%, #012524 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff; /* fallback for non-webkit browsers */
}

/* ---------------------------------------------------------------partners swection--------------------------------------------------- */
.partners-section {
  padding: 60px 0;
  /* background: linear-gradient(360deg, rgba(58, 86, 212, 0.137), rgba(255, 255, 255, 0.85)); */
  background: url("./Assets/comny-bg.jpg") no-repeat center center / cover;

  overflow: hidden;
}

.partner-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.partner-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #0077ff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.partners-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: calc(250px * 16);
}

.partner-card {
  width: 250px;
  height: 150px;
  flex-shrink: 0;
  margin: 0 15px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08); /* Light subtle border */
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px; /* Added padding for breathing room */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Keep logo proportions */
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 8));
  }
}

/* ------------------------------------------------------- end partner section --------------------------------------------------- */

.partner-title {
  font-family: "Nunito", Helvetica, Arial, sans-serif !important;
  font-weight: bolder;
  font-size: 4.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: linear-gradient(270deg, #007cf0 0%, #012524 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fff; /* fallback for non-webkit browsers */
}

/* animations */
.section-two {
  position: relative;
  overflow: hidden;
}

.animation-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: auto;
  pointer-events: none;
  z-index: -2;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  background: #0af;
  width: 100px;
  height: 1300px;
  margin-left: -150px;
  margin-top: -250px;
  transform-origin: 50% 48%;
  border-radius: 43%;
  animation: drift 7000ms infinite linear;
}

.wave.-two {
  opacity: 0.1;
  background: black;
  animation: drift 3000ms infinite linear;
}

.wave.-three {
  background-color: #77daff;
  animation: drift 9500ms infinite linear;
}

@keyframes drift {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animation-box-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: auto;
  pointer-events: none;
  z-index: -2;
}

.wave-right {
  left: unset;
  right: 0;
  margin-left: 0;
  margin-right: -150px;
}

/* carousel */
.carousel {
  height: 100vh;
  margin-top: -50px;
  width: 99vw;
  overflow: hidden;
  position: relative;
}
.carousel .list .item {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0 0 0 0;
}
.carousel .list .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel .list .item .content {
  position: absolute;
  top: 20%;
  width: 1140px;
  max-width: 80%;
  left: 50%;
  transform: translateX(-50%);
  padding-right: 30%;
  box-sizing: border-box;
  color: #fff;
  text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author {
  font-weight: bold;
  letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic {
  font-size: 5em;
  font-weight: bold;
  line-height: 1.3em;
}
.carousel .list .item .topic {
  color: #f1683a;
}
.carousel .list .item .buttons {
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
}
.carousel .list .item .buttons button {
  border: none;
  background-color: #eee;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2) {
  background-color: transparent;
  border: 1px solid #fff;
  color: #eee;
}
/* thumbail */
.thumbnail {
  position: absolute;
  bottom: 50px;
  left: 50%;
  width: max-content;
  z-index: 100;
  display: flex;
  gap: 20px;
}
.thumbnail .item {
  width: 150px;
  height: 220px;
  flex-shrink: 0;
  position: relative;
}
.thumbnail .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.thumbnail .item .content {
  color: #fff;
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
.thumbnail .item .content .title {
  font-weight: 500;
}
.thumbnail .item .content .description {
  font-weight: 300;
}
/* arrows */
.arrows {
  position: absolute;
  top: 80%;
  right: 52%;
  z-index: 100;
  width: 300px;
  max-width: 30%;
  display: flex;
  gap: 10px;
  align-items: center;
}
.arrows button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee4;
  border: none;
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  transition: 0.5s;
}
.arrows button:hover {
  background-color: #fff;
  color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
  z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
  transform: translateY(50px);
  filter: blur(20px);
  opacity: 0;
  animation: showContent 0.5s 1s linear 1 forwards;
}
@keyframes showContent {
  to {
    transform: translateY(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.carousel .list .item:nth-child(1) .content .title {
  animation-delay: 1.2s !important;
}
.carousel .list .item:nth-child(1) .content .topic {
  animation-delay: 1.4s !important;
}
.carousel .list .item:nth-child(1) .content .des {
  animation-delay: 1.6s !important;
}
.carousel .list .item:nth-child(1) .content .buttons {
  animation-delay: 1.8s !important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
  width: 150px;
  height: 220px;
  position: absolute;
  bottom: 50px;
  left: 50%;
  border-radius: 30px;
  animation: showImage 0.5s linear 1 forwards;
}
@keyframes showImage {
  to {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
  overflow: hidden;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.prev .list .item img {
  z-index: 100;
}
@keyframes showThumbnail {
  from {
    width: 0;
    opacity: 0;
  }
}
.carousel.next .thumbnail {
  animation: effectNext 0.5s linear 1 forwards;
}

@keyframes effectNext {
  from {
    transform: translateX(150px);
  }
}

/* running time */

.carousel .time {
  position: absolute;
  z-index: 1000;
  width: 0%;
  height: 3px;
  background-color: #f1683a;
  left: 0;
  top: 0;
}

.carousel.next .time,
.carousel.prev .time {
  animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime {
  from {
    width: 100%;
  }
  to {
    width: 0;
  }
}

/* prev click */

.carousel.prev .list .item:nth-child(2) {
  z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
  animation: outFrame 0.5s linear 1 forwards;
  position: absolute;
  bottom: 0;
  left: 0;
}
@keyframes outFrame {
  to {
    width: 150px;
    height: 220px;
    bottom: 50px;
    left: 50%;
    border-radius: 20px;
  }
}

.carousel.prev .thumbnail .item:nth-child(1) {
  overflow: hidden;
  opacity: 0;
  animation: showThumbnail 0.5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button {
  pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
  animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
  to {
    transform: translateY(-150px);
    filter: blur(20px);
    opacity: 0;
  }
}
@media screen and (max-width: 678px) {
  .carousel .list .item .content {
    padding-right: 0;
  }
  .carousel .list .item .content .title {
    font-size: 30px;
  }
}
/* Slider animation */
/* .carousel-container {
  position: relative;
  width: 320px;
  margin: 100px auto 0 auto;
  perspective: 1000px;
}
.carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d; 
  animation: rotate360 60s infinite forwards linear;
}
.carousel__face { 
  position: absolute;
  width: 300px;
  height: 187px;
  top: 20px;
  left: 10px;
  right: 10px;
  background-size: cover;
  box-shadow:inset 0 0 0 2000px rgba(0,0,0,0.5);
  display: flex;
}

carousel-span {
  margin: auto;
  font-size: 2rem;
} */

.carousel__face:nth-child(1) {
  background-image: url("https://images.pexels.com/photos/1141853/pexels-photo-1141853.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(0deg) translateZ(430px);
}
.carousel__face:nth-child(2) {
  background-image: url("https://images.pexels.com/photos/1258865/pexels-photo-1258865.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(40deg) translateZ(430px);
}
.carousel__face:nth-child(3) {
  background-image: url("https://images.pexels.com/photos/808466/pexels-photo-808466.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(80deg) translateZ(430px);
}
.carousel__face:nth-child(4) {
  background-image: url("https://images.pexels.com/photos/1394841/pexels-photo-1394841.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(120deg) translateZ(430px);
}
.carousel__face:nth-child(5) {
  background-image: url("https://images.pexels.com/photos/969679/pexels-photo-969679.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(160deg) translateZ(430px);
}
.carousel__face:nth-child(6) {
  background-image: url("https://images.pexels.com/photos/1834400/pexels-photo-1834400.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(200deg) translateZ(430px);
}
.carousel__face:nth-child(7) {
  background-image: url("https://images.pexels.com/photos/1415268/pexels-photo-1415268.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(240deg) translateZ(430px);
}
.carousel__face:nth-child(8) {
  background-image: url("https://images.pexels.com/photos/135018/pexels-photo-135018.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(280deg) translateZ(430px);
}
.carousel__face:nth-child(9) {
  background-image: url("https://images.pexels.com/photos/1175135/pexels-photo-1175135.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
  transform: rotateY(320deg) translateZ(430px);
}

@keyframes rotate360 {
  from {
    transform: rotateY(0deg);
  }
  to {
    transform: rotateY(-360deg);
  }
}
.panel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 1000px; /* Limit the container width */
  margin: 20px auto; /* Center the container */
}

.panel {
  position: relative;
  width: 30%; /* Take up 30% of the row width */
  max-width: 300px; /* Limit the panel width */
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transform: scale(1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.panel-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 1;
}

.panel:hover .panel-bg {
  transform: scale(1.1);
}

.panel-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  z-index: 2;
}

.panel-content h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #333;
}

.panel-content p {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .panel {
    width: 45%; /* Take up more space on smaller screens */
  }
}

.section-four {
  background: url("./Assets/sec-four.jpg") no-repeat center center / cover;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.slider {
  width: 80%; /* Adjust slider width */
  margin: 20px auto;
}
.slider img {
  width: 30%;
  height: auto;
}

.text-style {
  font-family: Georgia, "Times New Roman", Times, serif;
  color: white;
  font-size: 4rem;
  padding-inline-start: 127px;
  padding-top: 40px;
}

.fa-solid,
.fas {
  font-weight: 900;
  color: white;
  font-size: xx-large;
}
.text {
  font-family: Arial, sans-serif;
  font-size: 1.5rem;
  padding-left: 82px;
  color: white;
}
.footer-addresses {
  color: #ffffff;
  padding-left: 130px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-addresses h4 {
  font-size: 1.2em;
  color: #f1c40f;
}

.footer-addresses p {
  font-size: 0.95em;
  margin: 0;
}
.contact-info {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #fff;
  padding-left: 125px;
  border-radius: 8px;
  max-width: 500px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  font-size: 1.5em;
  color: #f1c40f;
  margin-bottom: 10px;
}

.contact-info p {
  margin: 8px 0;
  font-size: 1rem;
}

.contact-info i {
  text-decoration: none;
  color: #3498db;
  font-weight: bold;
}

.contact-info i:hover {
  color: #2980b9;
  text-decoration: underline;
}

/* Animation for fade-in effect */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  .setmargin {
    font-family: "Ubuntu" !important;
    padding-left: 10px;
    margin-bottom: 0%;
    font-weight: bolder;
    font-size: 20px !important;
  }
  .countries-bg {
    display: none !important;
  }
  .plane {
    padding-top: 20px;
    background-position: center;
    width: auto;
    height: 24vh !important;
  }
  .section2-Heading {
    font-size: 25px;
  }
  .card-adjust {
    /* Adjust for smaller screens */
    flex: 1 1 100%; /* Occupy full width */
    max-width: 50%; /* Ensures no overflow */
    box-sizing: border-box;
    padding-left: 10px;
  }
  .card {
    position: relative;

    height: 283px;
    background: #fff;
    transform-style: preserve-3d;
    transform: perspective(2000px);
    box-shadow: inset 300px 0 50px rgba(0, 0, 0, 0.2); /* Adjust as needed */
    transition: 1s;
    border-radius: 20px;
    width: 96%; /* Allow for padding */
    margin: 10px auto;
  }
  .animation-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: -2;
  }
  .animation-box-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: auto;
    pointer-events: none;
    z-index: -2;
  }

  .wave-right {
    left: unset;
    right: 0;
    margin-left: 0;
    margin-right: -150px;
    margin-top: 800px;
  }
  .des {
    display: none !important;
  }
  .carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 16px;
  }

  /* ................form....................... */

  .iframe {
    display: none !important;
  }
  .iframe-width {
    display: none;
  }
  .contact-info {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #fff;
    padding-left: 40px !important;
    border-radius: 8px;
    max-width: 500px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  .text {
    padding-left: 40px !important;
  }
  .footer-addresses {
    color: #ffffff;
    padding-left: 40px !important;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .setmargin-top {
    padding-top: 5px !important;
    font-size: 2rem !important;
  }
  .card .Box {
    position: relative;
    width: 122%;
    height: 100%;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    position: relative;
    transform-origin: left;
    border-radius: 20px;
    z-index: 1;
    transition: 1s cubic-bezier(0.15, 1.7, 0.84, 0.58);
    background: #111;
  }
}

.footer {
  background-image: url(./Assets/BrandLogo/footer.jpg);
  background-size: cover;
}
.footer-image {
  width: 30rem;
  height: auto;
  padding: 50px 0px 40px 50px;
}

@media (max-width: 768px) {
  .panel {
    width: 100%; /* Stack panels on small screens */
  }
  .section-one {
    position: relative;
    height: 60vh !important;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .fa-phone-alt {
    font-size: 10px !important;
  }
  .landing-video {
    height: 60vh;
  }
  .phone-font {
    padding-top: 8px;
    font-size: 10px;
  }

  .text-style {
    font-size: 40px !important;
  }
  .navbar-brand {
    font-size: 4px !important;
  }
  .navbar {
    padding-left: 20px !important;
  }
  
  .footer-image {
    width: 20rem !important;
    height: auto;
    padding: 50px 0px 40px 50px !important;
  }
  .form-control::placeholder {
    font-size: 0.9rem;
    opacity: 0.8;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }

  .btn {
    width: 100%;
  }
  .s-view {
    font-size: 5vh !important;
  }
  
}

/* ---------------------section-three---------------------------- */

:root {
  --bg: #05060a; /* deep black */
  --blue: #2b6fff; /* accent blue */
  --blue-2: #0ea5ff; /* lighter blue */
  --card-bg: rgba(255, 255, 255, 0.06);
  --card-stroke: rgba(255, 255, 255, 0.18);
  --fg: #eaf2ff;
  --muted: #94a3b8;
  --glow: 0 0 24px rgba(14, 165, 255, 0.35), 0 0 64px rgba(43, 111, 255, 0.25);
  --radius: 24px;
}

/* Decorative blurred blobs */
.blob {
  position: fixed;
  inset: auto;
  width: 40vmax;
  height: 40vmax;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
.blob.one {
  left: -10vmax;
  top: -8vmax;
  background: radial-gradient(circle at 30% 30%, var(--blue), transparent 60%);
}
.blob.two {
  right: -12vmax;
  bottom: -8vmax;
  background: radial-gradient(
    circle at 70% 70%,
    var(--blue-2),
    transparent 60%
  );
}

header {
  position: relative;
  z-index: 2;
  padding: 48px 6vw 16px;
  text-align: center;
}
.tag {
  display: inline-flex;
  font-size: 1.5rem;
  align-items: center;
  font-weight: 600;
  color: #ffffff;
  background:linear-gradient(120deg, rgba(0, 103, 163, 0.733), rgb(0, 0, 0)) !important;
  border: 1px solid rgba(14, 165, 255, 0.18);
  padding: 8px 25px;
  border-radius: 999px;
  box-shadow: var(--glow);
}
h1 {
  margin: 14px 0 8px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: 0.4px;
}
p.lead {
  margin: 0;
  opacity: 0.8;
  color: #c8d7ff;
}

/* Sticky horizontal slider section */
.services {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  height: 100vh; /* viewport height to enable pinning */
  padding-bottom: 20px;
  overflow: hidden; /* important for blur layering */
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./cards-images/card-bg.jpg) no-repeat center center / cover;
  filter: blur(7px); /* adjust blur intensity */
  transform: scale(1.1); /* prevents edges showing when blurred */
  z-index: -2;
}





.carousel2 {
  position: relative;
  width: 100%;
  height: 100%;
}
.track {
  display: flex;
  align-items: stretch;
  height: 100%;
  will-change: transform;
  flex-wrap: nowrap;
}
.panelo {
  min-width: 10vw;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  flex: 0 0 auto; /* prevent shrinking */

}



/* Card */
.cardo {
  position: relative;
  width: min(980px, 88vw);
  max-width: 980px;
  min-height: 460px;
  padding: 28px 28px 28px 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgb(0, 0, 0), rgb(8, 74, 117)) !important;
  border: 1px solid var(--card-stroke);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: var(--glow), 0 10px 40px rgba(0, 0, 0, 0.45) inset;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
}

.cardo::before {
  /* subtle shine */
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
      1200px 400px at -20% -20%,
      rgba(255, 255, 255, 0.25),
      transparent 40%
    ),
    linear-gradient(135deg, rgba(43, 111, 255, 0.25), transparent 40%) !important;
  mix-blend-mode: screen;
  opacity: 0.6;
}

.media {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    120deg,
    rgba(14, 165, 255, 0.15),
    rgba(43, 111, 255, 0.08)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 40px rgba(14, 165, 255, 0.18);
}
.media svg,
.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content {
  padding: 12px 6px 12px 6px;
}
.kicker {
  font-size: clamp(28px, 3.2vw, 34px) !important;
  font-weight: 700;
  text-transform: uppercase;
  color: #8ec7ff;
  font-size: 0.8rem;
}
.title {
  font-size: clamp(28px, 3.2vw, 23px);
  margin: 10px 0 12px;
  font-weight: 400;
  color: white;
}
.subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: #c7d7ff;
  line-height: 1.6;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.badge {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(14, 165, 255, 0.1);
  color: #d9ebff;
  border-radius: 999px;
  font-size: 0.9rem;
}



/* Responsive */
@media (max-width: 940px) {
  .cardo {
    grid-template-columns: 1fr;
    min-height: 520px;
    padding: 22px;
  }
  .media {
    height: 280px;
  }
  .content {
    text-align: left;
  }
  .subtitle {
    font-size: 15px;
  }
}
@media (max-width: 540px) {
  .cardo {
    min-height: 520px;
  }
  .tag {
    font-size: 0.82rem;
  }
  .dots {
    bottom: 16px;
  }
}


/* -------------------------------------------- process scroll model ------------------------------------------------ */

.process-section {
  background: linear-gradient(135deg, #000000, #18507e);
  padding: 80px 20px;
  position: relative;
  color: #fff;
  overflow: hidden;
}

.process-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  font-weight: bold;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* SVG Line */
.timeline-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1400px;
  z-index: 1;
  pointer-events: none;
}

/* Plane */
.timeline-plane {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2rem;
  z-index: 3;
}

/* Steps */
.timeline-steps {
  position: relative;
  z-index: 2;
}

.timeline-step {
  width: 50%;
  margin: 120px 0;
  display: flex;
}

.timeline-step.left {
  justify-content: flex-start;
  text-align: left;
}

.timeline-step.right {
  margin-left: auto;
  justify-content: flex-end;
  text-align: right;
}

.timeline-content {
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.timeline-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: bold;
}

.timeline-content p {
  font-size: 1rem;
  color: #ddd;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .timeline-step,
  .timeline-step.left,
  .timeline-step.right {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .timeline-content {
    max-width: 90%;
  }
  .timeline-svg {
   display: none;
  }
  .timeline-plane{
    display: none;
  }
}