/* Floating WhatsApp Icon */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
}
.whatsapp-float img {
  width: 38px;
  height: 38px;
  display: block;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .whatsapp-float {
    right: 16px;
    bottom: 22px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 600px) {
  .whatsapp-float {
    right: 10px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}
/* Decorative angle/corner for heading */
.angle-corner {
  width: 38px;
  height: 38px;
  border-top: 6px solid #f9b233;
  border-left: 6px solid #f9b233;
  border-radius: 8px 0 0 0;
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 2;

}
.hero-content {
  position: relative;
}
@media (max-width: 1033px) {
  .hero-images {
    display: none !important;
  }
}
@media (max-width: 1033px) and (min-width: 601px) {
  .hero-section {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 2vw;
    overflow-x: hidden;
  }
  .hero-content {
    order: 1;
    width: 100%;
    max-width: 100vw;
    text-align: left;
  }
  .hero-images {
    order: 2;
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0 auto 10px auto;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
  }
  .hero-images .img1 {
    width: 98vw;
    max-width: 440px;
    height: 44vw;
    max-height: 260px;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    position: static;
    z-index: 2;
  }
  .hero-images .img2 {
    display: none;
  }
  .cta-mobile-only {
    display: block;
    margin: 10px auto 0 auto;
    width: 90vw;
    max-width: 400px;
    font-size: 1.1rem;
    order: 3;
  }
  .hero-content .cta-btn:not(.cta-mobile-only) {
    display: none;
  }
}
.cta-mobile-only {
  display: none;
}
@media (max-width: 600px) {
  .cta-mobile-only {
    display: block;
    margin: 10px auto 0 auto;
    width: 90vw;
    max-width: 400px;
    font-size: 1.1rem;
    order: 3;
  }
  .hero-content .cta-btn:not(.cta-mobile-only) {
    display: none;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Open Sans', Arial, sans-serif;
}

/* Headings and buttons use heading font */
.content h2, .section-title, .footer-company-name, .footer-services h4, .footer-newsletter h4, .footer-contact h4, .founder-text .name, .founder-text .role, .btn, .btn-book {
  font-family: var(--heading-font);
}
body, .footer {
  font-family: var(--body-font);
}

/* --- Footer Styles (migrated from footer.css) --- */
.footer {
  background: #2566bb;
  color: #fff;
  padding: 48px 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  overflow-x: hidden;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1300px;
  margin: 0 auto;
  gap: 32px;
  padding: 0 24px;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 32px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.footer-company-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--accent);
}
.footer-desc p {
  margin: 0 0 6px 0;
  font-size: 0.98rem;
  line-height: 1.5;
}
.footer-social {
  margin-top: 10px;
  display: flex;
  gap: 14px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(1.1) drop-shadow(0 2px 6px rgba(0,0,0,0.08));
  transition: transform 0.2s;
}
.footer-social img:hover {
  transform: scale(1.15);
}
.footer-services h4,
.footer-newsletter h4,
.footer-contact h4 {
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 700;
}
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-services li {
  margin-bottom: 8px;
}
.footer-services a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.footer-services a:hover {
  color: var(--accent);
}
.footer-newsletter p {
  margin: 0 0 8px 0;
  font-size: 0.98rem;
}
#newsletterForm {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
#newsletterEmail {
  padding: 10px;
  border-radius: 6px;
  border: none;
  outline: none;
  font-size: 1rem;
  flex: 1;
}
#newsletterForm button {
  background: var(--accent);
  border: none;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
#newsletterForm button:hover {
  background: #fff3d1;
}
.footer-contact p {
  margin: 6px 0;
  font-size: 0.98rem;
  word-break: break-word;
}
.footer-contact a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #050505;
}
.footer-bottom {
  border-top: 1px solid #232323;
  margin-top: 1.2rem;
  padding: 0.7rem 0 0.2rem 0;
  text-align: center;
  color: #CCCCCC;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  background: transparent;
}
.footer-bottom hr {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 12px;
}
.footer-made {
  margin-top: 0.2rem;
  color: #333333;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-heart {
  animation: footer-heartbeat 1.2s infinite;
  display: inline-block;
}
@media (max-width: 1024px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    padding: 0 8vw;
  }
  .footer-col {
    min-width: 0;
    margin-bottom: 18px;
    width: 100%;
    max-width: 100%;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .footer-newsletter {
    align-items: flex-start;
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  .footer-container {
    padding: 0 2vw;
    gap: 18px;
  }
  .footer-col {
    margin-bottom: 14px;
    width: 100%;
    max-width: 100%;
  }
  .footer-newsletter {
    align-items: flex-start;
    margin-left: 0;
    padding-left: 8px;
  }
}
@media (max-width: 480px) {
  .footer-container {
    padding: 0 1vw;
    gap: 12px;
  }
  .footer-col {
    margin-bottom: 10px;
    width: 100%;
    max-width: 100%;
  }
  .footer-newsletter {
    align-items: flex-start;
    margin-left: 0;
    padding-left: 4px;
  }
  .footer-logo {
    width: 44px;
    height: 44px;
  }
  .footer-company-name {
    font-size: 1rem;
  }
  .footer-services h4,
  .footer-newsletter h4,
  .footer-contact h4 {
    font-size: 1rem;
  }
  .footer-desc p,
  .footer-newsletter p,
  .footer-contact p {
    font-size: 0.92rem;
  }
  #newsletterEmail {
    font-size: 0.95rem;
    padding: 8px;
  }
  #newsletterForm button {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}
/* --- End Footer Styles --- */

/* Navbar Styles Only */
:root {
  --primary: #0a2e5c;
  --accent: #333333;
  --bg: #fff;
}
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--bg);
}
.navbar {
  background: var(--bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
}
.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}
.logo img {
  height: 80px;
  width: auto;
  max-height: 80px;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: right 0.4s cubic-bezier(.77,0,.18,1);
}
.nav-links a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-close {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 70vw;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 80px 30px 0 30px;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    z-index: 200;
  }
  .nav-links.open {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-close {
    display: block;
  }
}
/* End navbar */
/* Services Dropdown Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown-toggle {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.plus-icon {
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 2px;
}
.nav-dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 100;
  border-radius: 0 0 8px 8px;
  padding: 0.5em 0;
}
.nav-dropdown-menu li {
  list-style: none;
}
.nav-dropdown-menu li a {
  display: block;
  padding: 0.5em 1em;
  color: #222;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-dropdown-menu li a:hover {
  background: #f9b233;
  color: #fff;
}
@media (min-width: 900px) {
  .nav-dropdown:hover .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-toggle {
    pointer-events: none;
  }
}
@media (max-width: 899px) {
  .nav-dropdown-menu.active {
    display: block;
    position: static;
    box-shadow: none;
    background: #fff;
    border-radius: 0;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    pointer-events: auto;
  }
  .nav-dropdown-menu li a {
    padding: 0.75em 1.5em;
  }
}
 /* Slider */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  overflow-x: hidden;
}

/* Slider Container */
.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 350px;
  max-height: none;
  overflow: hidden;
}

/* Each Slide */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  min-height: 350px;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.08) grayscale(0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateX(-60px) scale(1.04);
  transition: opacity 0.7s, transform 0.7s;
}

.slide.active img {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: imgIn 0.8s cubic-bezier(.7,.2,.2,1);
}

@keyframes imgIn {
  0% { opacity: 0; transform: translateX(-60px) scale(1.04); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Content Overlay */
.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 100vw;
  width: 90vw;
  opacity: 0;
  transform: translateY(-50%) translateX(60px);
  transition: opacity 0.7s, transform 0.7s;
}

.slide.active .content {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
  animation: textIn 0.8s cubic-bezier(.7,.2,.2,1);
}

@keyframes textIn {
  0% { opacity: 0; transform: translateY(-50%) translateX(60px); }
  100% { opacity: 1; transform: translateY(-50%) translateX(0); }
}


.content h2 {
  font-size: 3vw;
  margin-bottom: 18px;
  font-weight: 900;
  line-height: 1.18;
  color: #102040;
  text-shadow: 0 2px 12px rgba(0,0,0,0.12);
  word-break: break-word;
  max-width: 90vw;
  white-space: pre-line;
  letter-spacing: 0.5px;
  padding-right: 5px;
}

/* Remove yellow underline */
.content h2::after {
  display: none;
}


.content p {
  font-size: 2.8vw;
  margin-bottom: 18px;
  /* color: #2566bb; */
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(255,255,255,0.18);
  letter-spacing: 0.2px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  /* background: #e63946; */
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}

/* .btn:hover {
  background: black;
} */

.navigation span {
  cursor: pointer;
  font-size: 2.5rem;
  color: #fff;
  user-select: none;
  transition: 0.8s;
}

/* .navigation span:hover {
  /* color: #e63946; */

/* Responsive */
@media (max-width: 1024px) {
  .content {
    left: 5%;
    max-width: 98vw;
    width: 90vw;
  }
  .content h2 {
    font-size: 5vw;
    font-weight: 900;
    line-height: 1.18;
  }
  .content p {
    font-size: 3.5vw;
    font-weight: 700;
  }
}

@media (max-width: 768px) {
  .slider {
    height: 100vh;
    min-height: 220px;
    max-height: none;
  }
  .slide img {
    height: 100vh;
    max-height: 100vh;
    min-height: 220px;
  }
  .content {
    left: 2%;
    max-width: 99vw;
    width: 96vw;
  }
  .content h2 {
    font-size: 5vw;
    font-weight: 900;
    line-height: 1.16;
    max-width: 98vw;
    white-space: pre-line;
  }
  .content p {
    font-size: 4.5vw;
    font-weight: 700;
  }
}

@media (max-width: 480px) {
  .slider {
    height: 100vh;
    min-height: 120px;
    max-height: none;
  }
  .slide img {
    height: 100vh;
    max-height: 100vh;
    min-height: 120px;
  }
  .content {
    left: 1%;
    max-width: 100vw;
    width: 98vw;
    padding-top: 18vw;
    padding-bottom: 18vw;
    box-sizing: border-box;
  }
  .content h2 {
    font-size: 8vw;
    font-weight: 900;
    line-height: 1.13;
    max-width: 99vw;
    white-space: pre-line;
  }
  .content p {
    font-size: 6vw;
    font-weight: 700;
  }
  .btn { padding: 10px 18px; font-size: 1.1rem; }
  .navigation span { font-size: 2rem; }
}
 /* end Slider */
/*  EXCELLENCE  */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 50px 5%;
  gap: 30px;
  min-height: 420px;
}

.hero-content {
  flex: 1 1 450px;
  animation: fadeInLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: 2.1rem;
  font-family: var(--heading-font);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
  max-width: 520px;
  word-break: break-word;
  /* Show full heading always */
  display: block;
  /* -webkit-line-clamp: unset; */
  -webkit-box-orient: unset;
  overflow: visible;
}

.hero-content h2 {
  color: #0056d6;
  font-size: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 700;
  margin: 10px 0 22px;
}

.hero-content p {
  font-size: 1.18rem;
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #222;
}

.stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-box .icon {
  background: #0056d6;
  color: #fff;
  font-size: 1.5rem;
  padding: 10px;
  border-radius: 5px;
}

.stat-box h3 {
  font-size: 2.1rem;
  font-family: var(--heading-font);
  font-weight: 800;
  margin-bottom: 3px;
}

.stat-box span {
  font-size: 1.08rem;
  font-family: var(--heading-font);
  font-weight: 600;
  color: #666;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #0056d6;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #003c99;
}

/* Responsive, overlapping images like sample */
.hero-images {
  flex: 1 1 450px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0;
  position: relative;
  min-width: 320px;
  min-height: 320px;
  animation: fadeInRight 1s ease forwards;
}

.hero-images {
  position: relative;
  min-width: 0;
  min-height: 0;
  width: 100%;
  max-width: 100vw;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 0;
}
.hero-images .img1 {
  width: 420px;
  height: 300px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  position: relative;
  z-index: 2;
  max-width: 100%;
}
.hero-images .img2 {
  width: 270px;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  position: absolute;
  left: 180px;
  top: 170px;
  z-index: 3;
  background: #fff;
  border: 6px solid #fff;
  max-width: 90vw;
}

/* Animations */
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-50px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-section {
  flex-direction: column;
  text-align: center;
  align-items: center;
  min-height: 420px; /* Match desktop height */
  }
  .hero-images {
    justify-content: center;
    min-width: 0;
    min-height: 0;
    margin-top: 30px;
  }
  .hero-images .img1 {
    width: 300px;
    height: 200px;
  }
  .hero-images .img2 {
    width: 170px;
    height: 110px;
    left: 140px;
    top: 70px;
  }
  .stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-images {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    min-width: 0;
    min-height: 0;
  }
  .hero-images .img1 {
    width: 180px;
    height: 110px;
  }
  .hero-images .img2 {
    width: 100px;
    height: 65px;
    left: 70px;
    top: 40px;
  }
}

@media (max-width: 600px) {
  .hero-section {
  padding: 10px 2vw;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
  min-height: 420px; /* Match desktop height */
  }
  .hero-content {
    order: 1;
    width: 100%;
    max-width: 100vw;
    text-align: left;
  }
  .hero-images {
    order: 2;
    width: 100%;
    min-width: 0;
    min-height: 0;
    margin: 0 auto 10px auto;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
  }
  .hero-images .img1 {
    width: 98vw;
    max-width: 440px;
    height: 44vw;
    max-height: 260px;
    display: block;
    margin: 0 auto;
    border-radius: 14px;
    position: static;
    z-index: 2;
  }
  .hero-images .img2 {
    display: none;
  }
  .cta-btn {
    display: block;
    margin: 10px auto 0 auto;
    width: 90vw;
    max-width: 400px;
    font-size: 1.1rem;
    order: 3;
  }
}


 /* End EXCELLENCE */

 /* Services */
 /* Section styles */

 /* Reset + basic prevention of horizontal scroll */
* { box-sizing: border-box; }
html,body { margin:0; padding:0; }
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:#fff;
  color:#111;
  overflow-x:hidden; /* important: no horizontal page scroll */
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}



.services-section {
  max-width:1200px;
  margin: 30px auto;
  padding: 0 0px;
  width: 100%;
  box-sizing: border-box;
}
.section-title {
  text-align:center;
  font-size:28px;
  margin:10px 0 22px;
  font-weight:700;
}

/* slider wrapper */
.slider-wrapper {
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

/* nav arrows */
.nav {
  background: transparent;
  border: none;
  font-size:28px;
  padding:8px 12px;
  cursor:pointer;
  color:#0a2e5c;
  user-select:none;
}
.nav:active { transform: scale(.98); }

/* viewport hides overflow */
.slider-viewport {
  overflow:hidden;
  flex:1 1 auto;
  padding: 10px 0;
}

/* track as flex row */
.slider-track {
  display:flex;
  gap:18px;
  align-items:stretch;
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}

/* card */
.service-card {
  background:#fff;
  border-radius:6px;
  box-shadow:0 6px 18px rgba(10,46,92,0.06);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  flex: 0 0 calc(100% / 1); /* default 1 per view, overridden by media queries via JS sizing ideally */
  min-width: 0; /* prevents overflow from long text */
}

/* image */
.service-card .img-link {
  display:block;
  width:100%;
  aspect-ratio: 4/3;
  overflow:hidden;
}
.service-card img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition: transform .5s ease;
}
.service-card:hover img { transform: scale(1.04); }

/* card body */
.card-body {
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1 1 auto;
}
.card-body h3 { margin:0; font-size:16px; color:#111; }
.card-body p { margin:0; font-size:13px; color:#666; line-height:1.35; }

/* Book Now button */
.btn-book {
  display:inline-block;
  margin-top:auto;
  background:#0a2e5c;
  color:#fff;
  text-decoration:none;
  padding:8px 12px;
  border-radius:4px;
  font-weight:600;
  width:max-content;
  transition: background 250ms ease, transform 150ms ease;
}
.btn-book:hover,
.btn-book:focus {
  background:#f6b656;
  color:#111;
  transform: translateY(-2px);
  outline: none;
}

/* Dots */
.dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:14px;
}
.dots button {
  width:10px; height:10px; border-radius:50%;
  border:none; background:#ddd; cursor:pointer;
}
.dots button.active { background:#e24b3b; }

/* RESPONSIVE: number of visible cards (we'll rely on JS to clone correct number and compute width)
   But for layout we set flex-basis using CSS breakpoints for better initial rendering */
@media (min-width: 1100px) {
  .service-card { flex: 0 0 calc((100% - 18px * 3) / 4); } /* show 4 */
}
@media (min-width: 800px) and (max-width:1099px) {
  .service-card { flex: 0 0 calc((100% - 18px * 2) / 3); } /* show 3 */
}
@media (min-width: 481px) and (max-width:799px) {
  .service-card { flex: 0 0 calc((100% - 18px) / 2); } /* show 2 */
}

@media (max-width:480px) {
  .service-card {
    flex: 0 0 98vw;
    max-width: 98vw;
    min-width: 0;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(10,46,92,0.10);
  }
  .service-card .img-link {
    aspect-ratio: 4/3;
    border-radius: 8px 8px 0 0;
  }
  .service-card img {
    border-radius: 8px 8px 0 0;
  }
  .card-body {
    padding: 7px;
    gap: 4px;
  }
  .card-body h3 {
    font-size: 13px;
  }
  .card-body p {
    font-size: 10px;
  }
  .btn-book {
    font-size: 11px;
    padding: 6px 8px;
    border-radius: 4px;
  }
  .nav {
    display: flex !important;
    width: 32px;
    height: 32px;
    font-size: 22px;
    padding: 4px 6px;
  }
}

/* make buttons accessible on small screens */
.nav { display:flex; align-items:center; justify-content:center; width:42px; height:42px; border-radius:6px; }
@media (max-width:600px) {
  .nav { display:none; } /* hide arrows on very small screens (touch drag used) */
}

/* Mission */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* body {
  background: #000;
  color: #fff;
} */

/* Section background */
.mission-section {
  /* background: url('1.png') no-repeat center center/cover; */
  position: relative;
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: white;
}

/* Container */
.mission-container {
  position: relative;
  display: flex;
  width: 100%;
  max-width: 1300px;
  gap: 30px;
  flex-wrap: wrap;
}

/* Left side */
.left-panel {
  flex: 1 1 300px;
  background: #2566bb;
  padding: 30px;
  border-radius: 8px;
  animation: fadeInLeft 1s ease forwards;
}

.left-panel h1 {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

/* Right side */
.right-panel {
  flex: 2 1 500px;
  background: #2566bb;
  padding: 30px;
  border-radius: 8px;
  animation: fadeInRight 1s ease forwards;
}

.block {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.icon {
  font-size: 2rem;
  color: #2a8eff;
}

.text h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/* Animations */
@keyframes fadeInLeft {
  from {opacity: 0; transform: translateX(-40px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes fadeInRight {
  from {opacity: 0; transform: translateX(40px);}
  to {opacity: 1; transform: translateX(0);}
}

/* Responsive */
@media (max-width: 1024px) {
  .mission-container {
    flex-direction: column;
  }
  .left-panel, .right-panel {
    width: 100%;
    text-align: center;
  }
  .block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .mission-section {
    padding: 40px 5%;
  }
  .left-panel h1 {
    font-size: 1.7rem;
    /* box-sizing: 20px; */
  }
  .text h2 {
    font-size: 1.1rem;
  }
  .text p {
    font-size: 0.95rem;
  }
}

/* Mission End */

/* Faq */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
}

.faq-section {
  padding: 50px 5%;
  text-align: center;
}

.faq-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1 1 400px;
}


/* New FAQ main heading */
.faq-main-heading {
  color: #333333;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 38px;
  text-align: center;
  letter-spacing: 0.5px;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #0056d6;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  background: #2566bb;
  color: #fff;
  text-align: left;
  padding: 12px 15px 32px 15px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: "\25BC"; /* down triangle arrow */
  position: absolute;
  right: 18px;
  bottom: 8px;
  left: auto;
  transform: rotate(0deg);
  font-size: 1.2em;
  transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
  transform: rotate(180deg);
}

.accordion-body {
  background: #f9f9f9;
  color: #333;
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body ul {
  padding: 10px 0 10px 20px;
  list-style: disc;
}

.accordion-item.active .accordion-body {
  max-height: 400px; /* enough for content */
}

/* Responsive */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-main-heading {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }
}

/* Faq End */

/* Contact */
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* body {
  background: #0a4ea1;
  color: white;
} */

.transport-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background: linear-gradient(135deg, #0a4ea1, #1558c0);
  flex-wrap: wrap;
}

.transport-content {
  max-width: 700px;
}

.transport-content h1 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.4;
}

.transport-content p {
  font-size: 1rem;
  color: #dfe8f6;
  line-height: 1.6;
}

.transport-btn button {
  background: #1e9ef5;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.transport-btn button:hover {
  background: #0c7bc0;
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
  .transport-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .transport-btn {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .transport-content h1 {
    font-size: 1.8rem;
  }
  .transport-content p {
    font-size: 0.95rem;
  }
  .transport-btn button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .transport-content h1 {
    font-size: 1.4rem;
  }
  .transport-content p {
    font-size: 0.85rem;
  }
  .transport-btn button {
    width: 100%;
    padding: 12px;
  }
}

/* Contact End */