@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: rgba(243, 240, 240, 0.1764705882);
  color: #222;
}

.right-up {
  position: fixed;
  right: 5%;
  bottom: 10%;
  cursor: pointer;
  background-color: transparent;
  animation: rightUp 4s ease-in-out infinite;
  border: 1px solid lightgray;
  border-radius: 50%;
  padding: 5px;
}
.right-up img {
  width: 50px;
  transform: rotate(347deg);
}

@keyframes rightUp {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.03);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
.cursor-ring {
  position: fixed;
  z-index: 99999;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.cursor-ring::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #1673ff;
  animation: spin 4s linear infinite;
  box-shadow: 0 0 15px #1673ff, 0 0 40px rgba(6, 76, 206, 0.5);
}

.cursor-ring::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background: #1673ff;
  border-radius: 50%;
  box-shadow: 0 0 10px #1673ff, 0 0 30px #1673ff;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Hover effect */
.cursor-ring.active::before {
  border-color: #1673ff;
  width: 100px;
  height: 100px;
  transition: 0.3s;
  box-shadow: 0 0 20px #1673ff, 0 0 60px rgba(6, 76, 182, 0.6);
}

.btn {
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  background: #fff;
  color: #0761c1;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  color: white;
  background: #1694ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 148, 255, 0.3);
}

.btn-color {
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  background: #0761c1;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
}

.btn-color:hover {
  color: white;
  background: #1694ff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 148, 255, 0.3);
}

.popup-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

h3 {
  color: #333;
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: inherit;
}

p {
  color: #222;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.6px;
  line-height: inherit;
  margin-bottom: 30px;
}

h2 {
  color: #a6c8f3;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #ffffff, #e9f7ff, #d9f2ff);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  overflow: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.loader-wrapper.hide-loader {
  opacity: 0;
  visibility: hidden;
}

/* Animated Glow */
.loader-wrapper::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 174, 255, 0.25), transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
}
.loader-text {
  position: relative;
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: capitalize;
  color: #00a2ff;
  animation: smoothText 2.5s ease forwards;
}

/* Shine Effect */
.loader-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  animation: shine 2.5s infinite;
}

@keyframes shine {
  100% {
    left: 130%;
  }
}
@keyframes smoothText {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    filter: blur(8px);
  }
  50% {
    opacity: 1;
    transform: translateY(0px) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1.02);
  }
}
@media (max-width: 768px) {
  .loader-text {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
}
header {
  /* ================= NAVBAR ================= */
}
header .custom-navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  z-index: 999;
  padding: 2px 26px;
  border-radius: 18px;
  background: rgb(9, 95, 168);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.19);
  transition: 0.4s;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .custom-navbar.scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
header .navbar-brand {
  font-size: 28px;
  font-weight: 700;
  color: #1694ff !important;
}
header {
  /* ================= NAV LINKS ================= */
}
header .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  transition: 0.3s;
  text-decoration: none;
  font-size: 18px;
}
header .nav-link:hover {
  color: #fff !important;
}
header .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: white;
  transition: 0.3s;
}
header .nav-link:hover::after {
  width: 100%;
}
header {
  /* ================= HAMBURGER ================= */
}
header .navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  padding: 0;
}
header .hamburger-line {
  display: block;
  width: 28px;
  height: 3px;
  margin: 6px 0;
  background: #1694ff;
  border-radius: 10px;
  transition: 0.3s;
}
header {
  /* ================= DROPDOWN ================= */
}
header .custom-dropdown {
  position: relative;
}
header .services-toggle-wrapper {
  display: flex;
  align-items: center;
}
header .dropdown-toggle-btn {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  margin-left: 4px;
  transition: 0.3s;
}
header .dropdown-toggle-btn i {
  font-size: 14px;
}
header .dropdown-menu-custom {
  position: absolute;
  top: 130%;
  left: 0;
  background: white;
  min-width: 240px;
  border-radius: 16px;
  padding: 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}
header .dropdown-menu-custom a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: #333;
  border-radius: 10px;
  transition: 0.3s;
  font-weight: 500;
}
header .dropdown-menu-custom a:hover {
  background: #eef7ff;
  color: #1694ff;
  transform: translateX(4px);
}
header {
  /* ================= DESKTOP DROPDOWN ================= */
}
@media (min-width: 992px) {
  header .custom-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ========================= */
/* MARQUEE SECTION */
/* ========================= */
.marquee-section {
  padding: 0px 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 3%;
}

/* Fade Effect */
.marquee-section::before,
.marquee-section::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(to right, #f4f7fb, transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(to left, #f4f7fb, transparent);
}

/* ========================= */
/* TRACK */
/* ========================= */
.marquee {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  gap: 60px;
  animation: moveText 60s linear infinite;
}

.marquee-wrapper {
  display: flex;
  width: -moz-max-content;
  width: max-content;
}

/* ========================= */
/* TEXT */
/* ========================= */
.marquee span {
  font-size: 70px;
  font-weight: 800;
  white-space: nowrap;
  color: #dbe4f0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.3s ease;
}

.marquee span:hover {
  color: rgb(9, 95, 168);
  transform: scale(1.05);
}

/* ========================= */
/* ANIMATION */
/* ========================= */
@keyframes moveText {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {
  .marquee {
    gap: 35px;
  }
  .marquee span {
    font-size: 52px;
  }
}
.hero-section {
  margin: 8% 4% 6% 4%;
  background-color: rgb(9, 95, 168);
  padding: 2% 0%;
  border-radius: 25px;
}
.hero-section h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1.6px;
  line-height: 80px;
}
.hero-section p {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: inherit;
}
.hero-section .btn {
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  background: #fff;
  color: #0761c1;
  font-weight: 600;
  transition: 0.3s;
}
.hero-section .btn:hover {
  color: #1694ff;
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(22, 148, 255, 0.3);
}
.hero-section .travel-wrapper {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
}
.hero-section {
  /* ================= LEFT CARD ================= */
}
.hero-section .left-card {
  width: 450px;
  background: #fff;
  border-radius: 24px;
  padding: 18px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.hero-section .travel-image {
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.hero-section .travel-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  inset: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1s ease, transform 6s ease;
}
.hero-section .travel-image img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}
.hero-section {
  /* Optional dark overlay */
}
.hero-section .travel-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.05));
  z-index: 3;
}
@media (max-width: 768px) {
  .hero-section .travel-image {
    height: 450px;
  }
  .hero-section .travel-content h2 {
    font-size: 28px;
  }
}
.hero-section .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-section .location h3 {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin-bottom: 4px;
}
.hero-section .location p {
  font-size: 12px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-section .footer-rating {
  color: #f5c542;
  font-size: 14px;
  font-weight: 600;
}
.hero-section {
  /* ================= RIGHT SECTION ================= */
}
.hero-section .right-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-section .top-card {
  width: 250px;
  background: #fff;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.hero-section .top-card img {
  width: 100%;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.hero-section .click {
  position: absolute;
  bottom: -2%;
  width: 160px;
  animation: floatCard 2s ease-in-out infinite 1s;
}
.hero-section .card-move {
  background: #fff;
  position: absolute;
  right: -5px;
  z-index: 9;
  bottom: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  opacity: 0;
  transform: translateX(80px);
  animation: slideCard 5s ease forwards, floatCard 5s ease-in-out infinite 1s;
}
.hero-section .card-move h5 {
  color: #0d6efd;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  letter-spacing: 0.6px;
}
@keyframes slideCard {
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.hero-section {
  /* ================= RESPONSIVE ================= */
}
@media (max-width: 768px) {
  .hero-section .travel-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .hero-section .left-card,
  .hero-section .top-card,
  .hero-section .small-card {
    width: 100%;
    max-width: 320px;
  }
}

.about-section {
  margin-top: 8%;
  margin-bottom: 10%;
}
.about-section .btn {
  background-color: rgb(9, 95, 168);
  color: #fff;
}
.about-section .popup-badge {
  background: rgb(9, 95, 168);
  color: #fff;
}
.about-section img {
  border-radius: 20px;
}
.about-section .right-aim {
  position: absolute;
  right: 0px;
  width: 300px;
  animation: floatCard 2s ease-in-out infinite 1s;
}
.about-section .year-card {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: 75px;
  background-color: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 110, 255, 0.616);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.about-section .year-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.about-section .year-card p {
  color: rgba(34, 34, 34, 0.4862745098);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 30px;
  margin-bottom: 0;
}
.about-section .year-card p span {
  color: #0761c1;
  font-size: 40px;
}

/* ========================= SECTION ========================= */
.cards-section {
  padding: 80px 0;
  margin-bottom: 10%;
}
.cards-section .scroll-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cards-section .scroll-track {
  display: flex;
  gap: 25px;
  width: -moz-max-content;
  width: max-content;
  animation: scrollLeft 30s linear infinite;
}
.cards-section .scroll-wrapper:hover .scroll-track {
  animation-play-state: paused;
}
.cards-section .card {
  width: 350px;
  height: 300px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  padding: 15px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.4s ease;
  cursor: pointer;
  border: none;
}
.cards-section .card h3 {
  color: #fff;
}
.cards-section .card:hover {
  transform: translateY(-2px) scale(1);
}
.cards-section .card-content {
  position: relative;
  z-index: 2;
}
.cards-section .card-number {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}
.cards-section .card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}
.cards-section .card p {
  color: #fff;
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
}
.cards-section .card-1 {
  background: rgb(9, 95, 168);
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 768px) {
  .cards-section .card {
    width: 250px;
    height: 310px;
    padding: 10px;
    border-radius: 5px;
  }
  .cards-section .card h3 {
    font-size: 24px;
  }
}

.we-work {
  margin-bottom: 17%;
}
.we-work .bg-img {
  background: url("../img/counter-bg.jpg") no-repeat;
  background-size: cover;
  height: 400px;
  border-radius: 50px;
}
.we-work .cards {
  position: relative;
  overflow: hidden;
  padding: 35px 28px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  transition: all 0.4s ease;
  height: 100%;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.we-work {
  /* Animated gradient glow */
}
.we-work .cards::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
  border-radius: 50%;
  top: -120px;
  right: -100px;
  opacity: 0.12;
  transition: 0.5s;
}
.we-work .cards:hover::before {
  transform: scale(1.4);
  opacity: 0.18;
}
.we-work {
  /* Hover effect */
}
.we-work .cards:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
  border-color: #dbeafe;
}
.we-work {
  /* Icon box */
}
.we-work .card-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: #1694ff;
  color: #fff;
  font-size: 30px;
  margin-bottom: 22px;
  animation: floatIcon 3s ease-in-out infinite;
  box-shadow: 0 12px 25px rgba(124, 58, 237, 0.18);
}
.we-work {
  /* Floating icon animation */
}
@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
.we-work .cards h5 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}
.we-work .cards p {
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 0;
  font-size: 18px;
}
.we-work {
  /* Small moving circles */
}
.we-work .moving-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #60a5fa, #7c3aed);
  border-radius: 50%;
  opacity: 0.15;
  animation: moveDots 5s linear infinite;
}
.we-work .dot1 {
  top: 20px;
  left: 20px;
}
.we-work .dot2 {
  bottom: 25px;
  right: 30px;
  animation-delay: 2s;
}
@keyframes moveDots {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.4);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.portfolio {
  margin-bottom: 10%;
}
.portfolio .cards {
  position: relative;
  padding: 10px;
  border-radius: 24px;
  background: rgba(0, 98, 245, 0.1019607843);
  border: 1px solid #eef2f7;
  transition: all 0.4s ease;
  height: 100%;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.portfolio .cards img {
  width: 100%;
  border-radius: 24px;
  margin-bottom: 10px;
}
.portfolio .cards .pill {
  text-align: center;
  display: flex;
  justify-content: space-between;
}
.portfolio .cards .pill p {
  padding: 10px 20px;
  border-radius: 24px;
  border: 1px solid #eef2f7;
  background-color: rgb(9, 95, 168);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-size: 14px;
  margin-bottom: 0px;
}
.portfolio .cards:hover::before {
  transform: scale(1.4);
  opacity: 0.18;
}
.portfolio .cards:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(37, 99, 235, 0.12);
  border-color: #dbeafe;
}

.cta-section {
  background: rgb(9, 95, 168);
  padding: 5% 8%;
  border-radius: 20px;
  margin-bottom: 15%;
}
.cta-section .btn {
  background-color: #fff;
  color: #00a2ff;
}

.cta-section h3 {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.5411764706);
  font-size: 28px;
  font-weight: 600;
}

.cta-section img {
  position: absolute;
  width: 345px;
  left: 2%;
  top: -50%;
  animation: smoothFloat 6s ease-in-out infinite;
}

/* Modern Smooth Floating Animation */
@keyframes smoothFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-18px) rotate(-2deg);
  }
  50% {
    transform: translateY(0px) rotate(0deg);
  }
  75% {
    transform: translateY(12px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}
.form-section {
  margin-bottom: 8%;
}

.form-section h2 {
  font-size: 286px;
  font-weight: 700;
  color: rgba(211, 211, 211, 0.4784313725);
  position: absolute;
  z-index: -9;
}

.bg-pruple {
  background-color: rgb(9, 95, 168);
  padding: 20px;
  border-radius: 20px 0px 0px 100px;
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
}

.logIn-img {
  padding: 5%;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  width: 300px;
  margin: auto;
  display: flex;
}

.cube-img {
  width: 110px;
  position: absolute;
  top: 15px;
  right: 30px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bg-white {
  background-color: #fff;
  border-radius: 0px 100px 20px 0px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

form {
  width: 70%;
}

label {
  font-size: 16px;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #333;
  margin-bottom: 10px;
}

input {
  border-radius: 50px;
  cursor: pointer;
}

.submit-btn {
  background-color: #1694ff;
  color: #fff;
  width: 100%;
  width: 50%;
}

.submit-btn:hover {
  color: #fff;
  background-color: #1694ff;
}

.toggle {
  display: flex;
  width: 250px;
  background: #fff;
  border-radius: 50px;
  padding: 5px;
  margin: 30px 0px 0px 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.btn-primary {
  background-color: #1694ff !important;
}

.toggle button {
  flex: 1;
  padding: 5px;
  border: none;
  background: transparent;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
}

.toggle .active {
  background: #6C63FF;
  color: white;
}

.form-wrapper {
  min-height: 470px;
  transition: 0.3s ease;
}

form {
  width: 100%;
}

footer {
  background-color: rgb(9, 95, 168);
  padding: 3%;
  color: #fff;
  text-align: center;
}

footer h4 {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.6px;
  margin-bottom: 0px;
}

/* MODAL DESIGN */
.modern-modal .modal-content {
  border: none;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.modern-modal .modal-body {
  padding: 15px;
  background-color: #fff;
}

.modern-modal .btn-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-size: 12px;
}

.popup-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: rgba(15, 87, 199, 0.11);
  color: #333;
  letter-spacing: 1px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.popup-text {
  color: #333;
  font-size: 15px;
  margin-bottom: 15px;
}

/* FORM */
.modern-form .form-control {
  height: 45px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 14px 18px;
  font-size: 14px;
  box-shadow: none;
  transition: 0.3s ease;
}

.modern-form textarea.form-control {
  height: 120px;
  resize: none;
}

.modern-form .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.modern-form label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333;
}

/* BUTTON */
.submit-btn {
  height: 40px;
  width: 150px;
  border: none;
  border-radius: 14px;
  background: #2563eb;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 0 auto;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

/* MOBILE */
@media (max-width: 576px) {
  .modern-modal .modal-body {
    padding: 25px;
  }
}
.modern-form label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: #222;
}

.modern-form .form-control,
.modern-form .form-select {
  height: 55px;
  border-radius: 12px;
  border: 1px solid #e5e5e5;
  padding: 12px 15px;
  box-shadow: none;
}

.modern-form textarea.form-control {
  height: auto;
  resize: none;
}

.modern-form .form-control:focus,
.modern-form .form-select:focus {
  border-color: #00a2ff;
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
}

.submit-btn {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #00a2ff;
}

.testmonial-section {
  margin-bottom: 10%;
}
.testmonial-section .reviews {
  padding: 1rem;
  text-align: center;
  border-radius: 20px;
  background-color: rgb(9, 95, 168);
}
.testmonial-section .reviews__container {
  position: relative;
}
.testmonial-section .review {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  width: 80%;
  margin: auto;
}
.testmonial-section .review__text {
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0;
}
.testmonial-section .review__author {
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.testmonial-section .review__meta {
  font-weight: 400;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0;
}
.testmonial-section .reviews__controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 2rem 0;
}
.testmonial-section .reviews__control {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.2;
  cursor: pointer;
}
.testmonial-section .reviews__control[aria-selected=true] {
  opacity: 1;
}
.testmonial-section .testimonial-visual {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testmonial-section .floating-card {
  position: absolute;
  width: 220px;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  animation: floatCard 4s ease-in-out infinite;
  transition: 0.4s;
}
.testmonial-section .floating-card img {
  width: 100%;
  height: 100%;
}
.testmonial-section .card-1 {
  left: 20px;
  top: 40px;
  transform: rotate(-8deg);
}
.testmonial-section .card-2 {
  right: 20px;
  top: 120px;
  transform: rotate(8deg);
  animation-delay: 1s;
}
.testmonial-section .card-3 {
  left: 100px;
  bottom: 20px;
  transform: rotate(-3deg);
  animation-delay: 2s;
}
.testmonial-section .blur-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #6c63ff, #9f7aea);
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  opacity: 0.5;
}
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}

.about-us-page .banner {
  background-color: #0761c1;
  padding: 3%;
  margin: 7% 5% 3% 5%;
  border-radius: 20px;
}
.about-us-page .banner h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.about-us-page .banner p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.about-us-page .curve-marquee {
  width: 100%;
  overflow: hidden;
  padding: 80px 0;
}
.about-us-page .curve-track {
  display: flex;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.about-us-page .curve-track img {
  width: 220px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
  flex-shrink: 0;
}
.about-us-page {
  /* Wave effect */
}
.about-us-page .curve-track img:nth-child(odd) {
  animation: waveUp 4s ease-in-out infinite;
}
.about-us-page .curve-track img:nth-child(even) {
  animation: waveDown 4s ease-in-out infinite;
}
.about-us-page {
  /* Infinite horizontal movement */
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 15px));
  }
}
@keyframes waveUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-40px);
  }
}
@keyframes waveDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(40px);
  }
}
.about-us-page .about-text {
  font-size: 200px;
  font-weight: 700;
  color: rgba(41, 38, 38, 0.1607843137);
  text-align: center;
}
.about-us-page .about-section {
  margin-top: 0%;
  margin-bottom: 5%;
}
.about-us-page .happy-customer-section {
  background: #0761c1;
}
.about-us-page .happy-customer-section img {
  position: absolute;
  left: 0%;
  bottom: 0;
  width: 150px;
}
.about-us-page .happy-customer-section h2 {
  color: #fff;
  font-size: 60px;
  letter-spacing: 1px;
  font-weight: 700;
}
.about-us-page .happy-customer-section p {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 400;
}
.about-us-page .happy-customer-section .counter-box {
  background: #fff;
  padding: 35px 20px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  height: 100%;
}
.about-us-page .happy-customer-section .counter-box:hover {
  transform: translateY(-8px);
}
.about-us-page .happy-customer-section .counter-box h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0761c1;
  margin-bottom: 10px;
}
.about-us-page .happy-customer-section .counter-box p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: #555;
}
.about-us-page .our-values .value-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: 0.4s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.about-us-page .our-values .value-card:hover {
  transform: translateY(-10px);
}
.about-us-page .our-values .icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(13, 110, 253, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-us-page .our-values .icon-box i {
  font-size: 32px;
  color: #0d6efd;
}
.about-us-page .our-values .value-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}
.about-us-page .our-values .value-card p {
  color: #666;
  line-height: 1.7;
  margin: 0;
}
.about-us-page .team-section .team-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}
.about-us-page .team-section .team-card:hover {
  transform: translateY(-10px);
}
.about-us-page .team-section .team-image {
  overflow: hidden;
}
.about-us-page .team-section .team-image img {
  width: 100%;
  height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
.about-us-page .team-section .team-card:hover img {
  transform: scale(1.1);
}
.about-us-page .team-section .team-content {
  padding: 25px;
  text-align: center;
}
.about-us-page .team-section .team-content h4 {
  font-size: 22px;
  font-weight: 700;
}
.about-us-page .team-section .team-content span {
  color: #0d6efd;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}
.about-us-page .team-section .team-content p {
  color: #666;
  font-size: 15px;
}

.services-page .portfolio-section {
  padding: 80px 0;
}
.services-page .banner {
  background-color: #0761c1;
  padding: 5%;
  margin: 8% 5% 3% 5%;
  border-radius: 20px;
}
.services-page .banner h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.services-page .banner h1 span {
  background-color: #fff;
  color: #0761c1;
  padding: 0px 15px;
  border-radius: 20px;
  font-weight: 700;
}
.services-page .banner p {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
}
.services-page .services-text {
  font-size: 200px;
  font-weight: 700;
  color: rgba(41, 38, 38, 0.1607843137);
  text-align: center;
}
.services-page .service-gallery {
  margin-bottom: 100px;
}
.services-page .gallery-title {
  color: #0761c1;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.services-page .gallery-title::after {
  content: "";
  width: 60%;
  height: 4px;
  background: #0761c1;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.services-page .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}
.services-page .item {
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
  position: relative;
}
.services-page .item-large {
  grid-row: span 2;
  border: 2px solid #e5e7eb;
  height: 330px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.services-page .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: 0.6s ease;
}
.services-page .item:hover img {
  transform: scale(1.1);
}
.services-page .item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}
.services-page .item:hover::before {
  opacity: 1;
}
.services-page .rocket {
  position: absolute;
  top: 4%;
  right: 10%;
  width: 150px;
  animation: floatCard 2s ease-in-out infinite 1s;
}
@keyframes floatCard {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
.services-page .left-aim {
  position: absolute;
  left: -14%;
  top: -25%;
  width: 170px;
  animation: floatCard 2s ease-in-out infinite 1s;
}
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}
.services-page .right-aim {
  position: absolute;
  right: -14%;
  top: -25%;
  width: 170px;
  animation: floatCard 2s ease-in-out infinite 1s;
}
@keyframes floatCard {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Extra small devices (phones) */
/* Small devices (landscape phones) */
@media (min-width: 320px) and (max-width: 767px) {
  .right-up {
    z-index: 999;
  }
  .right-up img {
    width: 30px;
  }
  .section-title {
    margin-bottom: 20px;
  }
  .section-title h2 {
    font-size: 28px;
    width: 300px;
    display: flex;
    margin: auto;
    justify-content: center;
  }
  .section-title p {
    padding: 0px 15px;
    font-size: 14px;
    margin-bottom: 0px;
  }
  .btn {
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 500;
  }
  header .hamburger-line {
    background-color: #fff;
  }
  header .custom-navbar {
    top: 0px;
    padding: 5px;
    width: 100%;
    border-radius: 0;
  }
  header .custom-navbar img {
    width: 60px;
  }
  header .navbar-collapse {
    margin-top: 5px;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
  }
  header .navbar-collapse .btn {
    display: none;
  }
  header .nav-link {
    margin: 2px 0;
    color: #0062f5 !important;
  }
  header .services-toggle-wrapper {
    justify-content: space-between;
    width: 100%;
  }
  header .dropdown-menu-custom {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: unset;
    display: none;
    margin-top: 10px;
    box-shadow: none;
    background: #f5fbff;
  }
  header .dropdown-menu-custom.show {
    display: block;
  }
  header .nav-btn {
    width: 100%;
    margin-top: 15px;
  }
  .hero-section {
    margin: 20% 2% 7% 2%;
    padding: 15px 10px;
    border-radius: 10px;
  }
  .hero-section h1 {
    font-size: 26px;
    letter-spacing: 1px;
    line-height: inherit;
  }
  .hero-section p {
    font-size: 15px;
    font-weight: 400;
  }
  .hero-section .left-card {
    border-radius: 15px;
    padding: 10px;
  }
  .hero-section .travel-image {
    border-radius: 10px;
  }
  .hero-section .click {
    display: none;
  }
  .hero-section .card-move {
    right: 10px;
  }
  .marquee-section {
    margin-bottom: 15%;
  }
  .about-section {
    margin-bottom: 15%;
  }
  .about-section img {
    width: 60%;
  }
  .about-section .right-aim {
    width: 165px;
  }
  .about-section .year-card {
    width: 70%;
    height: 55px;
    margin: -45px 25px 30px auto;
    border-radius: 10px;
  }
  .about-section H3 {
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0px;
  }
  .about-section p {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    margin-bottom: 15px;
  }
  .cards-section {
    padding: 40px 0px;
  }
  .form-section h2 {
    font-size: 20px;
  }
  .we-work .bg-img {
    width: 100%;
    height: 200px;
    background-size: contain;
  }
  .we-work .cards {
    padding: 15px;
  }
  .we-work .cards h5 {
    font-size: 20px;
  }
  .we-work .cards p {
    font-size: 16px;
  }
  .we-work .cards .card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .cta-section {
    margin-bottom: 35%;
  }
  .cta-section h3 {
    font-size: 34px;
  }
  .cta-section p {
    font-size: 18px;
  }
  .cta-section img {
    width: 145px;
    left: 0%;
    top: 75%;
  }
  .testmonial-section .card-1 {
    display: none;
  }
  .testmonial-section .card-3 {
    width: 180px;
    height: 240px;
    left: 0%;
  }
  .testmonial-section .card-2 {
    width: 225px;
    height: 240px;
    left: 30%;
  }
  .testmonial-section .review {
    width: 95%;
  }
  .testmonial-section .review__text {
    font-size: 18px;
  }
  .testmonial-section .reviews__controls {
    padding: 10px 0px;
  }
}
/* Medium devices (tablets) */
/* Large devices (desktops) */
/* Extra large devices */
@media (min-width: 1200px) and (max-width: 1399px) {
  body {
    background-color: red;
  }
  header .custom-navbar {
    width: 97%;
  }
  .hero-section {
    margin: 8% 2% 6% 2%;
  }
  .hero-section h1 {
    font-size: 50px;
    line-height: 60px;
  }
  .hero-section .card-move h5 {
    font-size: 16px;
  }
  .gallry-section .click {
    left: 0;
  }
}
/* XXL devices */
.gallry-section {
  position: relative;
  margin-bottom: 8%;
  overflow: hidden;
}
.gallry-section .click {
  position: absolute;
  bottom: -2%;
  width: 200px;
  animation: floatCard 2s ease-in-out infinite 1s;
  z-index: 1;
}
.gallry-section .parent {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  min-height: 500px;
  padding: 20px;
}
.gallry-section .columns-wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}
.gallry-section .image-column {
  flex: 1;
  max-width: 350px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
}
.gallry-section .track {
  display: flex;
  flex-direction: column;
}
.gallry-section .track img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallry-section .track img:hover {
  transform: scale(1.05);
}
.gallry-section {
  /* Animations */
}
.gallry-section .up {
  animation: scrollUp 20s linear infinite;
}
.gallry-section .down {
  animation: scrollDown 20s linear infinite;
}
@keyframes scrollUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50%);
  }
}
@keyframes scrollDown {
  from {
    transform: translateY(-50%);
  }
  to {
    transform: translateY(0);
  }
}
.gallry-section {
  /* Popup */
}
.gallry-section .image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
.gallry-section .image-popup.active {
  opacity: 1;
  visibility: visible;
}
.gallry-section .image-popup img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
  animation: zoomIn 0.4s ease;
}
.gallry-section .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.gallry-section {
  /* =======================
      TABLET (≤ 991px)
     ======================= */
}
@media (max-width: 991px) {
  .gallry-section .columns-wrapper {
    gap: 15px;
  }
  .gallry-section .image-column {
    max-width: 48%;
    height: 420px;
  }
  .gallry-section {
    /* Hide third column */
  }
  .gallry-section .image-column:nth-child(3) {
    display: none;
  }
  .gallry-section .click {
    width: 150px;
  }
}
.gallry-section {
  /* =======================
      MOBILE (≤ 767px)
     ======================= */
}
@media (max-width: 767px) {
  .gallry-section .section-title p br {
    display: none;
  }
  .gallry-section .parent {
    min-height: auto;
    padding: 10px;
  }
  .gallry-section .columns-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .gallry-section .image-column {
    width: 100%;
    max-width: 100%;
    height: 300px;
  }
  .gallry-section {
    /* Show only first column on mobile */
  }
  .gallry-section .image-column:nth-child(2),
  .gallry-section .image-column:nth-child(3) {
    display: none;
  }
  .gallry-section .click {
    width: 100px;
    bottom: 0;
  }
  .gallry-section .close-btn {
    top: 10px;
    right: 15px;
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .gallry-section .columns-wrapper {
    overflow-x: auto;
    flex-direction: row;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
  }
  .gallry-section .image-column {
    min-width: 85%;
    scroll-snap-align: center;
  }
}/*# sourceMappingURL=style.css.map */