    body {
         font-family: "Poppins", sans-serif !important;
      background: linear-gradient(120deg, #fff6eb, #ffe2c7);
      margin: 0;
      padding-top: 70px; /* prevent header overlap */
      overflow-x: hidden;
    }
.section-main {
  padding: 60px 20px;
  background: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.section-subtext {
  color: #555;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.features-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  /* min-width: 220px;
  max-width: 260px; */
  margin: 0 auto;
  height: 100%;
}

.feature-icon {
  display: block;
  margin: 0 auto 15px;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.feature-text {
  color: #fff;
  line-height: 1.5;
}

/* Mobile view */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
}

.steps-section h2 {
  text-align: center;
  font-size: 2rem; /* adjust size */
  margin-bottom: 40px; /* spacing below heading */
}
      .steps-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      position: relative;
      padding:  0 15px;
    }
    .step-card {
      background: rgba(255, 255, 255, 0.65);
      backdrop-filter: blur(12px);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      flex: 1;
      /* margin: 15px; */
      min-width: 220px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      height: 100%;
    }
    .step-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    }
    .step-card img {
      width: 60px;
      margin-bottom: 15px;
    }
    .step-card h3 {
      margin: 10px 0;
      color: #fd690d;
    }
    .step-card p {
      font-size: 15px;
      color: #444;
    }
    /* Arrows */
    .arrow {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #fd650d;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 22px;
      margin: 0 10px;
      animation: bounce 1.5s infinite;
          position: absolute;
    top: 50%;
    right: -60px;
    }
    .section-gap{
      padding: 60px 20px;
    }
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
    .steps-flow {
      display: grid;
      align-items: center;
      justify-content: center;
      grid-template-columns: repeat(4, 1fr);
      gap: 50px;
    
    }
      @media (max-width: 1440px) {
 .steps-flow {
   
      gap: 30px;
    
    }
    .arrow {
    width: 40px;
    height: 40px;
    right: -45px;

}
.arrow 
.fas.fa-arrow-right:before{
font-size: 20px;
}
      }
         @media (max-width: 1366px) {
    .steps-flow {

      grid-template-columns: repeat(3, 1fr);
    
    }
         }
       @media (max-width: 991px) {
      .section-gap{
      padding: 40px 20px;
    }
    }

    
    @media (max-width: 768px) {
       .steps-flow {

      grid-template-columns: repeat(2, 1fr);
    
    }
       .section-gap{
      padding: 30px 20px;
    }
      .steps-flow {
        flex-direction: column;
      }
      .arrow {
        margin: 15px 0;
        transform: rotate(90deg);
      }
    }
    /* Section background */
.ai-hero-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Glass effect overlay */
.ai-hero-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  z-index: 0;
}

/* Text content above overlay */
.ai-hero-section .container {
  position: relative;
  z-index: 2;
}

/* Feature cards */
.feature-card {
  background:linear-gradient(52deg, #121212, #ff4d00);
  border-radius: 16px;
  padding: 30px 20px;
  color: rgb(255, 255, 255);
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* Feature icon */
.feature-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotate(10deg) scale(1.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  animation: fadeInUp 1s ease forwards;
}

.animate-fade-delay {
  animation: fadeInUp 1.5s ease forwards;
}

.animate-up {
  animation: fadeInUp 2s ease forwards;
}

marquee {
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 12px 0;
  border-radius: 8px;
  font-weight: 500;
}
marquee i {
  color: #28a745; /* green accent */
  margin-right: 8px;
}
.glassy-hero {
  background: #0808082e; /* light transparent layer */
  backdrop-filter: blur(4px);            /* blur effect */
  -webkit-backdrop-filter: blur(10px);   /* Safari support */
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  margin: auto;
}

    /* FIXED GLASS HEADER */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1050;
      padding: 12px 0;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: all 0.3s ease-in-out;
    }
    .navbar.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
    }
    .btn-contact {
      background: #ff4d00;
      color: #fff !important;
      padding: 8px 20px;
      border-radius: 30px;
      font-weight: 600;
      white-space: nowrap;
    }
    .navbar-toggler {
      border: none;
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%280, 0, 0, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('../../assets/newImages/hotel2.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-section .overlay {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;

  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.btn-demo {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: #fff;
  font-weight: bold;
  border-radius: 50px;
  padding: 12px 24px;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
}

.feature-icons {
  font-size: 1rem;
}

.feature-icons i {
  margin-right: 6px;
}

    /* HERO SECTION */
    .hero-section {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 20px 0;
    }
    .hero-text h1 {
      font-size: 2.8rem;
      font-weight: 700;
      animation: fadeInUp 1.2s ease-out;
    }
    .hero-text p {
      font-size: 1.1rem;
      margin: 20px 0;
      animation: fadeInUp 1.6s ease-out;
    }
    .btn-demo {
      background: #ff4d00;
      color: #fff;
      padding: 10px 24px;
      border-radius: 30px;
      font-weight: 600;
      margin-right: 10px;
      animation: fadeInUp 2s ease-out;
    }
    .btn-outline {
      border: 1px solid #333;
      border-radius: 30px;
      padding: 10px 24px;
      font-weight: 600;
      background: transparent;
      animation: fadeInUp 2.2s ease-out;
    }

    /* ORBIT ANIMATION */
    .orbit-wrapper {
      position: relative;
      width: 100%;
      max-width: 450px;
      height: 450px;
      margin: auto;
      animation: fadeIn 2s ease-out;
    }
    .center-circle {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: radial-gradient(circle, #ff6b35, #ff4500);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.8rem;
      box-shadow: 0 0 40px rgba(255, 107, 53, 0.7);
      transform: translate(-50%, -50%);
      z-index: 10;
    }
    .orbit {
      position: absolute;
      top: 50%;
      left: 50%;
      border: 2px dashed #fff;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: spin linear infinite;
    }
    .orbit:nth-child(2) { width: 180px; height: 180px; animation-duration: 15s; }
    .orbit:nth-child(3) { width: 280px; height: 280px; animation-duration: 22s; }
    .orbit:nth-child(4) { width: 380px; height: 380px; animation-duration: 28s; }

    .orbit-icon {
      position: absolute;
      top: 0;
      left: 50%;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      background: #007bff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: white;
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
      transform: translate(-50%, -50%);
      animation: bounce 2s infinite ease-in-out;
    }
    .orbit-icon.orange { background: #ff6b35; }
    .orbit-icon.purple { background: #a64ce2; }
    .orbit-icon.green { background: #28a745; }
    .orbit-icon.red { background: #dc3545; }

    /* Animations */
    @keyframes spin {
      0% { transform: translate(-50%, -50%) rotate(0deg); }
      100% { transform: translate(-50%, -50%) rotate(360deg); }
    }
    @keyframes bounce {
      0%, 100% { transform: translate(-50%, -50%) scale(1); }
      50% { transform: translate(-50%, -50%) scale(1.2); }
    }
    @keyframes fadeIn {
      0% { opacity: 0; transform: scale(0.8); }
      100% { opacity: 1; transform: scale(1); }
    }
    @keyframes fadeInUp {
      0% { opacity: 0; transform: translateY(30px); }
      100% { opacity: 1; transform: translateY(0); }
    }
  section.faq-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 30px;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    }

    section.faq-section h1 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    section.faq-section h1 .gradient-text {
      background: linear-gradient(90deg, #e5a846, #d46606);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    section.faq-section p.sub-text {
      text-align: center;
      color: #666;
      margin-bottom: 30px;
    }

    .accordion {
      border-top: 1px solid #e4e4e7;
    }

    .accordion-item {
      border-bottom: 1px solid #e4e4e7;
    }

    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      cursor: pointer;
      font-size: 18px;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .accordion-header:hover {
      background: #f3f4f6;
    }

    .accordion-header i {
      transition: transform 0.3s ease;
      color: #4f46e5;
    }

    .accordion-header.active i {
      transform: rotate(180deg);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
      padding: 0 20px;
      color: #555;
    }

    .accordion-content.open {
      max-height: 400px;
      padding: 16px 20px;
    }
    /* ===== Footer Styling ===== */
    footer {
      background: #0b0f19;
      color: #d1d5db;
      padding: 50px 20px 30px;
      font-family: "Segoe UI", sans-serif;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
    }

    /* Brand / About */
    .footer-brand h4 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 14px;
      color: #9ca3af;
      line-height: 1.6;
    }

    /* Headings */
    .footer-col h6 {
      color: #fff;
      font-size: 15px;
      margin-bottom: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }

    /* Links */
    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      text-decoration: none;
      font-size: 14px;
      color: #9ca3af;
      transition: color 0.3s;
    }

    .footer-col ul li a:hover {
      color: #06b6d4;
    }

    /* Contact Info */
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 8px;
      color: #9ca3af;
    }

    .footer-contact i {
      color: #06b6d4;
      margin-right: 8px;
    }

    /* Social Icons */
    .footer-social {
      margin-top: 15px;
    }

    .footer-social a {
      display: inline-block;
      margin-right: 12px;
      color: #d1d5db;
      font-size: 18px;
      transition: color 0.3s, transform 0.3s;
    }

    .footer-social a:hover {
      color: #06b6d4;
      transform: scale(1.1);
    }

    /* Copyright */
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #1f2937;
    }

    .footer-bottom p {
      font-size: 13px;
      color: #6b7280;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 600px) {
      footer {
        padding: 40px 15px 20px;
      }
    }

    /* RESPONSIVE FIXES */
    @media (max-width: 991px) {
      .hero-section { text-align: center; flex-direction: column; }
      .hero-text { margin-bottom: 40px; }
    }
    @media (max-width: 768px) {
      .hero-text h1 { font-size: 2.2rem; }
      .hero-text p { font-size: 1rem; }
    }
    @media (max-width: 576px) {
       .steps-flow {

      grid-template-columns: repeat(1, 1fr);
    
    }
    .arrow{
      left: 50%;
      top: 90%;
    }
      .hero-text h1 { font-size: 2rem; }
      .btn-demo, .btn-outline { width: 100%; margin-bottom: 10px; }
      .orbit-wrapper { max-width: 320px; height: 320px; }
      .orbit-icon { width: 40px; height: 40px; font-size: 16px; }
      .center-circle { width: 70px; height: 70px; font-size: 1.4rem; }
    }