/* Services Section */
.services-section {
  background-color: #fff; /* adjust if needed */
}

.services-section .section-title {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

/* List Styling */
.services-list {
  list-style-type: disc; /* default bullet */
  padding-left: 20px;
  color: #333;
}

.services-list li {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 1rem;
}

/* Airplane Image */
.airplane-img {
  max-width: 300px;   /* control image size */
  margin: 0 auto;
  display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-section .section-title {
    font-size: 1.5rem;
    text-align: center;
  }
  .services-list {
    padding-left: 15px;
  }
  .airplane-img {
    max-width: 200px;
    margin-bottom: 20px;
  }
}


/* VIP Section */
.vip-section {
  background: linear-gradient(120deg, #001f3f 80%, #004080 100%);
  color: #fff;
}

.vip-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.vip-text {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
}

.vip-list li {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.vip-list i {
  color: #00aaff; /* accent star color */
  font-size: 1.2rem;
}

/* ==========================
   CSS (Save in mycss.css)
   ========================== */
:root{
  --soft-bg: #eaf3f8; /* light bluish background */
  --text-muted: #6c7a89;
}
.whatwedo{
  background: var(--soft-bg);
  padding: 4rem 0;
}
.whatwedo h2{
  font-weight: 700;
  letter-spacing: .06em;
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.whatwedo .lead{
  color: var(--text-muted);
  line-height: 1.8;
}
.wwd-img{
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
.feature-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
}
.feature-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.feature-icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--soft-bg);
  display: grid; place-items: center;
  font-size: 1.25rem;
}
.feature-title{
  margin: 0;
  letter-spacing: .08em;
  font-weight: 600;
  font-size: .95rem;
}


/* Luxury Section */
.luxury-section {
  background-color: #fff; /* clean background */
}

.luxury-text {
  font-size: 1.5rem;         /* larger text */
  color: #5a6b75;            /* soft greyish-blue like in image */
  font-weight: 400;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.luxury-text .highlight {
  font-weight: 600;          /* bold for highlighted words */
  color: #2c2f33;            /* darker shade for emphasis */
}


.image-box {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.image-box:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.image-box img:hover {
  transform: scale(1.08);
}


body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

h1 {
    color: #343a40;
}

.contact-card {
    background-color: #ffffff;
    border-left: 5px solid #0d6efd;
}

.contact-card h3 {
    margin-bottom: 20px;
    color: #0d6efd;
}

.contact-card p {
    font-size: 1.1rem;
}

.contact-card a {
    color: #0d6efd;
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

.map-card iframe {
    border-radius: 8px;
}

@media (max-width: 767px) {
    .contact-card, .map-card {
        margin-bottom: 20px;
    }
}
