.premium-services {
  position: relative;
}

.premium-service-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.premium-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.premium-service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 20px 0 15px;
}

.premium-service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.premium-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.premium-icon.blue {
  background: linear-gradient(135deg, #2b7cff, #1d5fd1);
}

.premium-icon.green {
  background: linear-gradient(135deg, #59c36a, #34a853);
}

.premium-icon.orange {
  background: linear-gradient(135deg, #ff8a3d, #f16f33);
}

@media (max-width: 767px) {
  .premium-service-card {
    padding: 30px 20px;
  }

  .premium-service-card h3 {
    font-size: 20px;
  }
}

/* ===== Industries Section ===== */
.industries-section {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
}

.industries-content-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-top: 4px solid #f16f33;
}

.industries-content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1d3557;
  margin-bottom: 20px;
}

.industries-content-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.industry-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #f16f33;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.industry-btn:hover {
  background: #d95d24;
  color: #fff;
}

.industry-card {
  background: #ffffff;
  text-align: center;
  padding: 35px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  height: 100%;
  border-bottom: 3px solid transparent;
}

.industry-card:hover {
  transform: translateY(-8px);
  border-bottom: 3px solid #f16f33;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.industry-card i {
  font-size: 38px;
  color: #f16f33;
  margin-bottom: 15px;
}

.industry-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1d3557;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .industries-content-box {
    margin-bottom: 30px;
  }
}

/* ===== US MARKETS SECTION ===== */
.us-markets-section {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  position: relative;
}

.us-markets-section .heading_title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2f80ed;
  margin-bottom: 12px;
  line-height: 1.3;
}

.us-markets-section .heading_title h4 {
  font-size: 22px;
  font-weight: 600;
  color: #1f3c88;
  margin-bottom: 0;
  letter-spacing: 1px;
}

/* LEFT INFO BOX */
.markets-info-box {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(47, 128, 237, 0.12);
  border-left: 5px solid #f16f33;
  transition: all 0.3s ease;
}

.markets-info-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(47, 128, 237, 0.18);
}

.markets-info-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 20px;
}

.markets-info-box p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 15px;
}

/* MARKET CARD */
.market-card {
  background: #ffffff;
  padding: 30px 15px;
  text-align: center;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid rgba(47, 128, 237, 0.08);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #2f80ed, #56ccf2);
  transition: all 0.4s ease;
  z-index: 0;
}

.market-card:hover::before {
  height: 100%;
}

.market-card i {
  font-size: 34px;
  color: #f16f33;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.market-card h5 {
  font-size: 20px;
  font-weight: 700;
  color: #1f3c88;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  transition: 0.3s;
}

.market-card:hover i,
.market-card:hover h5 {
  color: #fff;
}

.market-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(47, 128, 237, 0.22);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .us-markets-section .heading_title h2 {
    font-size: 34px;
  }

  .us-markets-section .heading_title h4 {
    font-size: 18px;
  }

  .markets-info-box {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .us-markets-section .heading_title h2 {
    font-size: 28px;
  }

  .market-card {
    padding: 22px 12px;
  }

  .market-card h5 {
    font-size: 17px;
  }

  .market-card i {
    font-size: 28px;
  }

  .markets-info-box h3 {
    font-size: 24px;
  }
}

/* ================================
   PREMIUM FAQ UI (Clean Tour Style)
   ================================ */

.faq-section {
    padding: 70px 0;
    background: #f8f9fb;
}

.faq-section .heading_title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #d95f02; /* Orange heading */
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.3;
}

.faq-section .heading_title h4 {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 45px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Each FAQ Item */
.faq-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-color: #d95f02;
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    outline: none;
    padding: 5px 28px;
    text-align: left;
    font-size: 20px;
    font-weight: 600;
    color: #111;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 1.5;
}

/* Number Styling */
.faq-question span.faq-number {
    color: #111;
    font-weight: 700;
    margin-right: 8px;
}

/* Plus Icon */
.faq-icon {
    font-size: 30px;
    font-weight: 700;
    color: #ff6a00;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

/* Active State */
.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fcfcfc;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 22px;
}

.faq-answer p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .faq-section .heading_title h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 16px;
        padding: 5px 20px;
    }

    .faq-answer p {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-section .heading_title h2 {
        font-size: 28px;
    }

    .faq-section .heading_title h4 {
        font-size: 17px;
    }

    .faq-question {
        font-size: 18px;
        padding: 16px;
    }

    .faq-icon {
        font-size: 24px;
    }
}

/* =====================================
   COMPACT PREMIUM CONTACT SECTION
   One-Screen / Reduced Height Layout
   ===================================== */

#contact.contact {
    background: linear-gradient(135deg, #f8f9fb 0%, #eef4ff 100%);
    padding: 45px 0 50px;
}

/* Heading Compact */
#contact .section-title {
    margin-bottom: 25px;
}

#contact .section-title h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1d4ed8;
    margin-bottom: 8px;
    line-height: 1.2;
}

#contact .section-title p {
    text-align: center;
    font-size: 15px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Info Row Compact */
.contact-info {
    margin-bottom: 25px;
}

/* Compact Cards */
.contact-address,
.contact-phone,
.contact-email {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 185px;
}

.contact-address:hover,
.contact-phone:hover,
.contact-email:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 22px rgba(29,78,216,0.10);
}

/* Accent Top Line */
.contact-address::before,
.contact-phone::before,
.contact-email::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #1d4ed8, #f97316);
}

/* Smaller Icons */
.contact-info i {
    font-size: 26px;
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #1d4ed8, #3b82f6);
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 8px 18px rgba(29,78,216,0.18);
}

/* Titles */
.contact-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Text */
.contact-info p,
.contact-info address {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Links */
.contact-info a {
    color: #111827;
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f97316;
}

/* Form Section Compact */
#contact .form {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

/* Reduce field height */
#contact .form input,
#contact .form textarea,
#contact .form select {
    width: 100%;
    border: 1px solid #dbe3f0;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    background: #f9fbff;
    margin-bottom: 12px;
    min-height: auto;
}

#contact .form textarea {
    min-height: 110px;
}

/* Focus */
#contact .form input:focus,
#contact .form textarea:focus,
#contact .form select:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.08);
    outline: none;
}

/* Button Compact */
#contact .form button,
#contact .form input[type="submit"] {
    background: linear-gradient(90deg, #1d4ed8, #2563eb);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

#contact .form button:hover,
#contact .form input[type="submit"]:hover {
    background: linear-gradient(90deg, #f97316, #ea580c);
    transform: translateY(-2px);
}

/* Desktop form row spacing fix */
#contact .form .row {
    margin-left: -8px;
    margin-right: -8px;
}

#contact .form .row > div {
    padding-left: 8px;
    padding-right: 8px;
}

/* Mobile */
@media (max-width: 991px) {
    .contact-address,
    .contact-phone,
    .contact-email {
        margin-bottom: 18px;
        min-height: auto;
    }

    #contact .form {
        padding: 22px;
    }
}

@media (max-width: 767px) {
    #contact.contact {
        padding: 40px 0;
    }

    #contact .section-title h2 {
        font-size: 26px;
    }

    #contact .section-title p {
        font-size: 14px;
    }

    .contact-info h3 {
        font-size: 16px;
    }

    #contact .form {
        padding: 18px;
    }
}

/* =========================================
   MOBILE HERO FIX (CLEAN + NO TEXT CROP)
   Existing desktop untouched
   ========================================= */

@media only screen and (max-width: 767px) {

    /* Hero main section */
    #hero {
        margin-top: 72px !important; /* fixed header height */
        min-height: auto !important;
        height: auto !important;
    }

    /* Carousel structure */
    #hero .hero-container,
    #hero #heroCarousel,
    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-container {
        height: auto !important;
        min-height: 420px !important;
    }

    /* Background image properly visible */
    #hero .carousel-item {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        padding: 55px 0 45px !important;
        display: flex !important;
        align-items: center !important;
    }

    /* Optional dark overlay for readability */
    #hero .carousel-item:before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(20, 16, 60, 0.45);
        z-index: 1;
    }

    /* Content area */
    #hero .carousel-content {
        position: relative;
        z-index: 2;
        width: 100%;
        padding: 0 18px !important;
        text-align: center !important;
    }

    /* Main Heading */
    #hero .carousel-content h1 {
        font-size: 40px !important;
        line-height: 1.35 !important;
        font-weight: 700 !important;
        margin-bottom: 30px !important;
        color: #ffffff !important;
        white-space: normal !important;
    }

    /* Sub Heading */
    #hero .carousel-content h2 {
        font-size: 18px !important;
        line-height: 1.45 !important;
        font-weight: 700 !important;
        margin-bottom: 15px !important;
        color: #ff7a1a !important;
        white-space: normal !important;
    }

    /* Paragraph */
    #hero .carousel-content p {
        font-size: 20px !important;
        line-height: 1.5 !important;
        color: #ffffff !important;
        margin-bottom: 0 !important;
        white-space: normal !important;
    }

    /* IMPORTANT: Keep your manual <br> responsive */
    #hero .carousel-content br {
        display: block !important;
    }

    /* Prevent section overlap */
    #hero + main,
    #hero + section {
        position: relative;
        z-index: 5;
    }
}

/* Extra small screens */
@media only screen and (max-width: 480px) {

    #hero .carousel-inner,
    #hero .carousel-item,
    #hero .carousel-container {
        min-height: 380px !important;
    }

    #hero .carousel-content h1 {
        font-size: 25px !important;
    }

    #hero .carousel-content h2 {
        font-size: 18px !important;
    }

    #hero .carousel-content p {
        font-size: 18px !important;
    }
}