/*tablet view*/
/* 📱 Tablet view: 769px–1024px */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

  html, body {
    overflow: auto !important;
    height: auto !important;
    position: static !important;
    margin: 0;
    padding: 0;
  }

  /* Container for tablet */
  #mobile-view {
    display: block;
    padding: 2px;
    text-align: center;
    color: white;
    background: rgba(0, 0, 0, 0.6);
  }

  /* First section spacing below navbar */
  .mobile-section:first-of-type {
    min-height: calc(40vh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
  }

  /* Section styling */
  .mobile-section {
    margin: 30px auto;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    max-width: 85%;
    box-sizing: border-box;
  }

  /* Typography adjustments */
  .mobile-hero-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #FAEDCA;
    text-align: left;
  }

  .mobile-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #C6C2BF;
    text-align: left;
  }

  /* Feature, service, and audit lists */
  .feature-list,
  .service-list,
  .audit-list {
    max-width: 700px;
    margin: 30px auto 0;
  }

  .feature-list li,
  .service-list li,
  .audit-list li {
    padding: 20px 25px;
    font-size: 1.05rem;
  }

  .feature-list strong,
  .service-list strong {
    font-size: 1.3rem;
  }

  /* Feedback section */
  .feedback-list {
    gap: 25px;
  }

  .feedback-item {
    padding: 25px 30px;
    border-radius: 14px;
  }

  .feedback-item p {
    font-size: 1.1rem;
  }

  .client-name {
    font-size: 1rem;
  }

  .stars-mobile {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  /* CTA button */
  .cta-button {
    padding: 14px 28px;
    font-size: 1.1rem;
    border-radius: 50px;
  }
}

/* 📘 Tablet view (769px–1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {

  /* HEADER */
  header {
    display: flex;
    justify-content: space-between; /* left-center-right layout */
    align-items: center;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px); /* subtle modern blur effect */
  }

  .quote-btn {
    order: 1;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 14px;
    background: transparent;
  }

  .logo {
    order: 2;
    flex: 1;
    text-align: center;
    font-size: 20px;
    padding: 10px;
    margin-left: 0; /* remove offset from mobile */
    background: transparent;
  }

  .sound-btn {
    order: 3;
    padding: 10px 12px;
    font-size: 14px;
  }


  /* FOOTER */
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    background: #000;
    color: white;
    z-index: 1000;
  }

  footer p.typing {
    font-size: 12px;
    margin: 0;
  }

  footer .socials {
    margin-top: 8px;
  }

  footer .socials a {
    font-size: 20px;
    margin: 0 6px;
  }


  /* CHAT BUTTON */
  .chat-button {
    width: 60px;
    height: 60px;
    bottom: 85px; /* slightly higher above footer */
    right: 25px;
  }

  .chat-button img {
    width: 32px;
    height: 32px;
  }

  /* CHAT WINDOW */
  .chat-window {
    width: 320px;
    bottom: 95px;
    right: 25px;
    font-size: 15px;
  }

  .chat-window input {
    font-size: 15px;
    padding: 10px;
  }

  .chat-window button {
    font-size: 15px;
    padding: 8px 14px;
  }
}

/*tablet view*/
.feature-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
  color: white;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.feature-list li:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.feature-list strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #00ffcc; /* highlight color */
}


@media only screen and (max-width: 768px) {
  .service-list {
    list-style: none;
    padding: 0;
    margin: 20px auto 0;
    text-align: left;
  }

  .service-list li {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .service-list li:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }

  .service-list strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 6px;
    color: #00ffcc; /* accent color */
  }
}
@media only screen and (max-width: 768px) {
  .audit-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
  }

  .audit-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.4;
  }

  .cta-text {
    font-size: 1rem;
    margin: 20px 0 10px;
    color: #f0f0f0;
  }

  .cta-button {
    display: inline-block;
    background: #00ffcc;
    color: #000;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .cta-button:hover {
    background: #00cfa1;
  }
}
@media only screen and (max-width: 768px) {
  .feedback-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
  }

  .feedback-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
  }

  .feedback-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
  }

  .feedback-item p {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.5;
  }

  .feedback-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .client-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #00ffcc;
  }

 .stars-mobile {
  color: #FFD700; /* gold color */
  font-size: 1.3rem;
  letter-spacing: 3px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}
}
/*about page css starts here*/

/* 🌎 ABOUT US SECTION */
@media only screen and (max-width: 768px) {
  .about-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
  }

  .about-list li {
    background: rgba(255, 255, 255, 0.08);
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .about-list li::before {
    content: "•";
    color: #00ffcc;
    font-weight: bold;
  }

  .mobile-hero-content p {
    color: #C6C2BF;
  }
}

/* 💻 Tablet view */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .mobile-section#about {
    max-width: 85%;
    margin: 50px auto;
    padding: 40px 30px;
  }

  .mobile-hero-content h1 {
    font-size: 2rem;
  }

  .mobile-hero-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .about-list li {
    font-size: 1.1rem;
    padding: 14px 22px;
  }
}
/* 📘 FAQ Section Styles */
@media only screen and (max-width: 768px) {
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    text-align: left;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background 0.3s ease;
  }

  .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #00ffcc;
    text-align: left;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    position: relative;
  }

  .faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
  }

  .faq-item.active .faq-question::after {
    content: "–";
    transform: rotate(180deg);
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: rgba(255,255,255,0.05);
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
    color: #C6C2BF;
    line-height: 1.5;
  }
}

/* 💻 Tablet View */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  #faqs {
    max-width: 85%;
    margin: 50px auto;
    padding: 40px 30px;
  }

  .faq-question {
    font-size: 1.2rem;
    padding: 18px 24px;
  }

  .faq-answer p {
    font-size: 1.05rem;
  }
}


/* 🌠 Space-Themed Services */
@media only screen and (max-width: 768px) {
  .space-service-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .space-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(40, 40, 60, 0.4));
    border: 1px solid rgba(0, 255, 204, 0.2);
    border-radius: 15px;
    padding: 18px;
    box-shadow: 0 0 15px rgba(0, 255, 204, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .space-service-list li:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 204, 0.4);
  }

  .space-service-list .icon {
    font-size: 2rem;
    text-shadow: 0 0 10px #00ffcc;
    flex-shrink: 0;
  }

  .service-text strong {
    font-size: 1.2rem;
    color: #00ffcc;
    display: block;
    margin-bottom: 6px;
    text-align: left;
  }

  .service-text p {
    font-size: 0.95rem;
    color: #C6C2BF;
    line-height: 1.5;
  }
}

/* 💻 Tablet view (769–1024px) */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .space-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin: 40px auto;
  }

  .space-service-list li {
    padding: 25px;
  }

  .space-service-list .icon {
    font-size: 2.4rem;
  }

  .service-text strong {
    font-size: 1.3rem;
  }

  .service-text p {
    font-size: 1.05rem;
  }
}



/*about page css ends here*/
.service-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.service-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #00ffcc;
  border: 1px solid #00ffcc;
  padding: 12px 20px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
}

.service-btn:hover {
  background: #00ffcc;
  color: #000;
  box-shadow: 0 0 20px #00ffcc, 0 0 40px #00ffcc;
  transform: translateY(-4px);
}

.service-btn:active {
  transform: scale(0.98);
  box-shadow: 0 0 10px #00ffcc;
}

/* Tablet and Mobile Responsiveness */
@media (max-width: 1024px) {
  .service-buttons {
    gap: 12px;
  }
  .service-btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .service-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .service-btn {
    width: 80%;
    font-size: 0.9rem;
  }
}
/*new css for service we serve*/

/* ---------- Space-themed Service Buttons ---------- */

/* theme variables for easy tuning */
:root{
  --accent: #00ffcc;
  --accent-2: #00cfa1;
  --bg-card: rgba(255,255,255,0.06);
  --glass-border: rgba(0,255,204,0.18);
  --text: #ffffff;
  --shadow: rgba(0,255,204,0.14);
}

/* wrapper */
.service-buttons{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
  align-items: center;
  padding: 6px;
}

/* base button style (styled anchor) */
.service-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  padding: 12px 22px;
  border-radius: 999px;                 /* pill */
  text-decoration: none;
  color: var(--accent);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), var(--bg-card));
  border: 1px solid var(--glass-border);
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow:
    0 6px 18px var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.02);
  transition:
    transform 220ms cubic-bezier(.2,.9,.3,1),
    box-shadow 220ms ease,
    background 220ms ease,
    color 220ms ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, box-shadow;
}

/* glow + lift on hover / focus */
.service-btn:hover,
.service-btn:focus{
  transform: translateY(-6px) scale(1.02);
  color: #000;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow:
    0 10px 30px rgba(0,255,204,0.35),
    0 0 40px rgba(0,255,204,0.10);
  outline: none;
}

/* active press */
.service-btn:active{
  transform: translateY(-2px) scale(0.995);
  box-shadow: 0 6px 18px rgba(0,255,204,0.18);
}

/* keyboard accessibility */
.service-btn:focus-visible{
  outline: 3px solid rgba(0,255,204,0.18);
  outline-offset: 4px;
}

/* small icon/emojis inside */
.service-btn > .icon,
.service-btn > span.icon{
  font-size: 1.25rem;
  transform: translateY(-1px);
  filter: drop-shadow(0 4px 8px rgba(0,255,204,0.08));
}

/* responsive tweaks for tablet */
@media (min-width: 769px) and (max-width: 1024px){
  .service-buttons{
    gap: 22px;
  }
  .service-btn{
    min-width: 200px;
    padding: 14px 26px;
    font-size: 1.03rem;
  }
  .service-btn > .icon{ font-size: 1.4rem; }
}

/* mobile: stack vertically and full width-ish */
@media (max-width: 768px){
  .service-buttons{
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 0 12px;
  }

  .service-btn{
    width: 90%;
    max-width: none;
    padding: 14px 18px;
    min-width: 0;
    font-size: 0.98rem;
  }

  /* slightly smaller hover/glow on mobile for performance */
  .service-btn:hover,
  .service-btn:focus{
    transform: translateY(-4px);
    box-shadow: 0 8px 22px rgba(0,255,204,0.28);
  }
}

/* helpful utility if you want a disabled state */
.service-btn.disabled,
.service-btn[aria-disabled="true"]{
  pointer-events: none;
  opacity: 0.6;
  transform: none;
  box-shadow: none;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.03);
}

/* optional text-shadow for that slight sci-fi neon look (use sparingly) */
.service-btn {
  text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}


/*other open links section*/

/* ---------- Service Areas Section ---------- */
#service-areas {
  text-align: left;
  color: #fff;
  padding: 60px 20px;
}

#service-areas h1 {
  font-size: 2rem;
  color: #FAEDCA;
  margin-bottom: 10px;
}

#service-areas p {
  font-size: 1rem;
  color: #C6C2BF;
  margin-bottom: 25px;
  max-width: 700px;
}

.city-links h2 {
  margin-top: 25px;
  color: #00ffcc;
  font-size: 1.3rem;
  text-shadow: 0 0 5px rgba(0, 255, 204, 0.5);
}

.city-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 10px 0 20px;
}

.city-group a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 204, 0.3);
  color: #00ffcc;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.city-group a:hover {
  background: #00ffcc;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 15px #00ffcc, 0 0 30px #00ffcc;
}

/* Tablet view */
@media (max-width: 1024px) {
  .city-group a {
    padding: 9px 14px;
    font-size: 0.95rem;
  }
}

/* Mobile view */
@media (max-width: 768px) {
  #service-areas {
    padding: 40px 15px;
  }

  .city-group {
    flex-direction: column;
    gap: 8px;
  }

  .city-group a {
    width: 90%;
    text-align: center;
  }
}


/*other open links section*/