/* 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 */
}

<style>
/* CSS for main1.css file */

/* Services Section Styles */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    position: relative;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 400;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    border-color: #007bff;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    transition: all 0.3s ease;
}

.service-list li::before {
    content: '✈';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: #007bff;
    font-weight: bold;
    font-size: 0.9rem;
}

.service-list li:hover {
    color: #007bff;
    padding-left: 2rem;
}


.services-section {
  background-color: #ffffff;
}

.services-section h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #000;
}

.service-box {
  padding: 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-box i {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
  display: block;
}

.service-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
}

.service-box p {
  font-size: 0.95rem;
  color: #555;
}

.service-box:hover {
  background-color: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
}


.transactions-section {
  background-color: #f4f9fc; /* light blue background */
}

.transactions-heading {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
  color: #222;
}

.transaction-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.transaction-item .number {
  font-size: 2rem;
  font-weight: bold;
  color: #007bff; /* Bootstrap primary blue */
  background: #e6f2fb; 
  padding: 5px 15px;
  border-radius: 4px;
  flex-shrink: 0;
}

.transaction-item p {
  margin: 0;
  font-size: 1rem;
  color: #333;
}

.contact-section {
  background-color: #ffffff; /* white background */
}

.contact-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a6572; /* soft blue-gray */
  max-width: 900px;
  margin: 0 auto;
}

.contact-text .highlight {
  font-weight: 600;
  color: #2c3e50; /* darker shade */
}

.contact-text .highlight-strong {
  font-weight: 700;
  color: #000; /* bold black */
}


/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Animation for service cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




.service-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Staggered animation delay for multiple cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }
</style>


