

#testimonial-section-container {
  max-width: 800px;
  margin: 60px auto;
  text-align: center;
  font-family: Arial, sans-serif;
}

#testimonial-section-h1 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Slider container */
#testimonial-section-slider {
  position: relative;
}

/* Card */
.testimonial-section-card {
  display: none;
  width: 400px;
  height: 350px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

.testimonial-section-card.active {
  display: block;
}

/* Circular Image */
.testimonial-section-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px auto;
  display: block;
  border: 3px solid #f56960;
}

/* Content */
.testimonial-section-content .location {
  font-weight: bold;
  color: #f56960;
  margin-bottom: 8px;
}

.testimonial-section-content .text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f56960;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 20px;
}

#testimonial-section-prev { left: -25px; }
#testimonial-section-next { right: -25px; }

/* Dots */
#testimonial-section-dots {
  margin-top: 15px;
}

.testimonial-section-dot {
  height: 10px;
  width: 10px;
  margin: 0 4px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.testimonial-section-dot.active {
  background: #f56960;
}

/* Responsive */
@media (max-width: 768px) {
  #testimonial-section-h1 {
    font-size: 24px;
  }

  .testimonial-section-card {
    width: 90%;
    height: auto;
    padding: 15px;
  }

  .testimonial-section-card img {
    width: 80px;
    height: 80px;
  }

  .testimonial-section-content .text {
    font-size: 14px;
  }

  #testimonial-section-prev { left: -15px; }
  #testimonial-section-next { right: -15px; }
}







/* Dubai Section */
.flyfino-dubai-section {
    background: #f7f9fb;
    padding: 60px 20px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.flyfino-dubai-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.flyfino-dubai-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.flyfino-dubai-intro {
    font-size: 16px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 40px auto;
}

.flyfino-dubai-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.flyfino-dubai-benefit {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    max-width: 350px;
    flex: 1 1 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.flyfino-dubai-benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.flyfino-dubai-benefit h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #0b3d91;
}

.flyfino-dubai-benefit p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.flyfino-dubai-cta {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
}

.flyfino-dubai-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.flyfino-dubai-btn {
    background-color: #0b3d91;
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.flyfino-dubai-btn:hover {
    background-color: #062c66;
}

.flyfino-dubai-btn.secondary {
    background-color: #f2f2f2;
    color: #0b3d91;
}

.flyfino-dubai-btn.secondary:hover {
    background-color: #e0e0e0;
}

/* Responsive */
@media (max-width: 992px) {
    .flyfino-dubai-benefits {
        flex-direction: column;
        gap: 20px;
    }
}



/* Flyfino Services Section */
.flyfino-services {
    background-color: #f9f9f9;
    padding: 60px 20px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

.flyfino-services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.flyfino-services-title {
    font-size: 32px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 20px;
}

.flyfino-services-intro {
    font-size: 16px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 50px auto;
    color: #555;
}

/* Services Grid */
.flyfino-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.flyfino-service-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    max-width: 250px;
    flex: 1 1 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.flyfino-service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.flyfino-service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.flyfino-service-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #0b3d91;
}

.flyfino-service-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .flyfino-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .flyfino-services-title {
        font-size: 28px;
    }
}



/* Flyfino SEO Last Section */
.flyfino-seo-section {
    background-color: #0b3d91;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Raleway', sans-serif;
}

.flyfino-seo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.flyfino-seo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700; /* gold for premium look */
}

.flyfino-seo-intro {
    font-size: 16px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Content Grid */
.flyfino-seo-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.flyfino-seo-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.flyfino-seo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.flyfino-seo-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffd700;
}

.flyfino-seo-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* CTA Button */
.flyfino-seo-cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b3d91;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

.flyfino-seo-cta:hover {
    background-color: #e6c200;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .flyfino-seo-title {
        font-size: 28px;
    }
    .flyfino-seo-intro {
        font-size: 15px;
    }
    .flyfino-seo-content {
        flex-direction: column;
        align-items: center;
    }
    .flyfino-seo-item {
        max-width: 90%;
    }
}


/* Flyfino SEO Last Section */
.flyfino-seo-section {
    background-color: #0b3d91;
    color: #fff;
    padding: 60px 20px;
    font-family: 'Raleway', sans-serif;
}

.flyfino-seo-container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.flyfino-seo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffd700; /* gold for premium look */
}

.flyfino-seo-intro {
    font-size: 16px;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 40px auto;
    color: #f0f0f0;
}

/* Content Grid */
.flyfino-seo-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.flyfino-seo-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 20px;
    border-radius: 12px;
    flex: 1 1 250px;
    max-width: 300px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.flyfino-seo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.flyfino-seo-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffd700;
}

.flyfino-seo-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #f0f0f0;
}

/* CTA Button */
.flyfino-seo-cta {
    display: inline-block;
    background-color: #ffd700;
    color: #0b3d91;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    transition: background 0.3s ease, color 0.3s ease;
}

.flyfino-seo-cta:hover {
    background-color: #e6c200;
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .flyfino-seo-title {
        font-size: 28px;
    }
    .flyfino-seo-intro {
        font-size: 15px;
    }
    .flyfino-seo-content {
        flex-direction: column;
        align-items: center;
    }
    .flyfino-seo-item {
        max-width: 90%;
    }
}


/* Dubai Services Section */
.dubai-services-section {
  background: #f4f4f4;
  padding: 60px 20px;
  font-family: 'Raleway', sans-serif;
}

.dubai-services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dubai-services-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b3d91; /* Dubai luxury blue */
  margin-bottom: 20px;
}

.dubai-services-intro {
  font-size: 16px;
  color: #333;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.7;
}



/* Grid Cards */
.dubai-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.dubai-service-card {
  background: #fff;
  border-radius: 15px;
  overflow: visible; 
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dubai-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.dubai-service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.dubai-service-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 15px 10px 10px 10px;
  color: #0b3d91;
}

.dubai-service-card p {
  font-size: 14px;
  color: #555;
  margin: 0 10px 15px 10px;
  line-height: 1.6;
}



/* Responsive */

@media (max-width: 992px) {
  .dubai-services-title {
    font-size: 28px;
  }
  .dubai-service-card {
    max-width: 45%;
  }
}


@media (max-width: 768px) {
  .dubai-services-grid {
    flex-direction: column;
    flex-wrap:wrap;
    align-items: center;
  }
  .dubai-service-card {
    max-width: 90%;
  }
}







/* Dubai Complete Tour Section */
.dubai-complete-tour {
  background: linear-gradient(135deg, #0a3d62 0%, #0791b2 100%);
  padding: 50px 20px;
  text-align: center;
  margin: 40px 0;
  font-family: 'Open Sans', sans-serif;
}

.dubai-complete-tour h3 {
  font-size: 28px;
  color: #fff; /* Dubai-style greenish accent */
  margin-bottom: 25px;
  font-weight: 600;
}

.dubai-complete-tour p {
  font-size: 16px;
  color: #222;
  line-height: 1.8;
  text-align:justify;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.explore-packages-btn {
  display: inline-block;
  background-color: #f56960; /* Dubai-style vibrant accent */
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.explore-packages-btn:hover {
  background-color: #d94b45;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .dubai-complete-tour h3 {
    font-size: 22px;
  }
  .dubai-complete-tour p {
    font-size: 15px;
  }
  .explore-packages-btn {
    padding: 10px 20px;
  }
}




.b2b-packages-intro {
  padding: 50px 15px;
  background-color: #f9f9f9;
}

.b2b-packages-intro .container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.b2b-packages-intro h1 {
  font-size: 32px;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.b2b-packages-intro p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

.b2b-packages-intro strong {
  color: #f56960;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
  .b2b-packages-intro h1 {
    font-size: 24px;
  }

  .b2b-packages-intro p {
    font-size: 15px;
  }
}


#btn-dubai{
    width:20%;
    height:auto;
    padding:1rem 1.5rem;
    color:#fff;
    border-radius:5px;
    background-color:maroon;
}









