* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #111;
  color: white;
}
/* popup-section */
/* Centering wrapper */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Popup box */
.popup-box {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  position: relative;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1e1e2f;
}

.popup-box p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
}

.popup-box .cta-btn {
  background-color: #ff5e57;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}

.popup-box .cta-btn:hover {
  background-color: #ff3e36;
}

.close-btn2 {
  position: absolute;
  top: 0px;
  right: 1px;
  font-size: 24px;
  background: none;
  border: none;
  color:black;
  cursor: pointer;
}

/* Entry animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .popup-box {
    padding: 30px 20px;
  }

  .popup-box h2 {
    font-size: 1.5rem;
  }

  .popup-box p {
    font-size: 0.95rem;
  }

  .popup-box .cta-btn {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .close-btn {
    top: 10px;
    right: 15px;
    font-size: 22px;
  }
}
/* popup-section1 */
#popupOverlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10000;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    #popupOverlay.show {
      display: flex;
    }

    /* Popup Container */
    .popup {
      background: #fff;
      width: 100%;
      max-width: 950px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
      display: flex;
      position: relative;
      transition: transform 0.3s ease;
      animation: popupIn 0.3s ease;
    }

    @keyframes popupIn {
      from {
        transform: scale(0.9);
        opacity: 0;
      }
      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    .popup .left, .popup .right {
      flex: 1;
      padding: 35px;
    }

    /* Left (Form) Side */
    .popup .left {
      background: #f7f9fc;
    }

    .popup .left h2 {
      font-size: 24px;
      margin-bottom: 5px;
      color: #333;
    }

    .popup .left h3 {
      font-weight: 600;
      margin-top: 0;
      color: #555;
    }

    .popup .left p {
      font-size: 14px;
      color: #777;
      margin-bottom: 25px;
    }

    .popup .left label {
      font-weight: 600;
      font-size: 14px;
      margin: 15px 0 5px;
      display: block;
    }

    .popup .left input,
    .popup .left select {
      width: 100%;
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 15px;
      outline: none;
      transition: border 0.2s;
    }

    .popup .left input:focus,
    .popup .left select:focus {
      border-color: #007bff;
    }

    .popup .left button#submitBooking {
      margin-top: 30px;
      padding: 12px 0;
      width: 100%;
      font-size: 16px;
      background: #007bff;
      border: none;
      color: #fff;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .popup .left button#submitBooking:disabled {
      background: #999;
      cursor: not-allowed;
    }

    /* Right (Calendar) Side */
    .calendar-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
    }

    .calendar-head button.nav-btn {
      font-size: 20px;
      background: none;
      border: none;
      cursor: pointer;
      color: #007bff;
    }

    #monthYear {
      font-weight: bold;
      font-size: 18px;
      color: #333;
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 6px;
      font-size: 14px;
    }

    .calendar-grid span {
      font-weight: 600;
      text-align: center;
      color: black;
    }

    .calendar-grid div.day {
      text-align: center;
      padding: 10px 0;
      border-radius: 6px;
      cursor: pointer;
    background: #eee;
    color: black;
      transition: background 0.2s;
    }

    .calendar-grid div.day:hover {
   
    }

    .calendar-grid div.day.active {
      background: #007bff;
      color: white;
    }

    .calendar-grid div.day.disabled {
      pointer-events: none;
      opacity: 0.4;
      background-color: gray;
      color: black;
    }

    .time-slots {
      margin-top: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .time-slots div.slot {
      padding: 8px 16px;
      background: #eaeaea;
      border-radius: 20px;
      cursor: pointer;
      user-select: none;
    }

    .time-slots div.slot.active {
      background-color: #007bff;
      color: white;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      background: none;
      border: none;
      color:white;
      z-index: 1;
      cursor: pointer;
    }
/* ===== Tablet (≤1024px) ===== */
@media screen and (max-width: 1024px) {
  .popup {
    flex-direction: column; /* Stack left and right sections */
    max-width: 95%;
    height: auto;
  }

  .popup .left,
  .popup .right {
    padding: 25px;
    flex: 1 1 100%;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
  }

  .calendar-head button.nav-btn {
    font-size: 18px;
  }

  .calendar-grid div.day {
    font-size: 13px;
  }

  .time-slots div.slot {
    padding: 6px 12px;
    font-size: 14px;
  }
}

/* ===== Mobile (≤768px) ===== */
@media screen and (max-width: 768px) {
  #popupOverlay {
    padding: 10px;
  }

  .popup {
    flex-direction: column;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .popup .left,
  .popup .right {
    padding: 20px;
    flex: 1 1 100%;
  }

  .popup .left h2 {
    font-size: 20px;
  }

  .popup .left h3 {
    font-size: 16px;
  }

  .popup .left input,
  .popup .left select {
    font-size: 14px;
    padding: 8px 10px;
  }

  .popup .left button#submitBooking {
    font-size: 15px;
    padding: 10px;
  }

  .calendar-head {
    flex-direction: column;
    gap: 10px;
  }

  .calendar-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }

  .calendar-grid div.day {
    font-size: 12px;
    padding: 8px 0;
  }

  .time-slots div.slot {
    font-size: 13px;
    padding: 6px 10px;
  }

  .close-btn {
    font-size: 24px;
    top: 8px;
    right: 10px;
    color: black;
  }
}
/* cookie */
    .cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  padding: 20px 30px;
  z-index: 9999;
  max-width: 500px;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideIn 0.6s ease-out forwards;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cookie-popup p {
  color:white;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.5;
}

.cookie-popup .learn-more {
  color: #aaf0ff;
  text-decoration: underline;
  margin-left: 4px;
}

.cookie-popup button {
  background-color: #00c37d;
  color: white;
  border: none;
  padding: 10px 26px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-popup button:hover {
  background-color: #00a76f;
}

@keyframes slideIn {
  from {
    transform: translate(-50%, 100%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}
/* popup-section2 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 20px;
}

.popup-content {
  background: #fff;
  width: 100%;
  max-width: 900px;
  height: 90vh;
  display: flex;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-direction: row;
}

.popup-content .left-section {
  background-color: #000;
  color: #fff;
  width: 50%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.popup-content h2 {
  font-weight: 700;
  line-height: 1.4;
  font-size: 2rem;
}

.highlight-orange {
  color: #ff6a00;
}



input, select, textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #e5e5e5;
  box-sizing: border-box;
  margin: 10px;
}

select {
  font-weight: 600;
}

textarea {
  height: 100px;
  resize: none;
}

button[type="submit"] {
  margin-top: 20px;
  background: linear-gradient(to right, #fd8b34, #fc5c5c);
  color: #000;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: 0.3s ease;
}

button[type="submit"]:hover {
  background-color: #e55b00;
}

.right-section {
  width: 50%;
  background: url('https://images.unsplash.com/photo-1629904853716-f0bc54eea481?fit=crop&w=1800&q=80') center/cover no-repeat;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  color: black;
  font-size: 28px;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

/* Explore Button */
.explore-btn {
  padding: 12px 24px;
  font-size: 1rem;
  background: #ff6a00;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .popup-content {
    flex-direction: column;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
  }

  .popup-content .left-section,
  .right-section {
    width: 100%;
    height: auto;
  }

  .popup-content .left-section {
    padding: 30px 20px;
  }

  .popup-content h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  button[type="submit"] {
    font-size: 1rem;
  }

  .right-section {
    min-height: 200px;
  }
}

/*===== Navbar for Desktop ========== */
.navbar {
  width: 100%;
  position: sticky;
  top: 0;
  background-color: #111;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  padding: 15px 30px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
 
  margin: auto;
}

.logo img {
  height: 80px;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff8c42;
}

.btn {
  background: linear-gradient(90deg, #ff6a3d, #ffbe2e);
  padding: 10px 18px;
  border-radius: 30px;
  color: #111;
  font-weight: bold;
  text-decoration: none;
}

/* ========== Hamburger Icon ========== */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

/* ========== Mobile Sidebar Nav (Glass effect) ========== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.6);
    padding: 100px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: right 0.4s ease;
    z-index: 1001;
  }

  .nav-links.active {
    right: 0;
  }

  /* Hide desktop nav when mobile menu is open */
  .navbar .nav-links.desktop {
    display: none;
  }
}
/* hero-section */
.container {
  background-color: #111;
  color: white;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.leftside {
   
  flex: 1;
  min-width: 280px;
  padding-left: 20px;
  animation: slideFadeIn 1s ease-out forwards;
  
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.leftside h3 span {
  color: #ff8c42;
}

.leftside h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.leftside h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.4;
}

.leftside p {
  font-size: 15px;
  color: white;
  margin-bottom: 30px;
  
}

.leftside img {
 
  max-width: 100%;
  
}

.btn {
  background: linear-gradient(90deg, #FF6A00, #FF9472);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  opacity: 0.9;
}

    .right-image {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      
    }
    .image-box1{
        display: flex;
        gap:20px;
    }
    .image-box1 .size{
       animation: slideDown 2s ease-in-out forwards;
        height: 400px;
        border-radius: 70px;
    }
     @keyframes slideDown      
     { from {transform: translateY(-100%);}
      to {transform: translateY(0);} }
        .image-box1 .size2{
           animation: slideDown 2s ease-in-out forwards;
           width: 200px;
        height: 200px;
        border-radius: 80px;
        
    }
    .image-box1 .size3{
      animation: slideDown 2s ease-in-out forwards;
        height: 400px;
        border-radius: 70px;
    }
    .image-box1 .size4{
       animation: slideUp 2s ease-in-out forwards;
       width: 200px;
        height: 200px;
        border-radius: 80px;
        
    }
     @keyframes slideUp    
         { from {transform: translateY(100%);} 
         to {transform: translateY(0);} }
   
    .image-box1 .size5{
      animation: slideUp 2s ease-in-out forwards;
         height: 400px;
        border-radius: 70px;
       
    }
    .image-box2{
        display: flex;
       justify-content: left;
       align-items:start;
        padding-right:30% ;
        gap: 20px;
       
    }
    .image-box1 .first3{
        padding-top: 60px;
    }
   /* Animation Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* 🔁 Add staggered animation delays */
.image-box1 img:nth-child(1) { animation-delay: 0.2s; }
.image-box1 img:nth-child(2) { animation-delay: 0.4s; }
.image-box1 img:nth-child(3) { animation-delay: 0.6s; }
.image-box1 img:nth-child(4) { animation-delay: 0.8s; }
.image-box1 img:nth-child(5) { animation-delay: 1s; }

/* 💡 Glow & lift on hover */


/* ========== Responsive ========== */

@media (max-width: 958px) {
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leftside {
    padding-left: 0;
    order: 2;
  }

  .right-image {
    order: 2;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
  }

  .image-box1 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 500px;
  }

  .size, .size2, .size3, .size4, .size5 {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .size2, .size4 {
    width: 140px;
    height: 140px;
  }

  .size, .size3, .size5 {
    height: 240px;
  }

.size3{
  display: none;
}



}

@media (max-width: 576px) {
  .right-image {
    display: none;
  }

  .leftside h2 {
    font-size: 20px;
  }

  .leftside p {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
    padding: 10px 20px;
  }

  .size2, .size4 {
    width: 50px;
    height: 50px;
  }

  .size, .size3, .size5 {
    height: 50px;
  }
  .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .leftside {
    width: 100%;
    padding: 0 20px;
  }

}

/* card-section */
.services-section {
  
    background: linear-gradient(to right, #fba54f, #ffffff);
  padding: 60px 40px;
  text-align: center;
}

.services-section h2 {
                     color: #FF7518;
  font-size: 2rem;
  font-weight: 700;
  
  position: relative;
  
}
.services-section h3 {
                     
  font-size: 2rem;
  font-weight: 700;
   color: black;
  position: relative;
  padding-bottom: 20px;
  
}

.services-section h2::after {
  
  display: block;
  width: 60px;
  height: 3px;
  background: #1b1b32;
  margin: 10px auto 0;
}

.services-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
 opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.6s ease-out;

  



}
.service-card.animate {
  animation: trendyEntry 0.8s ease-out forwards;
}
@keyframes trendyEntry {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}



.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: black;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.cta-btn {
  background: linear-gradient(to right, #fd8b34, #fc5c5c);
  border: none;
  padding: 14px 26px;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
}
.button-container{
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1024px) {
  .services-container {
    gap: 20px;
    padding: 0 20px;
  }

  .service-card {
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 40px 20px;
  }

  .service-card {
    max-width: 100%;
  }

  .services-section h2,
  .services-section h3 {
    font-size: 1.5rem;
  }

  .service-card img {
    height: 200px;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
}
 /* about-section */
 .about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: white;
}

.about-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.about-text h1 {
  text-transform: uppercase;
  color: #FF7518;

  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1d1d36;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.4;
}

.about-text p {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}

.cta-btn {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  background-color: #1d1d36;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.about-image {
  flex: 1;
  min-width: 200px;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* ===========================
   Tablet Screens (768px - 1024px)
=========================== */
@media screen and (max-width: 1024px) {
  .about-section {
    flex-direction: column;
    padding: 50px 30px;
    text-align: center;
  }

  .about-text, .about-image {
    max-width: 100%;
    min-width: auto;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}

/* ===========================
   Mobile Screens (below 768px)
=========================== */
@media screen and (max-width: 767px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
 /* why-choose-section */
 .why-choose-section {
  background: linear-gradient(to right, #f4f9ff, #ffffff);
  display: flex;
  justify-content: center;
  font-family: "Segoe UI", sans-serif;
  
 
}

.why-choose-section .container {
  background-color:white;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  
}

.left, .right {
  flex: 1;
  min-width: 300px;
}

.left h2 {
  font-size: 32px;
  font-weight: 700;
   color: #FF7518;
}

.left .intro {
  font-size: 17px;
  color: black;
  margin: 20px 0;
}

.stats {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}

.stats h3 {
  color: orange;
  font-size: 24px;
  margin: 0;
}

.stats p {
  margin: 5px 0 0;
  color: black;
}

/* Accordion Styles */
.accordion .item {
  border-top: 1px solid black;
  margin-top: 10px;
}

.accordion-header {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  color: black;
  cursor: pointer;
  width: 100%;
  padding: 12px 0;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: -15px;
  color: black;
  font-size: 24px;
}

.accordion-header.active::after {
  content: "-";
}

.accordion-body {
  display: none;
  padding: 10px 0 20px;
  color: black;
}

.accordion-body p {
  margin: 0;
}

/* Responsive: Tablet & Mobile */
@media screen and (max-width: 767px) {
  .right {
    display: block;
  }
}
@media (max-width: 1024px) {
  .why-choose-section {
   
  }

  .why-choose-section .container {
    flex-direction: column;
    align-items: center;
  }

  .left, .right {
    width: 100%;
    text-align: center;
  }

  .stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }

  .stats h3 {
    font-size: 20px;
  }

  .stats p {
    font-size: 14px;
  }
}
/* hero-banner */
.hero-banner {
  background-color: #0a1225;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 20px;
}

.hero-content h1 {
  font-size: 28px;
  font-weight: bold;
}

.hero-content span {
  background: #ff6f00;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin-top: 10px;
  font-size: 15px;
}

.hero-content a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #ff6a3d, #ffbe2e);
  color: #1a1a1a;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

/* =========== Tablets (768px - 1024px) =========== */
@media (max-width: 1024px) {
  .hero-banner {
    height: 250px;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-content a {
    padding: 9px 18px;
    font-size: 14px;
  }
}

/* =========== Mobile (below 768px) =========== */
@media (max-width: 767px) {
  .hero-banner {
    height: auto;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-content h1 {
    font-size: 20px;
  }

  .hero-content p {
    font-size: 13px;
  }

  .hero-content a {
    padding: 8px 16px;
    font-size: 13px;
  }
}
/* rank-section */
.rank-sell-form-section {
  padding: 40px 20px;
  background-color: #fff;
  margin: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.rank-sell-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 30px;
  justify-content: center;
}

.rank-sell-left,
.rank-sell-right {
  flex: 1 1 50%;
  padding: 20px;
  box-sizing: border-box;
}

.rank-sell-left h2 {
  font-size: 28px;
  font-weight: bold;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.rank-sell-left img {
  width: 100%;
  height: 400px;
  border-radius: 14px;
  object-fit: cover;
}

.right {
  flex: 1 1 400px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.right h3 span {
  color: #ff6600;
}

.right .subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
textarea {
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: orange;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  padding: 12px;
background: linear-gradient(to right, #fd8b34, #fc5c5c);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#formResponse {
  margin-top: 10px;
  color: green;
  font-weight: bold;
}
 /* site-footer */
 .site-footer {
  background-color: #0c162b;
  color: #fff;
  font-size: 15px;
  padding: 40px 10% 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #d4d4d4;
}

.footer-map {
  margin-top: 40px;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0;

  font-size: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 24px;
    align-items: center;
        text-align: center;
  }
}
/* chat-bot-button */
#openChat {
      position: fixed;
      bottom: 20px;
      right: 20px;
      padding: 10px 18px;
      font-size: 16px;
      background-color: #ff5e3a;
      color: white;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      z-index: 1001;
    }

    #chatPopup {
      display: none;
      flex-direction: column;
      position: fixed;
      bottom: 80px;
      right: 20px;
      width: 330px;
      height: 450px;
      background-color: #1a1a1a;
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
      z-index: 1000;
      overflow: hidden;
    }

    #chatHeader {
      background-color: #ff5e3a;
      padding: 12px;
      color: #ffffff; /* Changed to white */
      font-weight: bold;
      text-align: center;
    }

    #chatStatus {
      font-size: 12px;
      color: #ddd;
      padding: 5px 12px;
    }

    #chatTyping {
      font-size: 12px;
      color: #999;
      padding: 0 12px 5px;
    }

    #messages {
      flex: 1;
      overflow-y: auto;
      padding: 10px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .chat-bubble {
      max-width: 75%;
      padding: 8px 12px;
      border-radius: 16px;
      position: relative;
      font-size: 14px;
      line-height: 1.4;
      display: inline-block;
      word-wrap: break-word;
    }

    .chat-bubble.user {
      background-color: #292929;
      color: #fff;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
    }

    .chat-bubble.admin,
    .chat-bubble.bot {
      background-color: #444;
      color: #fff;
      align-self: flex-start;
      border-bottom-left-radius: 4px;
    }

    .time {
      font-size: 10px;
      color: #aaa;
      margin-top: 4px;
      text-align: right;
    }

    #inputArea {
      display: flex;
      padding: 10px;
      border-top: 1px solid #333;
      background-color: #1a1a1a;
    }

    #userMessage {
      flex: 1;
      padding: 8px;
      border: none;
      border-radius: 20px;
      background-color: #292929;
      color: white;
      margin-right: 8px;
    }

    #sendBtn {
      background-color: #ff5e3a;
      border: none;
      border-radius: 20px;
      padding: 8px 16px;
      color: white;
      cursor: pointer;
    }

    #sendBtn:hover {
      background-color: #ff764f;
    }


