@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Bogle&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sedan+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #fff;
  color: #222;
  overflow-x: hidden;
}

.head-title {
  font-family: "Sedan SC", serif;
  font-weight: 800;
  font-style: normal;
  color: #568edb !important;
}
/* ----------------------------------------------------------------------------------------- NAVBAR  */
/* ---------- Top Header ---------- */
.top-header {
  background: #002244;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
}

.top-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-header-inner .header-left {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header-inner .header-right {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.top-header-inner .header-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ---------- Navbar ---------- */
.navbar {
  position: relative;
  width: 100%;
  padding: 15px 0;
  transition: all 0.3s ease;
  z-index: 999;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* --- Logo section --- */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  display: block;
  height: 70px;
  width: 90px;
  object-fit: contain;
}

.logo h6 {
  font-size: 1rem;
  color: #002244;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0;
  white-space: nowrap;
}

/* --- Hamburger Menu --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1000;
}

.hamburger-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #002244;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* --- Navbar links --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: #002244;
  font-weight: 600;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
  display: inline-block;
}

.nav-links li a:hover {
  color: #0077b6;
}

.nav-links li a.active {
  color: #0077b6;
  font-weight: 700;
}

.nav-links li a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0077b6;
  border-radius: 2px;
}

/* --- CTA Button --- */
.btn-cta {
  background: #0077b6;
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  text-align: center;
}

.btn-cta:hover {
  background: #005f87;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 119, 182, 0.3);
}

/* ---------- Sticky Navbar ---------- */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

body.scrolled .top-header {
  transform: translateY(-100%);
}

/* Main content */
.main-content {
  padding: 40px 0;
  min-height: 100vh;
}

/* ============ Responsive Design ============ */

/* --- Large Tablets (<= 1024px) --- */
@media (max-width: 1024px) {
  .nav-links {
    gap: 20px;
  }

  .btn-cta {
    padding: 8px 16px;
    font-size: 14px;
  }

  .logo h6 {
    font-size: 0.95rem;
  }
}

/* --- Tablets (<= 900px) --- */
@media (max-width: 900px) {
  .top-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .top-header-inner .header-left,
  .top-header-inner .header-right {
    font-size: 12px;
  }

  .top-header-inner .header-right {
    gap: 10px;
  }

  .nav-links {
    gap: 15px;
  }
}

/* --- Mobile Navbar (<= 768px) --- */
@media (max-width: 768px) {
  /* Top Header */
  .top-header {
    padding: 12px 0;
    font-size: 12px;
  }

  .top-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-header-inner .header-left {
    font-size: 13px;
    width: 100%;
  }

  .top-header-inner .header-right {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    font-size: 12px;
  }

  /* Navbar */
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    padding-left: 30px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 998;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links li {
    margin: 0;
    padding: 0;
    width: 100%;
    display: block;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-links li a {
    padding: 18px 0;
    width: 100%;
    display: block;
    font-size: 16px;
    color: #002244;
    background: #fff;
  }

  .nav-links li a:hover {
    background: #f8f9fa;
    color: #0077b6;
  }

  .nav-links li a.active::after {
    display: none;
  }

  .nav-links li a.active {
    background: #f8f9fa;
    color: #0077b6;
  }

  .logo img {
    height: 60px;
    width: 80px;
  }

  .logo h6 {
    font-size: 0.85rem;
  }

  .navbar {
    padding: 12px 0;
  }

  .navbar.sticky {
    padding: 10px 0;
  }
}

/* --- Small Mobile (<= 480px) --- */
@media (max-width: 480px) {
  .top-header {
    font-size: 11px;
    padding: 10px 0;
  }

  .top-header-inner .header-left {
    font-size: 12px;
  }

  .top-header-inner .header-right {
    font-size: 11px;
  }

  .top-header-inner .header-right span {
    font-size: 11px;
  }

  .logo img {
    height: 50px;
    width: 70px;
  }

  .logo h6 {
    font-size: 0.75rem;
    max-width: 150px;
    line-height: 1.2;
    white-space: normal;
  }

  .hamburger {
    width: 26px;
    height: 18px;
  }

  .container {
    width: 95%;
  }

  .nav-links {
    padding-top: 70px;
    padding-left: 20px;
  }

  .nav-links li a {
    padding: 14px 0;
    font-size: 15px;
  }
}

/* --- Extra Small Devices (<= 360px) --- */
@media (max-width: 360px) {
  .logo h6 {
    font-size: 0.7rem;
    max-width: 120px;
  }

  .top-header {
    padding: 8px 0;
  }

  .top-header-inner .header-left {
    font-size: 11px;
  }

  .top-header-inner .header-right span {
    font-size: 10px;
  }

  .logo img {
    height: 45px;
    width: 60px;
  }
}
/* ---------------------------------------------------------------------------------------- INDEX PAGE  */
/* ******************************************** SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%); */
  z-index: 1;
}

.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
  z-index: 2;
  animation: fadeInUp 1.2s ease;
}

.content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-cta {
  background: #ffd369;
  color: #0a2a43;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #ffca3a;
  transform: translateY(-3px);
}

/* Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: white;
  cursor: pointer;
  z-index: 3;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
  left: 25px;
}
.slider-nav.next {
  right: 25px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dots div {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots div.active {
  background: #ffd369;
}

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

/* Responsive */
@media (max-width: 768px) {
  .content {
    left: 5%;
    max-width: 90%;
    text-align: center;
  }

  .content h1 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .btn-cta {
    padding: 10px 22px;
  }

  .slider-nav {
    font-size: 22px;
    padding: 8px 12px;
  }
}

/* ******************************************** About Section with Animated Abstract Background */
.about-section {
  background: linear-gradient(135deg, #0a2a43 0%, #0f4c75 100%);
  color: #fff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 50px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  background: #ffd369;
  color: #0a2a43;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.cta-btn:hover {
  background: #ffca3a;
  transform: translateY(-3px);
}

.about-image-card {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  transition: all 0.4s ease;
}

.about-image-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Decorative Abstract Circles */
.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  z-index: 0;
}

.about-section::before {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -100px;
  animation: floatCircle 7s ease-in-out infinite;
}

.about-section::after {
  width: 300px;
  height: 300px;
  bottom: -120px;
  right: -120px;
  animation: floatCircle 9s ease-in-out infinite reverse;
}

@keyframes floatCircle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(20px);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    order: 2;
  }

  .about-image-card {
    order: 1;
    width: 90%;
    margin-bottom: 30px;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

/* ******************************************************* KEY SERVICES SECTION  */
.our-services {
  background: linear-gradient(135deg, #08142b, #0f2747);
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #fff;
}

.services-header p {
  color: #d0d6e1;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  justify-items: center;
}

.service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-item::before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
  transition: 0.5s ease;
}

.service-item:hover::before {
  top: 0;
}

.service-item:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.service-item i {
  font-size: 38px;
  color: #ffd700;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-item:hover i {
  transform: scale(1.15);
  color: #fff176;
}

.service-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.service-item p {
  font-size: 0.95rem;
  color: #cfd8e3;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 1rem;
  }

  .service-item {
    padding: 30px 20px;
  }
}

/* ******************************************************************* OUR CLIENTS SECTIONS */
.clients-section {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a1a2f, #001a33);
  text-align: center;
  overflow: hidden;
}

.clients-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.clients-subtitle {
  font-size: 1.1rem;
  color: #d6e0f0;
  margin-bottom: 50px;
}

.client-carousel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  animation: scrollClients 20s linear infinite;
}

/* Individual Logo Styling */
.client-logo {
  flex: 0 0 auto;
  width: 140px;
  height: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.client-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.1);
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
}

/* Subtle moving animation for carousel effect */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Make it responsive */
@media (max-width: 768px) {
  .client-carousel {
    gap: 30px;
    animation: none;
    flex-wrap: wrap;
  }
  .client-logo {
    width: 100px;
    height: 70px;
  }
}

/* ************************************************************* CTA Section */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 100px 20px;
  background: linear-gradient(135deg, #001f3f, #003366, #00509e);
}

/* Subtle animated glow overlay */
.cta-overlay::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.15),
    transparent 60%
  );
  animation: glowMove 10s infinite linear;
}

@keyframes glowMove {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.cta-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 40px;
}

/* Buttons */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Primary Button */
.cta-btn {
  background: linear-gradient(90deg, #ffcc00, #ff8800);
  color: #002244;
  box-shadow: 0 0 20px rgba(255, 200, 0, 0.4);
}

.cta-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255, 200, 0, 0.7);
}

/* Outline Button */
.cta-btn-outline {
  border: 2px solid #ffcc00;
  color: #ffcc00;
  background: transparent;
}

.cta-btn-outline:hover {
  background: #ffcc00;
  color: #002244;
  transform: scale(1.08);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

/* ******************************************************  WHY CHOOSE US */
.why-choose-us {
  position: relative;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
  background: linear-gradient(135deg, #041a2f, #0b2544);
}

.why-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 119, 255, 0.1),
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, rgba(0, 255, 204, 0.1), transparent 50%);
  animation: floatBg 10s infinite alternate ease-in-out;
  z-index: 0;
}

@keyframes floatBg {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

.why-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #002244;
}

.why-title span {
  color: #00c2ff;
}

.why-subtitle {
  color: #6c757d;
  margin-bottom: 60px;
  font-size: 1.1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-items: center;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  color: #6c757d;
}

.why-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 194, 255, 0.3), transparent 70%);
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 194, 255, 0.25);
}

.icon-box {
  font-size: 2.5rem;
  color: #00c2ff;
  margin-bottom: 15px;
}

.why-card h3 {
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #d6e3f2;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2rem;
  }
  .why-subtitle {
    font-size: 1rem;
  }
}

/* *************************************************************** FAQ SECTION */
.faq-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #08142b, #0f2747);
  color: #fff;
  overflow: hidden;
}

.faq-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #cfd8e3;
  margin-bottom: 60px;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 20px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.faq-question {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.6;
  color: #d0d6e1;
  transition: max-height 0.4s ease, padding 0.4s ease;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px; /* adjust based on content */
  margin-top: 15px;
}

/* Background floating shapes */
.faq-bg-shapes span {
  position: absolute;
  display: block;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: floatShapes 20s infinite linear;
}

.faq-bg-shapes span:nth-child(1) {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
}
.faq-bg-shapes span:nth-child(2) {
  top: 70%;
  left: 5%;
  width: 60px;
  height: 60px;
  animation-delay: 5s;
}
.faq-bg-shapes span:nth-child(3) {
  top: 30%;
  left: 80%;
  width: 50px;
  height: 50px;
  animation-delay: 3s;
}
.faq-bg-shapes span:nth-child(4) {
  top: 80%;
  left: 75%;
  width: 70px;
  height: 70px;
  animation-delay: 7s;
}
.faq-bg-shapes span:nth-child(5) {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation-delay: 10s;
}

@keyframes floatShapes {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) translateX(20px) rotate(180deg);
  }
  100% {
    transform: translateY(0) translateX(0) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 80px 15px;
  }
  .faq-header h2 {
    font-size: 2rem;
  }
  .faq-header p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* *********************************************************************** FLEETS SECTION */
.fleet-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #061424 0%, #0b2140 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

/* subtle animated waves background */
.fleet-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: url('images/wave-bg.svg') center/cover no-repeat; */
  opacity: 0.08;
  animation: waveMove 12s linear infinite;
}

@keyframes waveMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 0;
  }
}

/* Header */
.fleet-header h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  background: linear-gradient(90deg, #00b4db, #00f2fe);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.fleet-header p {
  color: #cfd8e3;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 70px;
}

/* Grid */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Fleet Card */
.fleet-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.fleet-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fleet-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
  transform: scale(1.1);
}

.fleet-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fleet-card:hover .fleet-overlay {
  opacity: 1;
}

.fleet-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.fleet-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #fff;
}

.fleet-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: #cbd5e1;
}

.fleet-content ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.fleet-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b4db, #00f2fe);
  color: #001a33;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.fleet-btn:hover {
  background: linear-gradient(90deg, #00f2fe, #00b4db);
  color: #002244;
  transform: scale(1.05);
}

.fleet-cta {
  margin-top: 70px;
}

.fleet-main-btn {
  background: linear-gradient(90deg, #00b4db, #00f2fe);
  color: #002244;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 180, 219, 0.3);
  transition: all 0.3s ease;
}

.fleet-main-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(0, 180, 219, 0.5);
}

@media (max-width: 768px) {
  .fleet-header h2 {
    font-size: 2.2rem;
  }

  .fleet-header p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* ----------------------------------------------------------------------------------- FOOTER SECTION */
.footer-section {
  background: linear-gradient(135deg, #071324, #0c1f3c);
  color: #fff;
  padding: 80px 20px 40px;
  position: relative;
  overflow: hidden;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  height: 70px;
  width: auto;
  margin-bottom: 15px;
}

.footer-about p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #00b4db;
  margin-top: 8px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.footer-col ul li a {
  text-decoration: none;
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00b4db;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: #00b4db;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #cbd5e1;
  font-size: 1.1rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
  color: #00b4db;
  transform: scale(1.1);
}

.sub-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.sub-footer p {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px 30px;
  }

  .footer-col h4 {
    font-size: 1.1rem;
  }

  .footer-col ul li {
    font-size: 0.9rem;
  }

  .footer-about p {
    font-size: 0.9rem;
  }
}
/* ------------------------------------------------------------------------------ ABOUT US PAGE */

/* ********************************** Hero Section ******************* */
.hero-section {
  position: relative;
  height: 50vh;
  background: url("../Images/hero-about.jpg") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 20, 50, 0.6); */
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  animation: fadeIn 1.2s ease forwards;
}

.hero-content p {
  font-size: 1rem;
  color: #d0e3ff;
  animation: slideUp 1.4s ease forwards;
}

.hero-content p span {
  color: #00b4db;
  margin: 0 5px;
}

/* ******************************************************** About: Company Overview === */
.about-company-overview {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e9f1fa, #fdfdfd);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text2 {
  color: #002244 !important;
}

.about-text h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #ffffff;
  position: relative;
}

.about-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4db;
  margin-top: 8px;
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #6c757d;
  font-size: 1rem;
}

.about-company-overview .btn-explore {
  display: inline-block;
  padding: 12px 30px;
  background: #00b4db;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-company-overview .btn-explore:hover {
  background: #0093c4;
  transform: scale(1.05);
}

/* --- Images --- */
.about-images {
  flex: 1 1 500px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-images .img-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-images .img-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-images .img-card:hover img {
  transform: scale(1.1);
}

/* --- Animations --- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in,
.slide-in-left {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible,
.slide-in-left.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-images .img-card img {
    height: 180px;
  }
}

/* ***************************************************************** OUR MISSION --- */
.mission-section {
  background: linear-gradient(135deg, #001f3f, #004080);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.mission-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.mission-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.mission-text {
  flex: 1;
  animation: fadeInLeft 1.2s ease forwards;
  opacity: 0;
}

.mission-text h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00bcd4;
}

.mission-text p {
  font-size: 18px;
  line-height: 1.8;
}

.mission-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
}

.mission-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.mission-image img:hover {
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .mission-content {
    flex-direction: column;
    text-align: center;
  }
  .mission-text,
  .mission-image {
    animation: fadeInUp 1s ease forwards;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(60px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* *************************************************************** OUR VISION */
.vision-block {
  background: linear-gradient(135deg, #001a33, #003366);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.vision-block::before,
.vision-block::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: radial-gradient(circle, #ffffff 0%, transparent 70%);
}

.vision-block::before {
  top: -80px;
  right: -100px;
  width: 250px;
  height: 250px;
  animation: vbFloat1 6s infinite ease-in-out;
}

.vision-block::after {
  bottom: -80px;
  left: -100px;
  width: 200px;
  height: 200px;
  animation: vbFloat2 7s infinite ease-in-out reverse;
}

@keyframes vbFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes vbFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
}

.vision-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  padding: 0 20px;
}

.vision-text-box {
  flex: 1;
  min-width: 320px;
  opacity: 0;
  animation: vbFadeInRight 1s forwards;
}

.vision-text-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #00bcd4;
  font-weight: 700;
}

.vision-text-box p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #e3e3e3;
}

.vision-image-box {
  flex: 1;
  min-width: 320px;
  text-align: center;
  opacity: 0;
  animation: vbFadeInLeft 1s forwards;
}

.vision-image-box img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.vision-image-box img:hover {
  transform: scale(1.05);
}

/* Unique animations */
@keyframes vbFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes vbFadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .vision-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .vision-text-box,
  .vision-image-box {
    animation: vbFadeInUp 1s forwards;
  }

  @keyframes vbFadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ****************************************************** WHY CHOOSE US */
.why-choose-us {
  background: linear-gradient(135deg, #f1f6fc, #e9f1fa);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #002244;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4db;
  margin: 10px auto 0;
}

.section-subtitle {
  color: #444;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.why-card .icon {
  font-size: 2.5rem;
  color: #00b4db;
  margin-bottom: 20px;
}

.why-card h3 {
  font-size: 1.3rem;
  color: #002244;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Background Abstract Shapes */
.why-choose-us::before,
.why-choose-us::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 180, 219, 0.1);
  z-index: 0;
}

.why-choose-us::before {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -150px;
}

.why-choose-us::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -120px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  .why-card {
    padding: 30px 20px;
  }
}

/* ------------------------------------------------------------------------------ SERVICE PAGE */
/* ******************************************************************* Introduction Section --- */
.introduction-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e9f1fa, #f7fbff);
  overflow: hidden;
}

.intro-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.intro-text {
  flex: 1 1 500px;
  z-index: 2;
}

.intro-text h2 {
  font-size: 2.4rem;
  color: #002244;
  margin-bottom: 20px;
  position: relative;
}

.intro-text h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #00b4db;
  margin-top: 10px;
}

.intro-text p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.intro-btn {
  display: inline-block;
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.intro-btn:hover {
  background: linear-gradient(90deg, #0083b0, #00b4db);
  transform: scale(1.05);
}

.intro-image {
  flex: 1 1 450px;
  position: relative;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.intro-image:hover img {
  transform: scale(1.03);
}

.introduction-section::before,
.introduction-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 180, 219, 0.1);
  animation: float 6s ease-in-out infinite alternate;
}

.introduction-section::before {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
}

.introduction-section::after {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -100px;
}

/* Animations */
@keyframes float {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(25px);
  }
}

.fade-in,
.slide-in-left {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.slide-in-left {
  transform: translateX(-50px);
}

.fade-in.visible,
.slide-in-left.visible {
  opacity: 1;
  transform: translate(0);
}

/* Responsive */
@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .intro-btn {
    margin-top: 15px;
  }

  .intro-image img {
    height: auto;
  }
}

/* ----------------------------------------------------------------------------- SERVICES - SERVICES */
.service-categories {
  padding: 100px 20px;
  background: linear-gradient(135deg, #091528, #102c53);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4db;
  margin: 8px auto 0;
}

.section-header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #cfd8e3;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
  filter: brightness(1) invert(0.6);
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #00b4db;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #cfd8e3;
}

.service-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

/* ------------------------------------------------------------------------------------- FLEET PAGE */
.fleet-intro {
  padding: 100px 20px;
  background: linear-gradient(135deg, #091528, #102c53);
  color: #fff;
}

.intro-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00b4db;
  position: relative;
}

.intro-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00b4db;
  margin-top: 8px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #6c757d;
}

.btn-explore {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background: linear-gradient(90deg, #0083b0, #00b4db);
  transform: scale(1.05);
}

.intro-image {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
}

.img-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s ease;
}

.img-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

/* Responsive */
@media (max-width: 768px) {
  .intro-content {
    flex-direction: column-reverse;
  }
  .intro-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .intro-text p {
    font-size: 1rem;
  }
  .img-card img {
    height: 250px;
  }
}

/* ************************************************************ FLEET CARD */
.fleet-showcase {
  padding: 100px 20px;
  background: linear-gradient(135deg, #061529, #0b2347);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #00b4db;
  margin-bottom: 10px;
}

.section-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #cfd8e3;
  font-size: 1.1rem;
  line-height: 1.6;
}

.fleet-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.fleet-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-content {
  padding: 25px;
  text-align: left;
  flex: 1;
}

.fleet-content h3 {
  color: #00b4db;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.fleet-content p {
  color: #cfd8e3;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.fleet-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 25px;
  background: linear-gradient(90deg, #00b4db, #0083b0);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.fleet-btn:hover {
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transform: scale(1.05);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .section-header p {
    font-size: 1rem;
  }
  .fleet-content h3 {
    font-size: 1.1rem;
  }
}
/* ************************************************************ FLEET SINGLE */
.fleets-single {
  background: #f8fafc;
  padding: 30px;
}

.fleets-card {
  max-width: 950px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.fleets-card:hover {
  transform: translateY(-6px);
}

.fleets-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.fleets-content {
  padding: 40px 30px;
  text-align: center;
}

.fleets-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.fleets-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 25px;
}

.fleets-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}
/* ************************************************************ RELATED FLEET  */

.related-fleets {
  background: #f0f2f5;
  margin: 10px;
  padding: 10px;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

.fleet-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.fleet-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.fleet-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

.fleet-name {
  padding: 12px 10px;
  font-size: 18px;
  font-weight: 600;
  color: #454752;
}

/* ------------------------------------------------------------------------------ CONTACT PAGE */
/* ************************************************************************* Contact Section */
.contact-section {
  position: relative;
  background: linear-gradient(135deg, #0a0a0a, #000000, #333);
  color: #fff;
  padding: 100px 20px;
  overflow: hidden;
  text-align: center;
}

/* Background Image Overlay */
.contact-bg {
  position: absolute;
  inset: 0;
  background: url("../Images/contactform.jpg") center/cover no-repeat;
  opacity: 0.1;
  animation: pulseBg 6s infinite alternate;
  z-index: 0;
}

@keyframes pulseBg {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.25;
  }
}

/* Container */
.contact-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

/* Title */
.contact-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
}

.contact-subtitle {
  font-size: 18px;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.2s forwards;
}

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  animation: fadeInUp 1s ease 0.4s forwards;
}

/* Cards */
.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Icons */
.icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #00aaff;
}

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.contact-card a {
  color: #00aaff;
  text-decoration: none;
}

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

/* Button */
.contact-btn {
  margin-top: 60px;
}

.contact-btn a {
  background-color: #00aaff;
  color: #fff;
  padding: 14px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.5);
}

.contact-btn a:hover {
  background-color: #0088cc;
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 170, 255, 0.7);
}

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

.contact-form-section {
  background: linear-gradient(135deg, #e9f1fa, #fdfdfd);
  padding: 100px 20px;
  text-align: center;
}

.contact-form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 50px 40px;
  animation: fadeInUp 1s ease forwards;
}

.contact-form-container h2 {
  font-size: 2.2rem;
  color: #002244;
  margin-bottom: 15px;
}

.contact-form-container p {
  color: #666;
  margin-bottom: 40px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #00b4db;
  box-shadow: 0 0 8px rgba(0, 180, 219, 0.2);
}

.captcha-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.captcha-box {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.captcha-img {
  height: 50px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.reload-btn {
  background: none;
  border: none;
  color: #00b4db;
  font-size: 20px;
  margin-left: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.reload-btn:hover {
  transform: rotate(180deg);
}

.submit-btn {
  background: #00b4db;
  color: #fff;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.submit-btn:hover {
  background: #0093c4;
  transform: translateY(-3px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 40px 25px;
  }
}

/* ********************************************************************** CONTACT MAP */
.location-section {
  background: linear-gradient(135deg, #0a183d 0%, #1e3a8a 100%);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.location-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.map-title {
  color: #ffffff !important;
}

.location-section .section-subtitle {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 30px;
}

.location-section .map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 6px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.location-section .map-container:hover {
  transform: scale(1.02);
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.6);
}

/* ------------------------------------------------------------------------------ GALLERY PAGE */

.fleet-gallery {
  background: #f1f5f9;
  text-align: center;
  padding: 80px 20px;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.gallery-subtitle {
  font-size: 1.1rem;
  color: #475569;
  margin-bottom: 50px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.95rem;
  padding: 8px 12px;
  text-align: center;
}
