* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
 :root {
      --main-orange: #FF7518;
      --main-red: #fc5c5c;
      --white: #ffffff;
      --shadow: rgba(0, 0, 0, 0.2);
      --main-black:black;
       --accent: #FF7518;
  --accent-dark: #FF7518;
  --light: #fff8f1;
    }
 

body {
  font-family: 'Inter', sans-serif;

  color: white;
  overflow-x: hidden;
}
/* popup-section */
/* Centering wrapper */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none; /* Hide by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.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:0;

  font-size: 24px;
  background: none;
  border: none;
  color: black;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@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;
  }
}

/* popup-section1 */
#popupOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px 20px;
  overflow-y: auto;
  box-sizing: border-box;
}

#popupOverlay.show {
  display: flex;
}

.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;
  flex-direction: row;
  flex-wrap: wrap;
  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;
  box-sizing: border-box;
}

.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;
  color: black;
}

.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 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;
}

.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:#ff5e57 ;
}

#monthYear {
  font-weight: bold;
  font-size: 18px;
  color: #333;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  font-size: 14px;
}
span{
   color: #ff8c42;
}

.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.active {
  background: #ff5e57;
  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;
  color: black;
}

.time-slots div.slot {
  padding: 8px 16px;
  background: #eaeaea;
  border-radius: 20px;
  cursor: pointer;
  user-select: none;
}

.time-slots div.slot.active {
  background-color:#ff5e57;
  color: white;
}
select.custom-select option{

  background-color: orange;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;


  background: none;
  border: none;
  color: white;
  z-index: 1;
  cursor: pointer;
}


@media screen and (max-width: 1024px) {
  .popup {
    flex-direction: column;
    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;
  }
}

@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 */
   
/* 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-left: 10px;
  margin-top: 20px;
  background: linear-gradient(to right, var(--main-red), var(--main-orange));
  color: white;
  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('image/form.jpg') center/cover no-repeat;
}

.close-btn3 {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  color: white;
  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;
}
.popup-form-group {
  margin-bottom: 15px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #e5e5e5;
  box-sizing: border-box;
  margin: 0; /* removed uneven spacing */
}

/* 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;
    margin: 10px;
  }

  .right-section {
    min-height: 200px;
  }
}
.fab{
  color: #e55b00;
  
}

.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color:black;
  padding: 20px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: none;
  animation: fadeIn 0.6s ease;
  width: 90%;
  max-width: 500px;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  text-align: center;
}

.cookie-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: black;
}

.cookie-content button {
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  padding: 10px 25px;
  font-weight: bold;
  font-size: 15px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.cookie-content button:hover {
  background: rgba(255, 255, 255, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ✅ Responsive Tweaks */
@media (max-width: 480px) {
  .cookie-popup {
    padding: 15px 20px;
  }

  .cookie-content p {
    font-size: 14px;
  }

  .cookie-content button {
    width: 100%;
    font-size: 14px;
    padding: 10px 0;
  }
}

/*===== 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;
  
  padding: 5px 10px;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ff8c42;
}

.btn {
background: linear-gradient(to right, var(--main-red), var(--main-orange));
  padding: 10px 18px;

  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: 205px;
    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;
  }
}

 .container {
  width: 100%;
  padding: 60px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #111;
  color: white;
  gap: 30px;
  box-sizing: border-box;
}


.leftside {
   
  flex: 1;
  min-width: 280px;
   margin-top: -150px;
 
   

  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: 32px;
  margin-bottom: 10px;
    font-weight: 700;
}

.leftside h2 {
  font-size: 32px;
  font-weight: 700;
  
  line-height: 1.4;
}

.leftside p {
  font-size: 15px;
  color: white;
  margin-bottom: 30px;
  
}

.leftside img {
 
  max-width: 100%;
  
  margin-left: -9px;
  
}

.btn {
 background: linear-gradient(to right, var(--main-red), var(--main-orange));
  color: white;
  padding: 12px 25px;
  border: none;
  
  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;
      max-width: 630px;
      
    }
    .image-box1{
         display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 100%;

    }
    .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 {
    
    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;
    padding-top: 120px;
  }

}
@media screen and (min-width: 1920px) {
 

  .leftside h2 {
    font-size: 58px;
  }
  .leftside h3{
   font-size: 40px;
  }

  .leftside p {
    font-size: 24px;
  }

  .btn {
    font-size: 20px;
    padding: 18px 36px;
  }

  .image-box2 {
    padding-right: 10%;
  }
 
}
@media (max-width: 320px) {
  
  .right-image {
    display: none;
    
  }

  .image-box1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }

  .size, .size2, .size3, .size4, .size5 {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .leftside h2 {
    font-size: 18px;
  }
   

  .leftside p {
    font-size: 13px;
  }

  .btn {
    font-size: 12px;
    padding: 10px 18px;
  }
}

/* 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;
  
}
.service-card a{
  text-decoration: none;
}
.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);
 
  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);
}





 
  

 */
 
.services-section {
  background: linear-gradient(155deg, var(--main-orange) 50.3%, #ffffff 0%);
 





  

  position: relative;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
}

  

  .rocket {
    position: absolute;
    top: 20px;
    left: 20px;
    height: 200px;
    z-index: 10;
    /* animation: flyAround 15s ease-in-out infinite, spin 3s linear infinite; */
      animation: flySpin 18s ease-in-out infinite;

  }

  
 @keyframes flySpin {
  0%   { transform: translate(0vw, 0vh) rotate(0deg); }
  15%  { transform: translate(25vw, 10vh) rotate(90deg); }
  30%  { transform: translate(50vw, 20vh) rotate(180deg); }
  45%  { transform: translate(75vw, 30vh) rotate(270deg); }
  60%  { transform: translate(90vw, 50vh) rotate(360deg); }
  75%  { transform: translate(60vw, 70vh) rotate(450deg); }
  90%  { transform: translate(30vw, 40vh) rotate(540deg); }
  100% { transform: translate(0vw, 0vh) rotate(630deg); }
}



  @keyframes spin {
    0% { rotate: 0deg; }
    100% { rotate: 360deg; }
  }


    .services-section h2 {
      padding-top: 20px;
      font-size: 40px;
     
      color: white;
    
      position: relative;
      z-index: 2;
      
    }
     .services-section h4{
       padding-top: 8px;
      font-size: 30px;
      
     
      color: black;
     }
    

    .cards {
      padding-top: 20px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 40px;
      max-width: 1200px;
      margin: 0 auto;
      z-index: 2;
      position: relative;
    }

    .card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 18px;
      width: 320px;
      padding: 35px 25px;
      box-shadow: 0px 10px 25px rgba(0,0,0,0.5);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
      position: relative;
      opacity: 0;
      transform: translateY(60px);
      animation: fadeUp 1s forwards;
    }

    .card:nth-child(1) { animation-delay: 0.3s; }
    .card:nth-child(2) { animation-delay: 0.6s; }
    .card:nth-child(3) { animation-delay: 0.9s; }

    @keyframes fadeUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -75%;
      width: 50%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
      transform: skewX(-25deg);
      transition: 0.5s;
      z-index: 1;
    }

    .card:hover::before {
      left: 130%;
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffe6c7, #ffb77d);
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 25px;
      box-shadow: 0 5px 15px rgba(255, 165, 0, 0.3);
      position: relative;
      z-index: 2;
    }
    

    .icon-circle img {
      width: 40px;
      height: 40px;
    }

    .card h4 {
      font-size: 24px;
      font-weight: 700;
      color: #222;
      margin-bottom: 15px;
      z-index: 2;
      position: relative;
    }

    .card p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
      margin-bottom: 25px;
      z-index: 2;
      position: relative;
    }

    .cta-btn {
      background: linear-gradient(to right, var(--main-red), var(--main-orange));
      padding: 12px 30px;
      color: #fff;
      border: none;
      border-radius: 50px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 0 6px 15px rgba(252, 92, 92, 0.3);
      transition: 0.3s ease;
      z-index: 2;
      position: relative;
    }

    .cta-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 25px rgba(255, 115, 24, 0.3);
    }
    @media (max-width: 1024px) {
  .rocket {
    height: 160px;
  }

  .services-section h2 {
    font-size: 32px;
  }

  .services-section h4 {
    font-size: 24px;
  }

  .card {
    width: 280px;
    padding: 30px 20px;
  }

  .card h4 {
    font-size: 20px;
  }

  .card p {
    font-size: 14px;
  }
}


    @media (max-width: 768px) {
      .cards {
        flex-direction: column;
        align-items: center;
      }

      .services-section h2 {
        font-size: 38px;
      }
      .services-section h4 {
        font-size: 25px;
      }

      .card {
        width: 90%;
        margin-bottom: 20px;
      }
    }
 /* about-section */
 .about-section {
     background: linear-gradient(-155deg, var(--main-black) 50%, #ffffff 0%);

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  gap: 40px;
  flex-wrap: wrap;
  background-color: white;
  
}

.about-text {
  flex: 1;
  min-width: 300px;
  
}

.about-text h1 {
  text-transform: uppercase;
  color: #FF7518;

  display: block;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 2rem;
  color: #1d1d36;
  margin-bottom: 10px;
  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: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px; /* Enables 3D space */
}

.about-image img {
  width: 100%;
  max-width: 900px;
  border-radius: 15px;
 
  transition: transform 0.4s ease;
  cursor: pointer;
}




.about-image img.zoomed {
  transform: scale(1.20) rotateY(-5deg) rotateX(3deg);
}





/* ===========================
   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;
    color: white;
   
  }

  .about-text p {
    font-size: 0.9rem;
     color: white;
  }

  .cta-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
@media screen and (max-width: 1920px) {
  .about-text h1{
    font-size: 30px;
  }
  
}
 /* why-choose-section */
 .container4{
background-color: black;
padding-top: 50px;
padding-bottom: 40px;
  
 }
 .toast-section {
  max-width: 1200px;
  margin: auto;
}



.main-heading {
   color: #FF7518;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.card-container-why {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px;
}

.card-why {
  background-color: #111;
  padding: 30px;
  border: 1px solid #333;
  border-radius: 8px;
  flex: 1 1 300px;
  transition: 0.3s ease;
   border-color: orange;
}



.card-why .icon {
  font-size: 30px;
  margin-bottom: 20px;
}

.card-why h2 {
  font-size: 20px;
  margin-bottom: 15px;
}

.card-why p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.learn-more {
  text-decoration: none;
  color: #FF7518;
  font-weight: 500;
  transition: 0.2s ease;
}





.active-link {
 color: #FF7518;
}

@media (max-width: 768px) {
  .card-container {
    flex-direction: column;
    
  }
}
 /*-banner */
.hero-banner {
  background-color: black;
  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: #FF7518;
   
  -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;

  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}
.hero-button{
  background: linear-gradient(to right, var(--main-red), var(--main-orange));
  color: white;
}

/* =========== 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 */
.container6{
  width: 100%;
}

.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;
 
  justify-content: center;

}

.rank-sell-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
 
  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: auto;
  max-height: 600px;
  border-radius: 14px;
  object-fit: cover;
}

.right-form {
  flex: 1 1 400px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.right-form h1 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: center;
}

.right-form h1 span {
  color: #FF7518;
}

.right-form .subtext {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}


input,
select,
textarea {
 padding-right:40px ;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  transition: border-color 0.3s ease;
  margin: 8px 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #FF7518;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

button {
  padding: 12px;
  background: linear-gradient(to right, var(--main-red), var(--main-orange));
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#formResponse {
  margin-top: 10px;
  color: #FF7518;
  font-weight: bold;
}

/* --------------------------
📱 Responsive Media Queries 
--------------------------- */

/* Tablets (≤1024px) */
@media (max-width: 1024px) {
  .rank-sell-left,
  .rank-sell-right {
    flex: 1 1 100%;
    padding: 10px;
  }

  .right-form {
    max-width: 100%;
  }

  .rank-sell-left img {
    max-height: 400px;
  }

  .rank-sell-left h2,
  .right-form h3 {
    font-size: 24px;
  }
}

/* Mobile Devices (≤768px) */
@media (max-width: 768px) {
  .rank-sell-form-section {
    flex-direction: column;
    padding: 30px 15px;
  }
 

  .rank-sell-left,
  .rank-sell-right {
    flex: 1 1 100%;
    padding: 0;
  }

  .right-form {
    padding: 0;
  }

  .right-form h3 {
    font-size: 22px;
    padding-top: 10px;
  }

  .right-form .subtext {
    font-size: 13px;
  }

  input,
  select,
  textarea {
    font-size: 15px;
    padding: 10px 12px;
  }

  button {
    font-size: 15px;
  }
}


 /* site-footer */
 .site-footer {
  background-color:black;
  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 a{
   
   color: white;
    text-decoration: underline;

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

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

.footer-map {
  margin-top: 40px;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 20px 0;

  font-size: 14px;
  margin-top: 20px;
}
.footer-bottom a{
  color: white;
  text-decoration: none;
}

/* 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;
}

#welcomePopup {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background-color: #ff5e3a;
  color: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

#welcomePopup.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

#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;
  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;
}

.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 0 0;
}

.quick-reply-btn {
  background-color: #f0f0f0;
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s ease;
}

.quick-reply-btn:hover {
  background-color: #ddd;
}

.name-input-container {
  display: flex;
  align-items: center;
  margin: 10px 0;
  padding: 8px;
  background-color: #f1f1f1;
  border-radius: 20px;
  max-width: 80%;
  align-self: flex-start; /* Make it appear like a bot message 
}

.name-input {
  flex: 1;
  padding: 8px 12px;
  border: none;
  border-radius: 15px;
  outline: none;
  font-size: 14px;
  background-color: #fff;
  margin-right: 5px;
}

.name-submit-btn {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
}

.name-submit-btn:hover {
  background-color: #45a049;
} */

/* Floating WhatsApp Icon */
#whatsappIcon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;         /* Fixed width */
  height: 55px;        /* Fixed height */
  background: #25D366;
  color: white;
  font-size: 24px;
  display: flex;       /* Center icon */
  align-items: center;
  justify-content: center;
  border-radius: 50%;  /* Makes it a perfect circle */
  cursor: pointer;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
}

  #whatsappIcon:hover {
    background: #20b954;
  }

  /* Chat Popup */
  #chatPopup {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
    font-family: Arial, sans-serif;
    z-index: 1000;
  }

  #chatPopup.hidden {
    display: none;
  }

  #chatHeader {
    background: #25D366;
    color: white;
    padding: 10px;
    font-weight: bold;
  }

  #messages {
    padding: 10px;
    max-height: 250px;
    overflow-y: auto;
  }

  .chat-bubble {
    padding: 8px 12px;
    margin: 6px 0;
    border-radius: 8px;
    display: inline-block;
    max-width: 80%;
  }

  .chat-bubble.bot {
    background: #f1f0f0;
    color: #000;
    align-self: flex-start;
  }

  .chat-bubble.user {
    background: #25D366;
    color: #fff;
    align-self: flex-end;
    text-align: right;
  }

  #inputArea {
    display: flex;
    border-top: 1px solid #ddd;
  }

  #userMessage {
    flex: 1;
    border: none;
    padding: 10px;
    outline: none;
  }

  #sendBtn {
    background: #25D366;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
  }



/* crausle */
    .container8 {
      background-color: black;
      /* background-color:black; */
      
    }

    .team-heading {
      text-align: center;
      padding: 20px;
     
      color: white;
    }

    .team-heading h2 {
      font-size: 52px;
      font-weight: 800;
      color: whites;
    
      margin: 0;
    }
    

    .team-heading h2 span {
       color: #ff6a00;
      -webkit-text-fill-color: initial;
      background: none;
    }

    .team-heading .tagline {
      color: white; 
      font-size: 16px;
      margin-top: 10px;
    }

    .team-section {
      padding: 0 20px 60px;
      text-align: center;
    }

    .carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      overflow: hidden;
    }

   
   .carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}


    .carousel::-webkit-scrollbar {
      display: none;
    }

   .team-card {
  flex: 0 0 342px;
  background: white;
  color: #111;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  scroll-snap-align: center;
}



    .team-card img {
     
      width: 200px;
      height: 200px;
      object-fit: cover;
      border-radius: 50%;
      margin-bottom: 20px;
    }

    .team-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
      text-transform: uppercase;
    }

    .role {
      color:#e65c00 ;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .role.sales {
      color: #e65c00;
    }

    .role.web {
      color: #e65c00;
    }

    .desc {
      font-size: 14px;
      line-height: 1.6;
      color: #444;
      margin-bottom: 15px;
    }

    .socials i {
      font-size: 18px;
      margin: 0 6px;
      color: #e65c00;
      transition: color 0.3s;
    }
    .social-links a{
      font-size: 25px;
      padding: 2px;

    }

    .socials i:hover {
      color: #e65c00;
    }

    .nav {
      background: black;
      border: none;
      color: white;
      font-size: 24px;
      padding: 10px 15px;
      cursor: pointer;
      border-radius: 50%;
      margin: 0 10px;
    }

    .footer-note {
      margin-top: 40px;
      font-size: 13px;
      color: #cce0ff;
    }

    .footer-note a {
      color: #fff;
      text-decoration: underline;
    }

    /* ---------- Responsive Styles ---------- */
    @media (max-width: 1024px) {
      .team-heading h2 {
        font-size: 42px;
      }

      .team-card {
        flex: 0 0 240px;
      }
    }

    @media (max-width: 768px) {
      .carousel-wrapper {
        flex-direction: column;
      }

      .nav {
        margin: 10px 0;
      }

      .team-heading h2 {
        font-size: 36px;
      }

      .team-card {
        flex: 0 0 220px;
        padding: 16px;
      }
    }

@media (max-width: 480px) {
  .carousel-wrapper {
    flex-direction: row; /* KEEP horizontal layout */
    overflow-x: auto;
  }

  .carousel {
    gap: 10px;
    padding: 10px 10px;
  }

  .team-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .nav {
    font-size: 20px;
    padding: 8px 12px;
    margin: 0;
  }
}
/* workflow */
