/* How to Apply for Dubai Visa Section */
.apply-visa-hero {
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 28px 0;
}

.apply-visa-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.apply-visa-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.apply-visa-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.apply-visa-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}

/* Responsive Design */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .apply-visa-hero {
    min-height: 95px;
    padding: 26px 0;
  }

  .apply-visa-title {
    font-size: 30px;
  }

  .apply-visa-subtitle {
    font-size: 14px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .apply-visa-hero {
    min-height: 90px;
    padding: 24px 0;
  }

  .apply-visa-title {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .apply-visa-subtitle {
    font-size: 14px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .apply-visa-hero {
    min-height: 85px;
    padding: 22px 0;
  }

  .apply-visa-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .apply-visa-subtitle {
    font-size: 13px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .apply-visa-hero {
    min-height: 80px;
    padding: 20px 0;
  }

  .apply-visa-title {
    font-size: 24px;
    margin-bottom: 6px;
  }

  .apply-visa-subtitle {
    font-size: 13px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .apply-visa-hero {
    min-height: 75px;
    padding: 18px 0;
  }

  .apply-visa-title {
    font-size: 20px;
    margin-bottom: 6px;
  }

  .apply-visa-subtitle {
    font-size: 12px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .apply-visa-hero {
    min-height: 70px;
    padding: 16px 0;
  }

  .apply-visa-title {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .apply-visa-subtitle {
    font-size: 11px;
  }
}

/* Video Section */
.video-section {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.video-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: #000000;
}

.video-player {
  width: 100%;
  height: auto;
  min-height: 350px;
  display: block;
  outline: none;
  background: #000000;
}

/* Responsive Design for Video Section */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .video-section {
    padding: 18px 0;
  }

  .video-wrapper {
    max-width: 850px;
  }

  .video-player {
    min-height: 330px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .video-section {
    padding: 16px 0;
  }

  .video-wrapper {
    max-width: 800px;
  }

  .video-player {
    min-height: 310px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .video-section {
    padding: 15px 0;
  }

  .video-wrapper {
    max-width: 750px;
  }

  .video-player {
    min-height: 290px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .video-section {
    padding: 14px 0;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .video-player {
    min-height: 270px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .video-section {
    padding: 12px 0;
  }

  .video-wrapper {
    max-width: 100%;
  }

  .video-player {
    min-height: 200px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .video-section {
    padding: 10px 0;
  }

  .video-player {
    min-height: 180px;
  }
}

/* Steps Section */
.steps-section {
  background: var(--primary-color);
  padding: 25px 0;
  color: white;
  border-bottom: 1px solid #e0e0e0;
}

.steps-header {
  text-align: center;
  margin-bottom: 20px;
}

.steps-title {
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.steps-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.5;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-icon {
  width: 85px;
  height: 85px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

.step-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.step-arrow {
  position: absolute;
  right: -85px;
  top: 37px;
  font-size: 28px;
  color: white;
  font-weight: bold;
  font-family: "Arial", sans-serif;
}

.step-item:last-child .step-arrow {
  display: none;
}

.step-title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
  max-width: 130px;
  white-space: nowrap;
}

/* Responsive Design for Steps Section */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .steps-section {
    padding: 22px 0;
  }

  .steps-title {
    font-size: 34px;
  }

  .steps-subtitle {
    font-size: 15px;
  }

  .step-icon {
    width: 80px;
    height: 80px;
  }

  .step-icon i {
    font-size: 28px;
  }

  .steps-wrapper {
    gap: 115px;
  }

  .step-arrow {
    right: -82px;
    top: 35px;
    font-size: 26px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .steps-section {
    padding: 20px 0;
  }

  .steps-title {
    font-size: 32px;
  }

  .steps-subtitle {
    font-size: 15px;
  }

  .step-icon {
    width: 75px;
    height: 75px;
  }

  .step-icon i {
    font-size: 26px;
  }

  .steps-wrapper {
    gap: 110px;
  }

  .step-arrow {
    right: -80px;
    top: 32px;
    font-size: 24px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .steps-section {
    padding: 18px 0;
  }

  .steps-title {
    font-size: 30px;
  }

  .steps-subtitle {
    font-size: 14px;
  }

  .steps-wrapper {
    gap: 105px;
  }

  .step-arrow {
    right: -77px;
    top: 30px;
    font-size: 22px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .steps-section {
    padding: 16px 0;
  }

  .steps-title {
    font-size: 28px;
  }

  .steps-subtitle {
    font-size: 14px;
  }

  .steps-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .step-item {
    flex-direction: row;
    gap: 15px;
    max-width: 280px;
  }

  .step-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 0;
  }

  .step-icon i {
    font-size: 18px;
  }

  .step-arrow {
    position: static;
    transform: rotate(90deg);
    margin: 8px 0;
  }

  .step-item:last-child .step-arrow {
    display: none;
  }

  .step-title {
    max-width: 180px;
    text-align: left;
    font-size: 13px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .steps-section {
    padding: 14px 0;
  }

  .steps-header {
    margin-bottom: 15px;
  }

  .steps-title {
    font-size: 24px;
  }

  .steps-subtitle {
    font-size: 13px;
  }

  .step-icon {
    width: 50px;
    height: 50px;
  }

  .step-icon i {
    font-size: 16px;
  }

  .step-title {
    font-size: 12px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .steps-section {
    padding: 12px 0;
  }

  .steps-title {
    font-size: 22px;
  }

  .steps-subtitle {
    font-size: 12px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
  }

  .step-icon i {
    font-size: 14px;
  }

  .step-title {
    font-size: 11px;
  }
}

/* Process Section */
.process-section {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.process-content {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0 40px;
}

.process-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.process-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 16px 0;
  line-height: 1.6;
  text-align: justify;
}

/* Why Apply Online Section */
.why-apply-section {
  background: #ffffff;
  padding: 20px 0;
  border-top: 1px solid #e0e0e0;
}

.why-apply-content {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 0 40px;
}

.why-apply-title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.why-apply-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 30px 0;
  line-height: 1.6;
  text-align: justify;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-number {
  width: 30px;
  height: 30px;
  background: #f8f9fa;
  color: #333333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.benefit-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Design for Content Sections */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .process-section {
    padding: 18px 0;
  }

  .why-apply-section {
    padding: 18px 0;
  }

  .process-title,
  .why-apply-title {
    font-size: 23px;
  }

  .process-text,
  .why-apply-subtitle,
  .benefit-text {
    font-size: 13px;
  }

  .benefit-title {
    font-size: 15px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .process-section {
    padding: 16px 0;
  }

  .why-apply-section {
    padding: 16px 0;
  }

  .process-content,
  .why-apply-content {
    padding: 0 35px;
  }

  .process-title,
  .why-apply-title {
    font-size: 22px;
  }

  .benefits-list {
    gap: 18px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .process-section {
    padding: 15px 0;
  }

  .why-apply-section {
    padding: 15px 0;
  }

  .process-content,
  .why-apply-content {
    padding: 0 30px;
  }

  .process-title,
  .why-apply-title {
    font-size: 21px;
  }

  .benefit-item {
    gap: 16px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .process-section {
    padding: 14px 0;
  }

  .why-apply-section {
    padding: 14px 0;
  }

  .process-content,
  .why-apply-content {
    padding: 0 25px;
  }

  .process-title,
  .why-apply-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .why-apply-subtitle {
    margin-bottom: 25px;
  }

  .benefits-list {
    gap: 16px;
  }

  .benefit-item {
    gap: 14px;
  }

  .benefit-number {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .benefit-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .process-section {
    padding: 12px 0;
  }

  .why-apply-section {
    padding: 12px 0;
  }

  .process-content,
  .why-apply-content {
    padding: 0 20px;
  }

  .process-title,
  .why-apply-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .process-text,
  .why-apply-subtitle,
  .benefit-text {
    font-size: 12px;
  }

  .why-apply-subtitle {
    margin-bottom: 20px;
  }

  .benefits-list {
    gap: 14px;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-number {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .benefit-title {
    font-size: 13px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .process-section {
    padding: 10px 0;
  }

  .why-apply-section {
    padding: 10px 0;
  }

  .process-content,
  .why-apply-content {
    padding: 0 15px;
  }

  .process-title,
  .why-apply-title {
    font-size: 16px;
  }

  .process-text,
  .why-apply-subtitle,
  .benefit-text {
    font-size: 11px;
  }

  .benefit-title {
    font-size: 12px;
  }

  .benefit-number {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }
}

/* Before You Apply Section */
.before-apply-section {
  background: #e7f8ec;
  padding: 40px 0;
}

.before-apply-content {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 0 40px;
}

.before-apply-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.before-apply-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #666666;
  margin: 0 0 35px 0;
  line-height: 1.5;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 30px 25px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.info-card-text {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive Design for Before You Apply Section */

/* Large Desktop - 1400px */
@media (max-width: 1400px) {
  .before-apply-section {
    padding: 38px 0;
  }

  .before-apply-title {
    font-size: 26px;
  }

  .before-apply-subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .info-cards-grid {
    gap: 22px;
  }

  .info-card {
    padding: 28px 23px;
  }

  .info-card-title {
    font-size: 17px;
    margin-bottom: 13px;
  }

  .info-card-text {
    font-size: 13px;
  }
}

/* Desktop - 1200px */
@media (max-width: 1200px) {
  .before-apply-section {
    padding: 36px 0;
  }

  .before-apply-content {
    padding: 0 35px;
  }

  .before-apply-title {
    font-size: 25px;
  }

  .before-apply-subtitle {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .info-cards-grid {
    gap: 20px;
  }

  .info-card {
    padding: 26px 22px;
  }

  .info-card-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

/* Laptop - 1024px */
@media (max-width: 1024px) {
  .before-apply-section {
    padding: 34px 0;
  }

  .before-apply-content {
    padding: 0 30px;
  }

  .before-apply-title {
    font-size: 24px;
  }

  .before-apply-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .info-cards-grid {
    gap: 18px;
  }

  .info-card {
    padding: 24px 20px;
  }

  .info-card-title {
    font-size: 15px;
    margin-bottom: 11px;
  }

  .info-card-text {
    font-size: 12px;
  }
}

/* Tablet - 768px */
@media (max-width: 768px) {
  .before-apply-section {
    padding: 32px 0;
  }

  .before-apply-content {
    padding: 0 25px;
  }

  .before-apply-title {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .before-apply-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .info-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 600px;
  }

  .info-card {
    padding: 22px 18px;
  }

  .info-card-title {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .info-card-text {
    font-size: 12px;
  }
}

/* Mobile Large - 480px */
@media (max-width: 480px) {
  .before-apply-section {
    padding: 30px 0;
  }

  .before-apply-content {
    padding: 0 20px;
  }

  .before-apply-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .before-apply-subtitle {
    font-size: 13px;
    margin-bottom: 22px;
  }

  .info-cards-grid {
    gap: 14px;
    max-width: 100%;
  }

  .info-card {
    padding: 20px 16px;
  }

  .info-card-title {
    font-size: 14px;
    margin-bottom: 9px;
  }

  .info-card-text {
    font-size: 11px;
  }
}

/* Mobile Small - 360px */
@media (max-width: 360px) {
  .before-apply-section {
    padding: 28px 0;
  }

  .before-apply-content {
    padding: 0 15px;
  }

  .before-apply-title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .before-apply-subtitle {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .info-cards-grid {
    gap: 12px;
  }

  .info-card {
    padding: 18px 14px;
  }

  .info-card-title {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .info-card-text {
    font-size: 10px;
  }
}
