@media only screen and (max-width: 768px) {
  html, body {
    overflow: auto !important;   
    height: auto !important;     
    position: static !important; 
    margin: 0;
    padding: 0;
  }

  /* Container for all mobile sections */
  #mobile-view {
    display: block;
    padding: 0;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
  }

  /* ✅ Adjust this if navbar is fixed */
  .mobile-section:first-of-type {
    min-height: calc(60vh - 70px); /* subtract navbar height */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 97px; /* space below navbar */
  }

  /* Normal scrolling sections */
  .mobile-section {
    margin: 20px auto;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 90%;
    box-sizing: border-box;
  }

  .mobile-hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color:#FAEDCA;
    text-align: left;
  }

  .mobile-hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #C6C2BF;
    text-align: left;
  }
}


/* Body and HTML */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  color: white;
  overflow-x: hidden; /* prevent horizontal scroll */
  overflow-y: hidden; /* prevent vertical scroll if not needed */
}

/* Background image */
.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;   /* cover full width */
  bottom: 0;  /* cover full height */
  min-width: 100%;
  min-height: 100%;
  background: url("../assets/dark-planet-space-landscape.jpg") no-repeat center center;
  background-size: cover;
  z-index: -2;
}

/* Optional mobile fix for smoother rendering */
@media (max-width: 768px) {
  .background {
    background-attachment: scroll; /* avoids shaking */
  }
}

/* Shooting stars layer */
.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* allow clicks to pass through */
  z-index: -1; /* above image, below content */
}

/* Shooting star style */
/* Shooting star = glowing dot */
.shooting-star {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;       /* makes it a circle */
  box-shadow: 0 0 8px white; /* glow effect */
  opacity: 0.9;
  animation: shoot 1.5s linear forwards;
}

@keyframes shoot {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-400px, 400px); /* diagonal movement */
    opacity: 0;
  }
}

/* Header */
  header {
    display: flex; justify-content: space-between; align-items: center; padding: 15px 50px; position: absolute; width: 90%; top: 0; z-index: 1000;
    }

    .quote-btn, .logo {
      background: #6a4ce6;
      padding: 15px 40px;
      border-radius: 20px;
      border: none;
      font-weight: bold;
      color: white;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .quote-btn:hover {
      background: #5436c8;
    }

    
    /* ===== Modal Overlay ===== */
    .modal {
      display: none; /* hidden by default */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 9999;
      justify-content: center;
      align-items: center;
    }

    /* ===== Modal Content ===== */
    .modal-content {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 30px;
      color: white;
      width: 90%;
      max-width: 450px;
      backdrop-filter: blur(10px);
      box-shadow: 0 0 30px rgba(255,255,255,0.2);
      position: relative;
      animation: fadeIn 0.4s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .modal-content h2 {
      margin-top: 0;
      text-align: center;
      color: #fff;
    }

    .modal-content input,
    .modal-content textarea {
      width: 100%;
      padding: 10px;
      margin: 8px 0;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
      background: rgba(255, 255, 255, 0.15);
      color: #fff;
    }

    .modal-content button {
      width: 100%;
      padding: 12px;
      background: #6a4ce6;
      border: none;
      color: white;
      font-size: 16px;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-top: 10px;
    }

    .modal-content button:hover {
      background: #5436c8;
    }

    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 24px;
      cursor: pointer;
      color: #fff;
    }

    .close-btn:hover {
      color: #6a4ce6;
    }

/*header*/
   .sound-btn {
  background: #333;
  color: white;
  padding: 15px;
  border-radius: 50%;
  border: none;
  cursor: pointer;   /* 👈 ensures hand cursor */
  font-size: 15px;
  margin: 0 20px;
  transition: background 0.3s ease;
  z-index: 1001;     /* 👈 even above header */
}

    .sound-btn:hover {
      background: #555;
    }


/* Content slider */
#content-slider {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.slide {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.8s ease;
  text-align: left;
  max-width: 600px;
}

.slide.active {
  opacity: 1;
}

/* circular menu */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10000;
}

.hamburger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* Circular Menu (hidden by default) */
.circular-menu {
  position: fixed;
  bottom: 350px;
  right: 50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: none; /* hide initially */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.circular-menu.active {
  display: flex; /* show when active */
}

.circular-menu ul {
  position: relative;
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}

.circular-menu ul li {
  position: absolute;
  top: 50%;
  left: 35%;
  transform-origin: -70px center;
}

.circular-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  animation: blinkGlow 2s infinite ease-in-out alternate;
}

/* Hover: stronger glow */
.circular-menu ul li a:hover {
  background: #6a4ce6;
  transform: scale(1.2);
  box-shadow: 0 0 20px #6a4ce6, 0 0 40px #6a4ce6;
}

/* Blink & Glow animation */
@keyframes blinkGlow {
  0% {
    opacity: 0.6;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.9), 0 0 30px rgba(255, 255, 255, 0.7);
  }
  100% {
    opacity: 0.7;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  }
}
/* Footer */
footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  /*background: rgba(0,0,0,0.6);*/
}

footer .socials {
  margin-top: 10px;
}

footer .socials a {
  margin: 0 10px;
  color: #fff;
  font-size: 1.3rem;
  transition: color 0.3s ease, transform 0.3s ease;
}
/* Make text more readable on small screens */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content h2 {
    font-size: 1.2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  /* Sidebar smaller on mobile */
  .sidebar {
    width: 200px;
    height: 200px;
    right: -70px;
  }

  .sidebar nav ul li a {
    font-size: 1rem;
  }
}

.nav-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-icons li a {
  display: flex;
  flex-direction: column; /* stack icon & text */
  align-items: center;
  text-decoration: none;
  color: #fff; /* change to your theme */
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.nav-icons li a i {
  font-size: 30px; /* icon size */
  margin-bottom: 0.3rem;
}

.nav-icons li a span {
  font-size: 12px;
  margin-top: 0.2rem;
}

.nav-icons li a:hover {
  color: #ffd700; /* gold hover */
}



/* Slide content box */
.hero-content {
  background: rgba(0, 0, 0, 0.6); /* black transparent background */
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  text-align: left; /* left aligned text */
  margin-left: -50%;
}

/* Headings hierarchy */
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content h2 {
  font-size: 14px;
  margin-bottom: 20px;
  font-weight: normal;
  color: #ddd; /* lighter than h1 */
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}
 .typing {
    font-family: monospace;
    font-size: 2.5rem;
    color: #fff;
    white-space: pre-wrap; /* so <br> works */
    display: inline-block;
    overflow: hidden;
    border-right: none; /* remove old cursor */
    position: relative;
  }

  /* Cursor effect */
  .typing::after {
    content: "|";
    position: absolute;
    right: -10px;
    animation: blink 0.7s step-end infinite;
    color: #fff;
  }

  @keyframes blink {
    50% { opacity: 0; }
  }

.voice-btn {
  background: #6a4ce6;
  width: 50px;          /* same width */
  height: 50px;         /* same height */
  border-radius: 50%;   /* makes it a circle */
  border: none;
  color: white;
  font-size: 18px;      /* icon/text size */
  cursor: pointer;
  margin: 0 10px;
  display: flex;        /* center icon inside */
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.voice-btn.active {
  background: rgb(11, 115, 235); /* indicate listening */
}


/*section indicator line*/

.section-indicator {
  position: absolute;
  top: 50%;
  left: 20px;   /* 👈 aligned left */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.section-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc; /* inactive */
  transition: background 0.3s;
  cursor: pointer;
}

.section-indicator .dot.active {
  background: #3498db; /* blue active */
}
/*services home*/




.orbit {
  position: relative;
  width: 90%;              /* take full width */
  height: 30vh;             /* keep planets inside the screen */
  perspective: 1200px;
  transform-style: preserve-3d;
  padding: 50px;
}

.planet {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease, box-shadow 0.3s;
}
/* Different planet colors */
.planet:nth-child(1){ background: radial-gradient(circle at 30% 30%, #ff9966, #663300); }
.planet:nth-child(2){ background: radial-gradient(circle at 30% 30%, #ff4444, #660000); }
.planet:nth-child(3){ background: radial-gradient(circle at 30% 30%, #99ff66, #006600); }
.planet:nth-child(4){ background: radial-gradient(circle at 30% 30%, #66ccff, #003366); }
.planet:nth-child(5){ background: radial-gradient(circle at 30% 30%, #c299ff, #4b0082); }
.planet:nth-child(6){ background: radial-gradient(circle at 30% 30%, #ffee99, #996600); }

/* Labels */
.planet::after {
  content: attr(data-label);
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  margin-top: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}
.planet.active::after {
  opacity: 1;
}

/* Active planet bigger + glow */
.planet.active {
  box-shadow: 0 0 40px rgba(255,255,255,0.9);
  z-index: 20;
}
.hero-content-2 {
  background: rgba(0, 0, 0, 0.6); /* black transparent background */
  padding: 24px;
  border-radius: 12px;
  max-width: 596px;
  text-align: left; /* left aligned text */
  margin-left: -135%;
  height: 65vh;
}
.hero-content-2 p{
  margin-top: -30px;
}

/*services home*/

/*home reviwew section*/
.reviews-section {
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* always 3 in a row */
  gap: 30px;
  justify-items: center;
  margin-top: 40px;
}

.review-card {
  background: transparent;
  border-radius: 12px;
  padding: 20px;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.review-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  filter: brightness(0) invert(1); /* makes image white */
}

.review-card h3 {
  margin: 10px 0;
  font-size: 1.1rem;
}

.feedback-rating {
  color: gold;
  font-size: 1.3rem;
  margin-top: 6px;
}
.hero-content-3 {
  background: rgba(0, 0, 0, 0.6); /* black transparent background */
  padding: 30px;
  border-radius: 12px;
  max-width: 800px;
  text-align: left; /* left aligned text */
  margin-left: -50%;
}

/*home review section*/


/*service page starts here*/


/* Services Showcase Layout */
/* Sphere Services Section */
.sphere-services-section {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  background: transparent;
  color: white;
  position: relative;
  z-index: 10;
  left: 0; /* reset fixed offset for smaller screens */
  flex-wrap: wrap; /* allows stacking on small screens */
}

/* Arc container */
.sphere-services-left {
  width: 350px;
  height: 500px;
  position: relative;
  margin-right: 40px;
  flex-shrink: 0;
}

.sphere-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 90%;
  position: relative;
}

.sphere-service-list li {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(255,255,255,0.12);
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  color: #fff;
  transition: transform 0.5s, background 0.3s, top 0.5s, left 0.5s;
  font-size: 0.9rem;
}

.sphere-service-list li.active {
  background: #6a4ce6;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Right details box */
.sphere-services-right {
  flex: 1;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.6);
  min-height: 300px;
  margin-left: 75px;
  width: 400px;
}

.sphere-services-right h2.typing {
  font-family: monospace;
  font-size: 1.6rem;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #6a4ce6;
  animation: typing 2s steps(20, end), blink .7s infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink {
  50% { border-color: transparent }
}

.sphere-services-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

.sphere-arc {
  position: absolute;
  top: 0;
  left: -20px;
  width: 120%;
  height: 100%;
  pointer-events: none;
}

.sphere-arc path {
  stroke: rgba(255, 255, 255, 0.6);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 6 12;
  animation: blinkArc 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.8));
}

@keyframes blinkArc {
  0% { stroke: rgba(255, 255, 255, 0.2); stroke-dashoffset: 0; }
  50% { stroke: rgba(255, 255, 255, 1); stroke-dashoffset: 18; }
  100% { stroke: rgba(255, 255, 255, 0.2); stroke-dashoffset: 0; }
}

/* ============= Responsive Breakpoints ============= */

/* Tablets */
@media (max-width: 1024px) {
  .sphere-services-section {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
  }

  .sphere-services-left {
    width: 280px;
    height: 420px;
    margin-right: 0;
    margin-bottom: 40px;
  }

  .sphere-services-right {
    width: 100%;
    margin-left: 0;
  }

  .sphere-services-right h2.typing {
    font-size: 1.4rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sphere-services-left {
    width: 220px;
    height: 320px;
  }

  .sphere-service-list li {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .sphere-services-right {
    padding: 20px;
  }

  .sphere-services-right h2.typing {
    font-size: 1.2rem;
  }

  .sphere-services-right p {
    font-size: 0.9rem;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .sphere-services-left {
    width: 180px;
    height: 260px;
  }

  .sphere-service-list li {
    font-size: 0.7rem;
    padding: 6px 10px;
  }

  .sphere-services-right h2.typing {
    font-size: 1rem;
  }
}



/*service page ends here*/


/*Contact Page starts here*/


/* contact page address*/
.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  font-style: normal;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.contact-item .icon { font-size: 1.5rem; }
.contact-item a     { color: inherit; text-decoration: none; }
.contact-item a:hover { text-decoration: underline; }
/* contact page ddress */


/*faqs*/
/* Quick utility styling—tweak as needed */
.faq-list { margin-top: 2rem; max-width: 700px; margin-left: auto; margin-right: auto; text-align: left; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.2); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
}
.faq-q::after { content: "+"; font-size: 1.4rem; transition: transform .2s; }
.faq-item.active .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  margin: 0;
  padding: 0 1rem 0 0;
  opacity: .9;
}
.faq-item.active .faq-a {
  max-height: 10rem;
  padding-bottom: 1.2rem;
}
/* when any item is open, hide the rest */
.faq-list.has-open .faq-item:not(.active) { display: none; }
/*faqs*/

/* form */
.hero-content-form{

 background: rgba(0, 0, 0, 0.6); /* black transparent background */
  padding: 30px;
  border-radius: 12px;
  max-width: 600px;
  text-align: left; /* left aligned text */
  margin-left: -50%;
  height: 75vh;
}
.ghost-form {
  margin: 2.5rem auto 0;
  max-width: 520px;
         /* ✅ use flex for column layout */
  flex-direction: column; /* stack inputs vertically */
  gap: 12px;            /* small space between inputs */
  padding: 1rem;
  box-sizing: border-box;
  
}

/* Input & Button Base */
.ghost-form input,
.ghost-form button {
  width: 100%; /* full width inside container */
  padding: 1rem 1.2rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 10px; /* smoother */
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

/* Placeholder styling */
.ghost-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  transition: color 0.3s ease;
}

.ghost-form input:focus::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Input focus effect */
.ghost-form input:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

/* Button Styling */
.ghost-form button {
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.35);
  position: relative;
  overflow: hidden;
}

/* Button Hover Effect */
.ghost-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.6s ease;
}

.ghost-form button:hover::before {
  left: 100%;
}

.ghost-form button:hover {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.ghost-form button:active {
  transform: translateY(0);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}


/*form*/
/*Contact page ends here*/













/* Floating Button */
.chat-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
}

.chat-button img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 300px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  font-family: Arial, sans-serif;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;

  /* hidden by default */
  display: none;
}

/* Header */
.chat-header {
  background: #25d366;
  color: #fff;
  padding: 12px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-right: 8px;
}

.close-btn {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

/* Body */
.chat-body {
  padding: 12px;
  background: #f7f7f7;
  flex: 1;
}

.chat-message {
  background: #000;
  padding: 10px;
  border-radius: 8px;
  max-width: 80%;
  font-size: 14px;
  line-height: 1.4;
}

/* Footer */
.chat-footer {
  display: flex;
  padding: 8px;
  background: #fff;
  border-top: 1px solid #ddd;
}

.chat-footer input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.chat-footer button {
  margin-left: 6px;
  padding: 8px 12px;
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.chat-footer button:hover {
  background: #1ebe5d;
}
.chat-window.show {
  display: flex; /* or block */
}

/*map slide*/

.map-slide {
  padding: 60px 20px;
  justify-content: center;
  align-items: center;
}

.map-slide .hero-content {
  width: 186%;
  max-width: 900px;
  text-align: center;
  margin-left: -123%;
}

.map-slide h1 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.map-container iframe {
  width: 90%;
  height: 250px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.map-container iframe:hover {
  transform: scale(1.02);
}

/*map slide*/

/*scrolling indicator*/
#scrollIndicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.5s ease;
}

/* Mouse outline */
.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 5px;
}

.mouse span {
  display: block;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: scrollAnim 1.5s infinite;
}

@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.5; }
  100% { transform: translateY(0); opacity: 1; }
}



/*scrolling indicator*/


/*about page css*/

.about-us-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 60px 40px;
  background: transparent;
  color: white;
}

.about-us-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  width: 100%;
  margin-left:-103%;
}

.about-us-left {
  flex: 1 1 45%;
}

.about-us-left img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.about-us-right {
  flex: 1 1 50%;
}

.about-us-right h1.typing {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.about-us-right h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #6a9fff;
}

.about-us-right p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
}

/*about page*/

/*areas we serve starts here*/

/* --- UK Cities Section Styles --- */
/* --- UK Cities Section Styles --- */
.hero-content-uk {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 12px;
  max-width: 900px;
  width: 450px;
  text-align: left;
  margin-left: -151%;
}

.uk-cities-slide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  
  padding: 60px 20px;
  background: transparent;
  color: white;
}

.uk-cities-header h1.typing {
  font-size: 2rem;
  margin-bottom: 10px;
  border-right: 2px solid #ffffff;
  white-space: nowrap;
  overflow: hidden;
  animation: typing 2s steps(20, end), blink .7s infinite;
}

.uk-cities-header h2 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: #6a9fff;
}

.uk-cities-search input {
  padding: 10px 15px;
  width: 100%;
  max-width: 400px;
  border: none;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.uk-cities-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 per row = 4 per page */
  gap: 15px;
  margin-bottom: 20px;
}

.uk-cities-list .city {
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 1rem;
}

.uk-cities-list .city:hover {
  background: #6a4ce6;
  transform: scale(1.05);
}

.uk-cities-actions {
  text-align: center;
}

.uk-cities-actions button {
  padding: 10px 20px;
  background: #6a4ce6;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  margin: 0 5px;
  transition: 0.3s;
}

.uk-cities-actions button:hover {
  background: #5633d4;
}
/*new up*/
.uk-cities-list .city {
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 15px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
}

.uk-cities-list .city:hover {
  background: #6a4ce6;
  transform: scale(1.05);
}

.uk-cities-actions {
  text-align: center;
}

.uk-cities-actions button {
  padding: 10px 20px;
  background: #6a4ce6;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.uk-cities-actions button:hover {
  background: #5633d4;
}

/* Typing Effect */


#uk-cities-heading{
  top:40px;
  text-align: left;
  margin-left: -10%;
}

/*areas we serve ends here */


/* ---------- Media Queries ---------- */

/* Tablets */
@media (max-width: 1024px) {
  header {
    padding: 10px 30px;
  }

  .quote-btn {
    padding: 15px 60px;
    font-size: 14px;
  }

  .modal-content {
    padding: 25px 30px;
    max-width: 400px;
  }

  #quoteForm input,
  #quoteForm textarea {
    padding: 10px;
    font-size: 13px;
  }
}

/* Mobile Devices */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .quote-btn {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    margin-top: 10px;
    border-radius: 10px;
    margin-left: -70%;
  }

  .modal-content {
    padding: 20px;
    max-width: 350px;
  }

  #quoteForm input,
  #quoteForm textarea {
    padding: 8px;
    font-size: 12px;
  }

  .close-btn {
    font-size: 22px;
    top: 5px;
    right: 10px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  header {
    padding: 8px 15px;
  }

  .quote-btn {
    font-size: 12px;
    padding: 10px;
  }

  .modal-content {
    padding: 15px;
    max-width: 300px;
  }

  #quoteForm input,
  #quoteForm textarea {
    padding: 6px;
    font-size: 11px;
  }
}

/*home page mobile query*/


/* Default: show content for desktop */
#content-slider {
  display: block;
}

/* Mobile and tablet: hide content */
@media only screen and (max-width: 1024px) {
  #content-slider {
    display: none;
  }
}
/* ===== Mobile Header Layout ===== */
@media only screen and (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between; /* Left, center, right */
    align-items: center;
    padding: 10px 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.5); /* optional for visibility on mobile */
  }

  .quote-btn {
    order: 1;                  /* Left */
    padding: 8px 15px;
    font-size: 14px;
    border-radius: 12px;
    background: transparent;
  }

  .logo {
    order: 2;                  /* Center */
    flex: 1;                   /* Center takes available space */
    text-align: center;
    font-size: 16px;
    padding: 8px;
    background: transparent;          /* remove desktop background if needed */
    margin-left: -50%;
    
  }

  .sound-btn {
    order: 3;                  /* Right side */
    padding: 8px;
    font-size: 12px;
  }
}
/* Mobile-specific footer */
@media only screen and (max-width: 768px) {
  footer {
    position: fixed;  /* Stick at bottom */
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    background: #000;  /* optional */
    color: white;
    z-index: 1000;
  }

  footer p.typing {
    font-size: 10px;  /* smaller font for mobile */
    margin: 0;
  }

  footer .socials {
    margin-top: 5px;
  }

  footer .socials a {
    font-size: 16px;  /* smaller icons */
    margin: 0 4px;
  }
}
/* Mobile-specific adjustments */
@media only screen and (max-width: 768px) {
  /* Floating Button */
  .chat-button {
    width: 50px;
    height: 50px;
    bottom: 70px;
    right: 15px;
  }

  .chat-button img {
    width: 28px;
    height: 28px;
  }

  /* Chat Window */
  .chat-window {
    width: 250px;        /* smaller width for mobile */
    bottom: 75px;        /* leave space above floating button */
    right: 15px;         /* closer to screen edge */
    font-size: 14px;     /* smaller font for mobile */
  }

  .chat-window input {
    font-size: 14px;     /* adjust input text size */
  }

  .chat-window button {
    font-size: 14px;     /* adjust send button size */
  }
}

