:root {
  --brand-navy: #0d2343;
  --brand-navy-2: #123d6b;
  --brand-blue: #1698d8;
  --brand-cyan: #69d1ff;
  --brand-yellow: #f8c548;
  --brand-sand: #fff7e8;
  --text: #1e2a3a;
  --muted: #5f6f7f;
  --line: rgba(13, 35, 67, 0.12);
  --card: rgba(255, 255, 255, 0.92);
  --shadow-soft: 0 18px 45px rgba(13, 35, 67, 0.12);
  --shadow-strong: 0 22px 60px rgba(13, 35, 67, 0.18);
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f8fb 0%, #f8fafc 100%);
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

.yellow,
#hero .yellow,
.faq .yellow {
  color: var(--brand-yellow) !important;
}

.blue,
#hero .blue,
.faq .blue {
  color: var(--brand-blue) !important;
}

#header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(13, 35, 67, 0.04);
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 35px rgba(13, 35, 67, 0.08);
}

#header .container {
  padding-top: 10px;
  padding-bottom: 10px;
}

#header .logo img {
  max-height: 52px;
  width: auto;
}

.topbar {
  background: linear-gradient(90deg, #1f3b5b 0%, #0a2d52 100%);
  color: #edf3ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar .row {
  margin: 0;
}

.topbar .container {
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.9);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.topbar-item img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12);
}

.topbar-item i {
  font-size: 1.05rem;
}

.topbar-item:hover {
  color: #fff;
}

.navbar ul {
  gap: 0.1rem;
}

.navbar a,
.navbar a:focus {
  color: var(--brand-navy);
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--brand-blue);
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffb703 100%);
  border: none;
  box-shadow: 0 12px 24px rgba(248, 197, 72, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  color: var(--brand-navy);
  background: linear-gradient(135deg, #ffd86e 0%, var(--brand-yellow) 100%);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(248, 197, 72, 0.34);
}

.sendemail,
.sendemail:focus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 2px solid var(--brand-blue);
  background: linear-gradient(135deg, var(--brand-blue) 0%, #0677b2 100%);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.sendemail:hover,
.sendemail:focus:hover {
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-blue) 100%);
  color: #fff;
  transform: translateY(-2px);
}

section {
  padding: 90px 0;
}

.section-bg {
  background: linear-gradient(180deg, rgba(18, 61, 107, 0.03) 0%, rgba(18, 61, 107, 0.06) 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--brand-navy);
  font-weight: 800;
  margin-bottom: 0.8rem;
  letter-spacing: -0.03em;
}

.section-title h2::before,
.section-title h2::after {
  display: none;
}

.section-title p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

#hero {
  width: 100%;
  min-height: 760px;
  background: radial-gradient(circle at top left, rgba(105, 209, 255, 0.38), transparent 30%),
    linear-gradient(135deg, #0a2345 0%, #123d6b 42%, #083962 100%);
  margin-top: 0;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
}

#hero .container {
  padding-top: 20px;
}

#hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.05em;
  font-weight: 800;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.2rem;
  font-size: clamp(1.3rem, 2vw, 2.2rem);
  line-height: 1.5;
  font-weight: 600;
}

#hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 620px;
}

#hero .btn-get-started,
#hero .btn-learn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.25s ease;
}

#hero .btn-get-started {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, #ffb703 100%);
  color: var(--brand-navy);
  box-shadow: 0 14px 36px rgba(248, 197, 72, 0.25);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #ffd86e 0%, var(--brand-yellow) 100%);
  transform: translateY(-2px);
}

#hero .btn-learn-more {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
}

#hero .btn-learn-more:hover {
  background: rgba(255, 255, 255, 0.14);
}

#hero .hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

#hero .hero-img img {
  max-width: 540px;
  filter: drop-shadow(0 40px 60px rgba(7, 12, 24, 0.4));
}

#hero .badge {
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  max-width: 520px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 1rem 0.9rem;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.metric-card strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
}

.metric-card span {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.24rem;
}

.hero-device-card {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 38px 80px rgba(3, 11, 22, 0.38);
}

.hero-device-card::before {
  content: "";
  position: absolute;
  inset: 12px auto auto 12px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(105,209,255,0.4), transparent 70%);
  filter: blur(18px);
}

.device-glow {
  position: absolute;
  inset: 20% 15% 15% 20%;
  background: radial-gradient(circle, rgba(255, 196, 70, 0.28), transparent 62%);
  filter: blur(20px);
}

#hero .hero-img img {
  position: relative;
  z-index: 1;
  max-width: 520px;
  filter: drop-shadow(0 30px 55px rgba(7, 12, 24, 0.38));
}

.contact-cta {
  background: linear-gradient(180deg, #f5f9ff 0%, #eef5ff 100%);
  padding-top: 2.5rem;
  padding-bottom: 2rem;
}

.section-title-inline {
  margin-bottom: 2rem;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.contact-card {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  border: 1px solid rgba(13, 35, 67, 0.08);
  border-radius: 24px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 16px 35px rgba(13, 35, 67, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 40px rgba(13, 35, 67, 0.12);
}

.contact-card.highlight {
  background: linear-gradient(135deg, #0d2343 0%, #123d6b 40%, #1698d8 100%);
  color: #fff;
}

.contact-card.highlight .city-tag,
.contact-card.highlight p,
.contact-card.highlight a {
  color: rgba(255, 255, 255, 0.9);
}

.city-tag {
  display: inline-block;
  background: rgba(22, 152, 216, 0.12);
  color: var(--brand-blue);
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.contact-card h3 {
  margin: 0 0 0.7rem;
  color: var(--brand-navy);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
}

.contact-card.highlight h3 {
  color: #fff;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1rem;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-navy);
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--brand-blue);
}

.about {
  position: relative;
}

.about .content {
  background: var(--card);
  border: 1px solid rgba(13, 35, 67, 0.05);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.about .content p,
.about .content li {
  color: var(--muted);
  line-height: 1.8;
}

.about .content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.about .content ul li {
  padding-left: 2rem;
  position: relative;
  margin-bottom: 0.9rem;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--brand-blue);
  font-size: 1.4rem;
}

.about .content .btn-learn-more {
  border: 1px solid var(--brand-yellow);
  color: var(--brand-navy);
  background: linear-gradient(135deg, rgba(248, 197, 72, 0.18), rgba(248, 197, 72, 0.05));
  border-radius: 999px;
  font-weight: 700;
  padding: 0.9rem 1.6rem;
}

.about .content .btn-learn-more:hover {
  background: var(--brand-yellow);
  color: var(--brand-navy);
}

.why-us .content {
  padding: 0;
}

.why-us .content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--muted);
}

.why-us .accordion-list li {
  background: #fff;
  border: 1px solid rgba(13, 35, 67, 0.06);
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(13, 35, 67, 0.04);
}

.why-us .accordion-list a {
  color: var(--brand-navy);
  font-weight: 700;
}

.why-us .accordion-list span {
  color: var(--brand-blue);
}

.why-us .img {
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
  min-height: 440px;
}

.skills .content {
  background: var(--card);
  border: 1px solid rgba(13, 35, 67, 0.05);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.skills .progress {
  height: auto;
  margin-bottom: 1.2rem;
}

.skills .progress .skill {
  color: var(--brand-navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.skills .progress-bar-wrap {
  background: rgba(18, 61, 107, 0.08);
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
}

.skills .progress-bar {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-cyan) 100%);
}

.services .icon-box,
.services .icon-box2 {
  position: relative;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 35, 67, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  padding: 2.2rem 1.6rem;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services .icon-box::before,
.services .icon-box2::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue) 0%, var(--brand-yellow) 100%);
}

.services .icon-box:hover,
.services .icon-box2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.services .icon-box .icon,
.services .icon-box2 .icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(22, 152, 216, 0.12), rgba(105, 209, 255, 0.25));
  margin-bottom: 1.2rem;
}

.services .icon-box .icon i,
.services .icon-box2 .icon i {
  color: var(--brand-blue);
  font-size: 2rem;
}

.services .icon-box h4,
.services .icon-box2 h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.services .icon-box h4 a,
.services .icon-box2 h4 a {
  color: var(--brand-navy);
}

.services .icon-box p,
.services .icon-box2 p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.96rem;
}

.cta {
  background: linear-gradient(135deg, rgba(7, 23, 43, 0.92), rgba(18, 61, 107, 0.9)), url("../img/hero-img.png") center/cover no-repeat;
  padding: 110px 0;
}

.cta h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}

.cta .pwhite {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}

.cta .btn-get-started {
  margin-top: 2rem;
}

.portfolio {
  background: #fff;
}

.portfolio #portfolio-flters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.portfolio #portfolio-flters li {
  background: rgba(18, 61, 107, 0.05);
  color: var(--brand-navy);
  border: 1px solid rgba(18, 61, 107, 0.08);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
  color: #fff;
}

.portfolio .portfolio-item .portfolio-img img {
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.portfolio .portfolio-item .portfolio-info {
  left: 22px;
  right: 22px;
  bottom: 18px;
  border-radius: 18px;
  background: rgba(13, 35, 67, 0.72);
  backdrop-filter: blur(4px);
}

.contact .row {
  gap: 1.25rem 0;
}

.contact .info {
  border: 1px solid rgba(13, 35, 67, 0.06);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.contact .info i {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(22, 152, 216, 0.14), rgba(105, 209, 255, 0.18));
  color: var(--brand-blue);
  border-radius: 14px;
}

.contact .info h4 {
  color: var(--brand-navy);
  font-size: 1.1rem;
  font-weight: 700;
}

.contact .info p {
  color: var(--muted);
  line-height: 1.75;
}

.contact iframe {
  border-radius: 24px;
  margin-top: 2rem;
  box-shadow: var(--shadow-soft);
}

#Enquiry {
  background: linear-gradient(180deg, rgba(248, 197, 72, 0.08), rgba(18, 61, 107, 0.02));
}

#Enquiry .container {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(13, 35, 67, 0.06);
  border-radius: 30px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
}

#Enquiry .form-control {
  border: 1px solid rgba(13, 35, 67, 0.1);
  border-radius: 14px;
  min-height: 52px;
  padding: 0.9rem 1rem;
  background: rgba(247, 250, 252, 0.9);
  color: var(--text);
}

#Enquiry .form-control:focus {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 0.2rem rgba(22, 152, 216, 0.12);
}

#Enquiry label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--brand-navy);
}

#Testimonials .testimonial-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244,249,255,0.9));
  border: 1px solid rgba(13, 35, 67, 0.05);
  border-radius: 24px;
  padding: 1.8rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#Testimonials .testimonial-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

#Testimonials .testimonial-box p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

#Testimonials .testimonial-info img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(22, 152, 216, 0.18);
  object-fit: cover;
}

#Testimonials .testimonial-info h4 {
  color: var(--brand-navy);
  font-size: 1.15rem;
  margin-top: 0.8rem;
  margin-bottom: 0;
}

.faq {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(13, 35, 67, 0.02));
}

.faq p,
.faq li {
  color: var(--muted);
  line-height: 1.9;
}

.faq strong {
  color: var(--brand-navy);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.photo-grid .photo {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(13, 35, 67, 0.06);
}

.photo-grid .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.photo-grid .photo:hover img {
  transform: scale(1.05);
}

#footer {
  background: linear-gradient(135deg, #0a1d32 0%, #112f53 100%);
  color: rgba(255, 255, 255, 0.9);
}

#footer .footer-top {
  background: transparent;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

#footer .footer-top .col-lg-4,
#footer .footer-top .footer-contact {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 1.5rem;
}

#footer .footer-contact h3,
#footer .footer-contact strong {
  color: #ffffff;
}

#footer .footer-contact p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

#footer .footer-contact {
  color: #ffffff;
}

#footer .footer-contact p strong,
#footer .footer-contact strong {
  color: #ffffff;
  font-weight: 700;
}

#footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

#footer .copyright {
  color: rgba(255, 255, 255, 0.92);
}

#footer .copyright span {
  color: #f8c548;
}

.whatsapp-float {
  background: linear-gradient(135deg, #25d366, #13b15b);
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 991px) {
  #hero {
    min-height: auto;
    text-align: center;
  }

  #hero .hero-img {
    margin-top: 2rem;
  }

  .topbar-content {
    justify-content: center;
  }

  .navbar ul {
    gap: 0.2rem;
  }

  .hero-metrics {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }

  .contact-cta {
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  #hero {
    padding-top: 95px;
  }

  #hero .btn-get-started,
  #hero .btn-learn-more {
    width: 100%;
    min-height: 50px;
  }

  #hero .d-flex {
    display: block !important;
  }

  .topbar-item {
    white-space: normal;
  }

  .topbar-content {
    gap: 8px 12px;
    font-size: 0.72rem;
    text-align: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-strip {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-card p,
  .contact-card a,
  .contact-card h3 {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  #Enquiry .container {
    padding: 1.25rem;
  }

  #hero h1 {
    font-size: 2.3rem;
    line-height: 1.1;
  }

  #hero h2 {
    font-size: 1.45rem;
    line-height: 1.4;
  }
}

@media (max-width: 571px) {
  #header .container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #header .logo img {
    max-height: 42px;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    margin-left: 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  #header {
    overflow: hidden;
  }

  .topbar-content {
    justify-content: center;
    gap: 6px 10px;
    font-size: 0.66rem;
  }

  .topbar-item {
    display: inline-flex;
    max-width: 100%;
    gap: 5px;
  }

  .topbar-item img {
    width: 15px;
    height: 15px;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    padding: 0.7rem 0.9rem;
    font-size: 0.7rem;
  }

  .hero-device-card {
    width: 100%;
    max-width: 320px;
    padding: 0.8rem;
  }

  #hero .hero-img img {
    max-width: 100%;
    height: auto;
  }

  .contact-card {
    padding: 1.2rem 1rem;
  }

  .city-tag {
    font-size: 0.62rem;
    padding: 0.35rem 0.6rem;
  }

  #hero .badge {
    font-size: 0.7rem;
    padding: 0.55rem 0.8rem;
  }
}
