*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  padding-top: 65px;
  margin: 0;
  font-family: Arial, sans-serif;
}

.logo img{
  height: 200px; /* adjust as needed */
  width: auto; 
  position: absolute;
  top: -70px;
  left: -10px;
}

a{
  color: #ff440083;
  text-decoration: none;
  margin: 0;
}

ul{
  list-style: none;
}


.navbar{
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  color: orangered;
  z-index: 1000;
  background: linear-gradient(128deg, #fdfae5 0%, #ffe0b2 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); 
}

.nav-links{
  display: flex;
  align-items: center;  
  margin-left: auto;
}

.nav-links li{
  margin: 0 20px;
  color: #ff4400db;
}

.nav-links li:hover {
  cursor: pointer;
  color: orangered;
  text-decoration: underline;
}

header {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-image: url(Img/BG.jpg);
  background-position: bottom;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}



/* Pop-up ad (ad-style corner) */
.popup-ad {
  position: fixed;
  top: 90px;
  right: 14px;
  background: #ffeece;
  color: #d87900;
  box-shadow: 0 4px 18px rgba(0,0,0,0.13);
  border-radius: 14px;
  padding: 14px 28px 14px 18px;
  z-index: 9999;
  font-size: 1.01rem;
  max-width: 320px;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: bounceIn 0.4s;
}
.popup-close {
  background: transparent;
  border: none;
  color: #d87900;
  font-size: 1.2rem;
  cursor: pointer;
  margin-left: 4px;
}

.popup-close:hover { color: #ff4c00; }

@keyframes bounceIn {
  from { transform: scale(0.85); opacity: 0;}
  to { transform: scale(1); opacity: 1;}
}

.header-content{
  max-width: 640px;          /* or whatever fits your h1 text nicely */
  margin-top: -300px;
  margin-left: 400px;
  text-align: center;
  padding: 48px 16px 0 16px;
  z-index: 2;
  position: absolute;
}

.header-content h2{
  font-size: 3vmin;
  margin: 0 10px 0 11px;
  text-shadow: 0 3px 20px orangered;
}
  
  
.header-content h1{
  font-size: 7vmin;
  margin: 150px 10px 0;
  text-shadow: 0 2px 20px orangered;
}

.announcement-banner {
  width: 100vw;
  background: #ffeece;
  color: #d87900;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  animation: dropdown 0.5s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@keyframes dropdown {
  from { transform: translateY(-110%);}
  to { transform: translateY(0);}
}

.announcement-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 48px 20px 24px;
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.announcement-content p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.banner-close {
  background: transparent;
  border: none;
  color: #d87900;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  margin-left: 18px;
  margin-top: 2px;
  transition: color 0.15s;
}

.banner-close:hover {
  color: #ff4c00;
}



/* WhatsApp banner styling */
.whatsapp-banner {
  width: 84%;
  max-width: 100%;
  margin: 24px 0 0 40px;
  box-sizing: border-box;
  background: #ff6f3bd7;
  color: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 14px 10px;
  border-radius: 12px;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: orangered;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  transition: background 0.15s;
  white-space: nowrap;
  margin-left: 10px;
}

.whatsapp-btn:hover {
  background: #227d1f;
}

.menu-btn {
  display: none;
  font-size: 2rem;
  color: orange;
  cursor: pointer;
  z-index: 1500;
}



/*Our Services*/
section {
  width: 100%;
  color: #323232;
  background: linear-gradient(135deg, #ffae64 0%, #ffa646 100%);
  margin: 0;
  min-height: 100vh;
}


/* Dropdown menu styling */
.nav-links {
  list-style: none;
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  border: none;
  outline: none;
  font: inherit;
  cursor: pointer;
  color: inherit;
  padding: 8px 14px;
}

.dropdown-arrow {
  margin-left: 6px;
  font-size: 0.75em;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #fff;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 2001;
  border-radius: 7px;
  margin-top: 2px;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 1px solid #f2f2f2;
  transition: background 0.15s;
}

.dropdown-content a:last-child { border-bottom: none; }

.dropdown-content a:hover {
  background: #f7fafd;
  color: #d87900;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  display: block;
}



.services-main {
  text-align: center;
  background: linear-gradient(135deg, #fe982c 0%, #ffa64698 100%);
  margin: 0;
  min-height: 80vh;
  padding-top: 40px;
}

.line{
  width: 150px;
  height: 4px;
  background: #ff5f17;
  margin: -10px auto;
  border-radius: 5px;
} 

.services-main h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: .01em;
}
.services-cards {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row; /* Change from column to row */
  padding: 40px 34px 32px 50px;
}
.service-card {
  background: #323232;
  border-radius: 14px;
  min-width: 240px;
  max-width: 340px;
  padding: 38px 34px 32px 34px;
  box-shadow: 0 2px 18px #00000033;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  border: 1.5px solid #2d2d2d;
}

.service-card:hover {
  box-shadow: 0 6px 28px #ff6607e2;
  transform: translateY(-5px) scale(1.035);
  border: 1.5px solid #ff9500;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff5f17;
  border-radius: 50%;
  width: 64px;
  height: 64px;
  font-size: 2rem;
  color: whitesmoke;
  margin-bottom: 22px;
  box-shadow: 0 3px 13px #ff5f1733;
}
.service-card h3 {
  color: #ff5f17;
  margin: 0 0 10px 0;
  font-size: 1.4rem;
  font-weight: bold;
}
.service-card p {
  margin: 0;
  font-size: 1.07rem;
  color: #ededed;
}



/* Vehicles section */
.vehicle-body{
  text-align: center;
  width: 100%;
  color: #323232;
  background: linear-gradient(135deg, #ffae64 0%, #ffa646 100%);
  margin: 0;
  min-height: 80vh;
  padding-top: 90px;
  padding-bottom: 100px;
}
.v-line{
  width: 150px;
  height: 4px;
  background: #ff5f17;
  margin-left: auto;
  margin-right: auto;
  margin-top: -45px;
  margin-bottom: 70px;
  border-radius: 5px;
} 
.v-section-title{
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 50px;
  margin-left: 650px;
  color: #323232;
  display: flex;
  align-items: center;
  gap: 9px;
}
.vehicles {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 12px -100px 28px -100px;
}
.veh-card {
  background: linear-gradient(128deg, #fdfae5 0%, #ffe0b2 100%);
  border-radius: 14px;
  padding: 18px 12px 11px 12px;
  text-align: center;
  min-width: 185px;
  max-width: 120px;
  color: #984a09;
  font-size: 1.10rem;
  box-shadow: 0 1px 8px #eaa23529;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 38px;
}
.veh-card small {
  font-size: 1em;
  color: #713f00;
  display: block;
  margin-top: 10px;
  font-weight: bold;
}

.veh-icon-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 8px;
  display: block;
}


.wp-btn {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  background: orangered;
  color: #fff;
  padding: 6px 16px;
  border: none;
  border-radius: 17px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 10px #21d26922;
  transition: background 0.16s;
}
.wp-btn i {
  font-size: 1.12em;
}
.wp-btn:hover, .wp-btn:focus {
  background: #128c54;
  color: #fff;
}



/* Cities */
#cities{
  margin-top: -100px;
  min-height: 100vh;
  padding-bottom: 30px;
  background: linear-gradient(135deg, #ffae64 0%, #ffa646 100%);
}

.cities-title {
  padding-top: 100px;
  text-align: center;
  font-size: 3vmin;
  margin-bottom: 36px;
}

.c-line{
  width: 150px;
  height: 4px;
  background: #ff5f17;
  margin-left: auto;
  margin-right: auto;
  margin-top: 5px;
  margin-bottom: 70px;
  border-radius: 5px;
}

.cities-grid {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 40px;  /* Space between the cards */
  margin: 40px auto;
  flex-wrap: wrap; /* For mobile stacking */
}

.city-card1 {
  background: linear-gradient(128deg, #fdfae5 0%, #ffe0b2 100%);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  overflow: hidden;
  width: 340px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 24px;
}


.city-card-promo {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
  border: 2.3px solid #dc8f00;
  border-radius: 17px;
  box-shadow: 0 4px 24px #cb7d08ac;
  padding: 34px 20px 28px 20px;
  min-width: 280px;
  max-width: 330px;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  margin: 0 3vw;
  position: relative;
  z-index: 2;
  animation: city-pop-bounce 0.7s;
}
.city-promo-icon {
  font-size: 3.3em;
  color: #ff9d00;
  margin-bottom: 16px;
  margin-top: 80px;
  text-shadow: 0 2px 16px #19e19311;
}
.city-card-promo h3 {
  font-size: 1.3em;
  margin-bottom: 12px;
  color: #ff9d00;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.city-card-promo .city-desc {
  color: #2e2f0b;
  font-size: 1.01em;
  margin: 0;
  line-height: 1.42;
}

@keyframes city-pop-bounce {
  0% { transform: scale(0.89) translateY(23px); opacity: 0.2;}
  60% { transform: scale(1.05) translateY(-8px);}
  100% { transform: scale(1) translateY(0); opacity: 1;}
}


.city-card2 {
  background: linear-gradient(128deg, #fdfae5 0%, #ffe0b2 100%);
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.09);
  overflow: hidden;
  width: 340px;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 12px;
}

.city-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.city-content {
  padding: 20px 22px 0 22px;
  text-align: center;
}

.city-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 12px 0 2px 0;
}

.city-subheading {
  font-size: 1.08rem;
  color: #777;
  margin-bottom: 8px;
}

.city-desc {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.city-desc1 {
  color: #444;
  font-size: 1.01rem;
  margin-bottom: 40px;
  line-height: 1.6;
}



/* Review Banner */
.growth-section {
  background: linear-gradient(90deg, #131a1f 60%, #191f28 100%);
  color: #fff;
  padding: 200px 12px 0px 12px;
  margin: 0;
}
.growth-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.growth-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 46px;
  letter-spacing: 0.02em;
  color: #fff;
}
.growth-stats-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 75px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.growth-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 135px;
  background: #ffffff0a;
  border-radius: 17px;
  padding: 28px 24px 22px 24px;
  box-shadow: 0 4px 24px #1c8c4340;
  border: 1.5px solid #ffffff12;
  transition: transform 0.14s;
}
.growth-stat:hover {
  transform: scale(1.07);
  background: #ffffff14;
}
.growth-stat i {
  font-size: 2.5em;
  color: orange;
  margin-bottom: 7px;
  text-shadow: 0 2px 14px #ffa60083;
}
.growth-value {
  font-size: 2em;
  font-weight: bold;
  letter-spacing: 0.02em;
  color: whitesmoke;
}
.growth-label {
  margin-top: 2px;
  font-size: 1.12em;
  font-weight: 600;
  color: #c9d3d9;
  text-shadow: 0 1px 3px #2225;
}



/*Why Choose Us*/
.why-cards-section {
  background: #fff;
  padding: 55px 12px 80px 12px;
}

.why-cards-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 52px;
  color: #222;
  letter-spacing: 0.01em;
  position: relative;
}
.why-cards-title:after {
  content: "";
  display: block;
  width: 75px;
  height: 4px;
  background: #ff9500;
  border-radius: 2px;
  margin: 18px auto 0 auto;
}
.why-cards-row {
  display: flex;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}
.why-card {
  background: linear-gradient(128deg, #fdfae5 0%, #ffe0b2 100%);
  border-radius: 18px;
  box-shadow: 0 6px 32px #ffc05717;
  padding: 38px 28px 32px 28px;
  min-width: 300px;
  max-width: 370px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  border: 2px solid #fff8ea;
  transition: box-shadow .18s, border .15s;
}
.why-card:hover {
  box-shadow: 0 10px 36px #ffa33a2a;
  border: 2px solid #ffbe63;
}
.why-card-icon {
  background: #fffbe3;
  color: #ff9500;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.1em;
  margin-bottom: 19px;
  box-shadow: 0 2px 13px #ffb0162e;
}
.why-card h3 {
  font-size: 1.29em;
  font-weight: bold;
  color: #272626;
  margin-bottom: 18px;
  text-align: center;
}
.why-card p {
  color: #474441;
  font-size: 1.14em;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.5;
  text-align: left;
}
.why-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-card-features li {
  margin-bottom: 22px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.why-card-features .tick {
  color: #ff9500;
  font-size: 1.22em;
  margin-top: 3px;
  flex-shrink: 0;
}
.why-card-features span {
  line-height: 1.38;
  font-size: 1.08em;
}
.why-card b {
  color: orange;
}


/* GET IN TOUCH */
.get-touch-btn {
  background: #ff9500;
  padding: 8px 10px;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s;
}
.get-touch-btn li{
   color: whitesmoke !important;
}

.get-touch-btn:hover {
  background: #e67e00;
}

.get-touch-btn li:hover {
  cursor: pointer;
  text-decoration: none;
}


#contact-form {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
  padding: 60px 12px;
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-container {
  max-width: 430px;
  width: 100%;
  margin: 0 auto;
}

#contact-form h2 {
  color: #e9720e;
  text-align: center;
  font-size: 2.1rem;
  margin-bottom: 26px;
  font-weight: bold;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.contact-form {
  background: #fff;
  padding: 32px 25px 28px 25px;
  border-radius: 17px;
  box-shadow: 0 8px 22px rgba(255, 149, 0, 0.07);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid #fce0b0;
  border-radius: 8px;
  font-size: 1.04rem;
  padding: 13px 14px;
  background: #fffaf3;
  color: #53442b;
  margin-bottom: 0;
  transition: border-color 0.22s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff9500;
  outline: none;
}

.contact-form textarea {
  min-height: 95px;
  resize: vertical;
}

.contact-form button {
  background: #ff9500;
  color: #fff;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 13px 0;
  border: none;
  border-radius: 23px;
  text-align: center;
  cursor: pointer;
  margin-top: 3px;
  margin-bottom: 6px;
  transition: background .23s, box-shadow .22s;
  box-shadow: 0 3px 16px #ff980043;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.contact-form button i {
  font-size: 1.17em;
}

.contact-form button:hover {
  background: #e08604;
  color: #fff;
}




/* FAQs */
.faq-section {
    background: linear-gradient(135deg, #fff8f0 0%, #ffe5cc 100%);
    padding: 80px 20px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
  font-size: 2.2rem;
  margin-top: 20px;
  margin-bottom: 50px;
  margin-left: 200px;
  color: #323232;
  display: flex;
  align-items: center;
  gap: 9px;
}

.f-line{
  width: 250px;
  height: 4px;
  background: #ff5f17;
  margin-left: auto;
  margin-right: auto;
  margin-top: -35px;
  margin-bottom: 70px;
  border-radius: 5px;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #ff9500;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question i {
    transition: transform 0.3s;
    color: #ff9500;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-contact {
    text-align: center;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-contact h3 {
    color: #ff9500;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 10px 0;
    font-size: 1.1rem;
}

.contact-info i {
    color: #ff9500;
    margin-right: 10px;
}




/* T&C Page and Others */
.zipspeeds-footer-section {
  width: 100%;
  color: #323232;
  background: linear-gradient(135deg, #febb78 0%, #ff8402 100%);
  margin: 0;
  min-height: 80vh;
  padding-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 34px 150px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-block h2 {
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-block p, .footer-block address {
  font-size: 1rem;
  margin-bottom: 6px;
  font-style: normal;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-list-l {
  list-style: none;
  padding-bottom: 30px;
  margin: 0;
}
.footer-list li {
  margin-bottom: 9px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-list li i {
  color: #323232;
  font-size: 1em;
}
.footer-list a {
  color: #323232;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-list a:hover {
  color: whitesmoke;
}

.footer-list-l li {
  margin-bottom: 9px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-list-l li i {
  color: #323232;
  font-size: 1em;
}
.footer-list-l a {
  color: #323232;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-list-l a:hover {
  color: whitesmoke;
}

.footer-social .footer-icons {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}
.footer-social .footer-icons a {
  color: #fff;
  font-size: 1.44rem;
  display: flex;
  align-items: center;
  background: #323232;
  border-radius: 40%;
  padding: 8px;
  transition: background 0.16s, color 0.16s;
}
.footer-social .footer-icons a:hover {
  background: #e2fded;
  color: orangered;
}


.footer-bottom {
  text-align: center;
  font-size: 0.97rem;
  margin-top: 50px;
  padding-bottom: 10px;
  color: #dbf7e4;
}


.zipspeeds-footer-bar {
  background: #111;
  color: #dedede;
  padding: 18px 12px 16px 24px;
  font-family: 'Roboto', Arial, sans-serif;
  border-top: 1px solid #383838;
  margin-top: 0;
}
.zipspeeds-footer-info {
  max-width: 1020px;
  margin: 0 auto;
  font-size: 1rem;
}
.zipspeeds-footer-info strong {
  color: #fff;
  font-size: 1.04rem;
}
.zipspeeds-footer-info a {
  color: #21b383;
  text-decoration: underline;
  word-break: break-all;
}
.zipspeeds-footer-info a:hover {
  color: #ffe100;
}
.footer-meta {
  margin-top: 4px;
  font-size: 0.99rem;
}



.scroll-up-btn{
  all: unset;
  position: fixed;
  bottom: 13px;
  right: 10px;
  height: 25px;
  width: 25px;
  background-color: #08080823;
  border-radius: 99%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.scroll-up-btn:hover {
  background: #ff9800;
}

.scroll-up-btn .arrow-up{
  width: 10px;
  height: 10px;
  border-left: 3px solid #f9f9f9;
  border-bottom: 3px solid #f9f9f9;
  transform: rotate(135deg);
  margin-bottom: -5px;
  pointer-events: none;
}








/* Mobile Device */
@media (max-width: 1050px) {
  .why-cards-row {
    gap: 18px;
    flex-wrap: wrap;
  }
  .why-card {
    max-width: 98vw;
    min-width: 240px;
    padding: 28px 10px;
  }
}


@media only screen and (max-width:920px){

  .announcement-content {
    max-width: 96vw;
    padding: 14px 8px 14px 12px;
    font-size: 0.97rem;
  }
  
  .popup-ad {
    position: fixed;
    top: 80px;
    right: 34px;
    background: #ffeece;
    color: #d87900;
    box-shadow: 0 4px 18px rgba(0,0,0,0.13);
    border-radius: 14px;
    padding: 14px 28px 14px 18px;
    z-index: 3;
    font-size: 1.01rem;
    max-width: 320px;
    min-width: 200px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounceIn 0.4s;
  } 

  .menu-btn{
    display: flex;         /* Show hamburger */
    position: absolute;    /* Or fixed if you want it always visible */
    top: 30px;             /* Adjust as needed */
    right: 30px;           /* Adjust as needed */
    width: 36px;
    height: 36px;
    z-index: 1501;
  }
  
  .navbar{
    padding: 35px;
    background: #fff;      /* makes sure it's white on mobile too */
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .logo img{
    position: absolute;
    top: -60px;
    left: -20px;
  }
  
  .nav-links{
    position: fixed;
    top: 0;
    left: -100vw;       /* hide off-screen, slide in when open */
    width: 100vw;
    height: 100vh;
    flex-direction: column;
    background: #484872;
    align-items: center;
    justify-content: center;
    transition: left 0.5s;
    z-index: 1500;
  }
  
  .mobile-menu{
    left: 0;  
    border-bottom-right-radius: 30%;
  }
  
  .nav-links li{
    margin: 30px auto;
    color: whitesmoke;
  }

  .dropdown-arrow {
    font-size: 0.8em;
    margin-left: 8px;
  }

  .header-content{
    max-width: 640px;          /* or whatever fits your h1 text nicely */
    margin-top: -250px;
    margin-left: 0;
    text-align: center;
    padding: 48px 16px 0 16px;
    z-index: 2;
    position: absolute;
  }

  .header-content h2{
    font-size: 3vmin;
    margin: 0 10px 0 11px;
    text-shadow: 0 3px 18px orangered;
  }
  
  .header-content h1{
    font-size: 7vmin;
    margin: 150px 10px 0;
    text-shadow: 0 2px 18px orangered;
  }

  .whatsapp-banner {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 14px 6vw;
    font-size: 1rem;
    width: 83%;
    max-width: 98vw;
    margin: 16px 0vw 18px 7vw;
  }

  .whatsapp-btn {
    margin-left: 35px;
    width: 80%;
    text-align: center;
    padding: 13px 5px;
    font-size: 1.08rem;
  }

  .whatsapp-banner span {
    display: block;
    margin-bottom: 3px;
    word-break: break-word;
  }

  

  /*Our services*/
  .services-main {
    padding: 36px 2vw 44px 2vw;
  }
  .services-cards {
    display: flex;
    gap: 32px;
    margin-top: 36px;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    padding: 40px 34px 32px 50px;
  }
  .service-card {
    min-width: 200px;
    max-width: 88vw;
    padding: 30px 10vw 22px 10vw;
    margin: 0 auto;
  }


  /*  Vehicles */
  .v-section-title{
    margin-left: 350px;
  }
  .vehicles {
    margin: 12px 0 100px 0;
  }
  .veh-card {
    background: #fff7e0;
    border-radius: 14px;
    padding: 18px 12px 11px 12px;
    text-align: center;
    min-width: 185px;
    max-width: 120px;
    color: #984a09;
    font-size: 1.10rem;
    box-shadow: 0 1px 8px #eaa23529;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 8px;
  }


  /* Cities */

  .cities-grid {
    grid-template-columns: 1fr;
    width: 96vw;
    gap: 28px;
    margin-left: 30px;
  }
  .city-card1 {
    width: 94vw;
    max-width: 330px;
    margin: 0 auto;
  }
  .city-card2 {
    width: 94vw;
    max-width: 330px;
    margin: 0 auto;
  }
  .city-card-promo {
    min-width: 180px;
    max-width: 97vw;
    min-height: 210px;
    padding: 19px 4vw 16px 4vw;
    font-size: 0.97em;
  }
  .city-promo-icon {
    font-size: 2em;
    margin-top: 0;
  }
  


  /* T&C Page and Others */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 10px;
  }

  .zipspeeds-footer-bar {
    font-size: 0.96rem;
    padding: 16px 4vw 12px 4vw;
  }   
}



@media (max-width: 820px) and (min-width: 768px){
  .popup-ad {
    margin-right: -25px;
    z-index: 3;
  }
  .header-content{
    max-width: 640px;          /* or whatever fits your h1 text nicely */
    margin-top: -250px;
    margin-left: 85px;
    text-align: left;
    padding: 48px 16px 0 16px;
    z-index: 2;
    position: absolute;
  }
  .services-cards {
    flex-direction: column; /* Stack vertically on smaller screens */
    padding-left: 16px; /* Adjust padding */
    padding-right: 16px;
  }


  .v-section-title{
    margin-left: 300px;
  }

  .g-line{
    margin-left: 340px;
  }

  #cities{
    min-height: 120vh;
  }

  .cities-grid{
    margin-left: 10px;
  }

  #contact-form {
    padding: 30px 4px;
  }
  .contact-container {
    padding: 0;
    max-width: 98vw;
  }
  .contact-form {
    padding: 16px 3vw 18px 3vw;
    font-size: 0.98rem;
  }
  #contact-form h2 {
    font-size: 2.2rem;
  }

  .faq-question {
      padding: 15px;
      font-size: 1rem;
  }
  .faq-item.active .faq-answer {
      padding: 15px;
  }
  .faq-section h2{
    margin-left: 100px;
    font-size: 2.5rem;
  }


  .footer-grid {
    margin-top: -60px;
    margin-left: 30px;
    margin-right: 30px;
    grid-template-columns: 1fr;
    gap: 35px 0;
  }
  .footer-block h2 {
    font-size: 1.08rem;
  }
  .footer-block p,
  .footer-block address,
  .footer-list li {
    font-size: 0.97rem;
  }
  .footer-social .footer-icons a {
    font-size: 1.17rem;
    padding: 7px;
    margin-bottom: 30px;
  }
}


@media (max-width: 480px) {
  .footer-grid {
    margin-top: -60px;
    margin-left: 30px;
    margin-right: 30px;
    grid-template-columns: 1fr;
    gap: 35px 0;
  }
  .footer-block h2 {
    font-size: 1.08rem;
  }
  .footer-block p,
  .footer-block address,
  .footer-list li {
    font-size: 0.97rem;
  }
  .footer-social .footer-icons a {
    font-size: 1.17rem;
    padding: 7px;
    margin-bottom: 30px;
  }
}


@media (max-width: 431px) and (min-width: 350px){
  .popup-ad {
    margin-right: -25px;
    z-index: 3;
  }

  .services-main h2{
    margin-left: 10px;
    font-size: 1.5rem;
  }
  .line{
    width: 30vw;
    margin-left: 140px;
  }
  .v-section-title{
    margin-left: 135px;
    font-size: 1.5rem;
  }
  .v-line{
    width: 30vw;
  }

  .wp-btn {
    font-size: .96rem;
    padding: 6px 10px;
  }

  #cities{
    min-height: 175vh;
  }
  .cities-title{
    font-size: 1rem;
  }
  .c-line{
    width: 150px;
    height: 4px;
    background: #ff5f17;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    margin-bottom: 70px;
    border-radius: 5px;
  }
  .cities-grid {
    grid-template-columns: 1fr;
    width: 96vw;
    gap: 28px;
    margin-left: 10px;
  }

  #contact-form h2 {
    font-size: 1.5rem;
  }


  .faq-section h2 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #333;
}
}



@media (max-width: 376px) and (min-width: 360px){
  
  .popup-ad {
    margin-right: -30px;
    z-index: 3;
  }
  
  .nav-links li{
    margin-top: 10px;
  }

  .whatsapp-banner {
    text-align: center;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    padding: 14px 6vw;
    font-size: 1rem;
    width: 83%;
    max-width: 98vw;
    margin: 16px 0vw 18px 7vw;
  }

  .whatsapp-btn {
    margin-left: 13px;
    width: 90%;
    text-align: center;
    padding: 10px 5px;
    font-size: 1.08rem;
  }

  .get-touch-btn li{
    margin-top: 28px;
  }
  
  .line{
    margin-left: 125px;
  }
  .v-section-title{
    margin-left: 110px;
    font-size: 1.5rem;
  }
  .v-line{
    width: 30vw;
  }

  .contact-container h2{
    margin-top: 20px;
  }

  .growth-section { 
    padding: 80px 4vw 0px 4vw; 
  }
  
  .faq-category h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-left: 10px;
    color: #ff9500;
  }
  .faq-section h2{
    margin-left: 25px;
    font-size: 1.2rem;
  }
  .f-line{
    width: 30vw;
    margin-top: -40px;
  }
}




@media (max-width: 800px) {
  .why-cards-title{
    font-size: 2rem;
  }
  .why-cards-row {
    flex-direction: column;
    align-items: center;
  }
  .why-card {
    width: 97%;
    max-width: 430px;
    min-width: 0;
  }
}


@media (max-width:850px) {
  .growth-section { 
    padding: 420px 4vw 0px 4vw; 
  }
  .growth-stats-row { gap: 24px; }
  .growth-stat { min-width: 80px; padding: 22px 8px 14px 8px;}
}

@media (max-width:540px) {
  .growth-title { font-size: 1.13rem; }
  .growth-section { padding: 70px 4vw 32px 4vw; }
  .growth-stats-row { flex-direction: column; gap: 18px; }
  .growth-stat { width: 90%; margin: 0 auto; }
  .growth-stat i { font-size: 1.7em;}
  .growth-value { font-size: 1.25em; }
}

@media (max-width: 431px) and (min-width: 390px){
  .growth-section { 
    padding: 190px 4vw 0px 4vw; 
  }
}