* {
  margin: 0;
  padding: 0;
}

a,
button {
  -webkit-tap-highlight-color: transparent; /* Mobile tap flash */
  outline: none;
}

a:focus,
a:active,
button:focus,
button:active {
  outline: none;
  box-shadow: none;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 5vh;
}

/* =========================================================
   HEADER (GLASSMORPHISM)
========================================================= */
.site-header {
  position: fixed;
  top: 0vh;
  background-color: #323a40;
  padding: 1vh 3vw;
  width: 94vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  border-bottom: 1px solid #0e192a;
  box-shadow: 2px 1px 10px #0e192a;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

#i-1 {
  width: 40vw;
  margin-right: 2vw;
}

.nav-links {
  display: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #f5f7f8;
}

.menu-btn {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #f5f7f8;
  cursor: pointer;
  margin-right: 2vw;
}
@media (min-width: 768px) {
  #i-1 {
    width: 25vw;
  }
  .menu-btn {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .menu-btn {
    display: none;
  }
  #i-1 {
    width: 12vw;
  }
  .nav-links {
    display: flex;
  }
  .site-header {
    padding: 1.5vh 3vw;
  }
}

/* ===== Mobile Nav Modal ===== */

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(0px);
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 9999;
}

.mobile-nav.active {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-panel {
  width: 85vw;
  max-width: 320px;
  height: 100%;
  background: linear-gradient(135deg, #1f262b, #323a40);
  padding: 25px;
  transform: translateX(100%);
  transition: 0.3s ease;
  box-shadow: -10px 0 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.mobile-nav.active .mobile-nav-panel {
  transform: translateX(0);
}

/* Top */
.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: white;
  font-size: 3vh;
  font-family: "Alegreya SC", serif;
}

#closeNav {
  font-size: 22px;
  cursor: pointer;
}

/* Links */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-links a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-family: "Alice", serif;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.mobile-nav-links a:hover {
  color: #f5c518;
  transform: translateX(5px);
}

/* Rating */
.mobileRating {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.6vh;
}

.mobileRating .star-wrapper {
  position: relative;
  display: inline-block;
  font-size: 1.5vh;
}

.mobileRating .stars-empty {
  color: #ddd;
  white-space: nowrap;
}

.mobileRating .stars-filled {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  color: #f5c518;
}

.rating-number {
  font-size: 1.8vh;
  margin-left: 5px;
  color: #192f49c5;
  font-family: "Alice", serif;
}

/* ===== image slider ===== */

.carousel {
  margin-left: 3vw;
  width: 94vw;
  margin-top: 2vh;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

/* one full image on mobile */
.slide {
  flex: 0 0 100%;
}

.slide img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1680/945;
  object-fit: cover;
}

/* dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0;
}

.carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfcfcf;
  cursor: pointer;
}

.carousel-dots span.active {
  background: #111;
}

@media (min-width: 768px) {
  .carousel {
    width: 90vw;
    margin-left: 5vw;
  }
  .slide img {
    border-radius: 24px;
  }
  .carousel-dots span {
    width: 12px;
    height: 12px;
  }
}

/* ===== DESKTOP / LAPTOP ===== */
@media (min-width: 1024px) {
  .carousel {
    margin-top: 8vh;
    width: 100vw;
    margin-left: 0;
    margin-bottom: 4vh;
  }

  .carousel-track {
    align-items: center;
    margin-bottom: 3vh;
  }

  .slide {
    flex: 0 0 60%; /* center image */
    padding: 0 15px;
    box-sizing: border-box;
    transition:
      transform 0.4s ease,
      opacity 0.4s ease;
    transform: scale(0.85);
    opacity: 0.6;
  }

  .slide img {
    border-radius: 24px;
  }
  .slide.active-slide {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
  }
}

/* ===========category============ */

#cat-title {
  font-family: "Alegreya SC", serif;
  color: #0e192a;
  font-size: 4vh;
  letter-spacing: 1px;
  margin-left: 5vw;
  margin-bottom: 3vh;
  font-weight: 400;
}
.upper-cat {
  display: flex;
  margin-bottom: 5vh;
}
#cat {
  width: 45vw;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-left: 3vw;
  margin-right: 3vw;
  background: url("../images/cat-refurb.webp") center / cover no-repeat;
  aspect-ratio: 4000/2500;
  border: 2px solid #0e192aaa;
}
#cat2 {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 45vw;
  background: url("../images/cat-new.webp") center / cover no-repeat;
  aspect-ratio: 4000/2500;
  border: 2px solid #0e192aaa;
}

#cat3 {
  width: 94vw;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid #0e192aaa;
  margin-left: 3vw;
  background: url("../images/cat-accessory.webp") center / cover no-repeat;
  aspect-ratio: 2046/839;
}

#cat::after,
#cat2::after,
#cat3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  z-index: 1;
}

#cat h3,
#cat2 h3 {
  position: absolute;
  z-index: 2;
  color: #f5f7f8;
  font-size: 3.8vw;
  font-family: "Overlock SC", sans-serif;
  letter-spacing: 1px;
  left: 2vw;
  bottom: 1vh;
}

#cat3-data {
  position: absolute;
  right: 3vw;
  z-index: 2;
  display: flex;
  flex-direction: column;
  bottom: 3vh;
  gap: 3vh;
  align-items: center;
}

#cat3 h3 {
  display: inline-block;
  color: #f5f7f8;
  font-size: 5vw;
  font-family: "Overlock SC", sans-serif;
  letter-spacing: 1px;
}
#cat-shop {
  color: #f5f7f8;
  font-size: 4vw;
  font-weight: 300;
  padding: 3px;
  padding: 1vh 3vw;
  letter-spacing: 1px;
  border: 2px solid #f5f7f8;
  border-radius: 5px;
  width: fit-content;
}
@media (min-width: 768px) {
  #cat,
  #cat2,
  #cat3 {
    border-radius: 20px;
  }
  #cat-title {
    font-size: 4.5vh;
  }

  #cat {
    width: 40vw;
    margin-left: 6vw;
    margin-right: 7vw;
  }
  #cat2 {
    width: 40vw;
  }
  .upper-cat {
    margin-bottom: 3vh;
  }
  #cat3 {
    width: 87vw;
    margin-left: 6vw;
  }
  #cat h3,
  #cat2 h3 {
    font-size: 3.5vw;
    left: 2vw;
    bottom: 2vh;
  }
  #cat3-data {
    bottom: 7vh;
  }
  #cat-shop {
    border-radius: 15px;
  }
}

@media (min-width: 1024px) {
  #cat-title {
    margin-top: 4vh;
    margin-bottom: 5vh;
    font-size: 7vh;
  }
  .upper-cat {
    flex-direction: column;
    display: flex;
    gap: 3vh;
    width: 30vw;
    margin-bottom: 0;
  }
  #Category-section {
    display: flex;
  }
  #cat,
  #cat2 {
    width: 25vw;
    margin-left: 2vw;
    margin-right: 0;
  }

  #cat3 {
    width: 68vw;
    margin-left: 0;
  }
  #cat h3,
  #cat2 h3 {
    font-size: 2vw;
  }
  #cat3 h3 {
    font-size: 3vw;
  }
  #cat-shop {
    font-size: 2vw;
  }
  #cat3-data {
    top: 30vh;
  }
}
/* =================top sellers======== */
.top-sellers {
  background: #ffffff;
  padding: 60px 5%;
}

.section-title {
  text-align: start;
  font-family: "Alegreya SC", serif;
  color: #0e192a;
  font-size: 4vh;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 4vh;
}

.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.mobile-card {
  background: #ffffff;
}

.mobile-image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background: #f5f5f5; /* placeholder */
  margin-bottom: 15px;
  border-radius: 14px;
}

.mobile-image img {
  width: 80%;
}

.mobile-title {
  font-size: 16px;
  font-weight: 500;
  font-family: "Alice", serif;
  margin-bottom: 8px;
}

.mobile-price {
  font-size: 18px;
  font-weight: 600;
  font-family: "Alice", serif;
  color: #e60023;
}

/* Tablet */
@media (min-width: 768px) {
  .mobile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mobile-title {
    font-size: 24px;
  }
  .section-title {
    font-size: 4.5vh;
  }
  .mobile-price {
    font-size: 26px;
  }
  .mobile-image img {
    width: 60%;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .mobile-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .mobile-image img {
    width: 50%;
  }
  .mobile-grid {
    gap: 60px;
  }
  .section-title {
    font-size: 6vh;
    margin-bottom: 6vh;
  }
  .top-sellers{
    margin-top: 2vh;
    margin-bottom: 4vh;
  }
}

/* ================= BRAND NEW SECTION ================= */

.bn-section {
  background: #f5f7f8;
}

.bn-title {
  font-family: "Alegreya SC", serif;
  color: #0e192a;
  font-size: 3.5vh;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 2vh;
  padding-top: 2vh;
  padding-left: 5vw;
}

.bn-slider-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bn-slider {
  display: flex;
  gap: 7vw;
  padding: 2vh 5vw;
  padding-bottom: 6vh;
}

.bn-slider::-webkit-scrollbar {
  display: none;
}

/* ================= CARD ================= */

.MobileCard {
  width: 43vw;
  flex-shrink: 0;
  background: #f5f7f8;
  border-radius: 14px;
  padding: 0.8rem;
  text-decoration: none;
  position: relative;
  display: block;

  box-shadow:
    3px 3px 6px #d0d2d3,
    -3px -3px 6px #ffffff;
}

.MobileCard:active,
.MobileCard:focus,
.MobileCard:visited {
  outline: none;
  box-shadow:
    3px 3px 6px #d0d2d3,
    -3px -3px 6px #ffffff;
}

/* Image wrapper */
#card-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobileImage {
  width: 80%;
  margin: 2vh 0 1vh 0;
  border-radius: 6px;
}

/* Title */
#card-name {
  color: #323a40;
  font-size: 2vh;
  font-family: "Arsenal", sans-serif;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  line-height: 1.2em;
  max-height: 2.4em;
  margin-bottom: 1vh;
  margin-top: 1.5vh;
}

.cardLogo {
  position: absolute;
  left: 0px;
  top: 2px;
  height: 0.8rem;
  font-size: 2.5vw;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

/* Discount + MRP */
#card-discout {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 1vh;
}

.mobileDiscount {
  font-size: 4.5vw;
  color: #d32f2f;
  font-weight: bold;
  font-family: "Alice", serif;
}

.mobileMRP {
  text-decoration: line-through;
  font-size: 4.5vw;
  color: #454545ca;
  font-family: "Alice", serif;
}

/* Final Price Ribbon */
.finalPriceWrap {
  position: relative;
  display: inline-block;
}

#ribbon-wrap {
  filter: drop-shadow(2px 2px 0.7px #192f4965);
}

.finalPrice {
  position: relative;
  left: -1.2rem;
  background: #192f49;
  color: #fff;
  font-size: 5vw;
  font-weight: bold;
  padding: 0.3rem 0.9rem;
  border-top-left-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  font-family: "Alice", serif;
}

.cornerRibbonLeft {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 10px 10px;
  border-color: transparent transparent #192f49d3 transparent;
  position: relative;
  left: -1.2rem;
  transform: rotate(-90deg);
}

/* Desktop adjustments */
@media (min-width: 768px) {
  .MobileCard {
    width: 33vw;
    padding: 1rem;
  }
  .bn-title {
    font-size: 4.5vh;
  }
  .mobileImage {
    width: 80%;
  }
  .rating-number {
    font-size: 2vh;
    margin-left: 3vw;
  }
  .cardLogo {
    height: 1.2rem;
  }
  #card-name {
    font-size: 2.3vh;
  }
  .mobileDiscount {
    font-size: 3.7vw;
  }
  #card-discout {
    gap: 30px;
  }
  .mobileMRP {
    font-size: 3.7vw;
  }
  .finalPrice {
    font-size: 3.7vw;
    padding: 0.5rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .MobileCard {
    width: 22vw;
  }
  .mobileImage {
    width: 60%;
    margin-top: 3vh;
  }
  .cardLogo {
    left: 12px;
  }
  #card-name {
    font-size: 3vh;
    margin-bottom: 2vh;
  }
  .mobileRating .star-wrapper {
    font-size: 2vh;
  }
  .rating-number {
    font-size: 2.7vh;
  }
  .mobileDiscount {
    font-size: 2vw;
  }
  .mobileMRP {
    font-size: 2vw;
  }
  #card-discout {
    margin-top: 1vh;
    margin-bottom: 2vh;
  }
  .finalPrice {
    font-size: 2.2vw;
    padding: 0.3rem 1.2rem;
  }
  .bn-title {
    padding-top: 4vh;
    margin-bottom: 5vh;
    font-size: 6vh;
  }
}

/* ===================repair============= */
#repair {
  display: flex;
  flex-direction: column;
}
#repair-title {
  margin-top: 4vh;
  text-align: start;
  font-family: "Alegreya SC", serif;
  color: #0e192a;
  font-size: 4vh;
  letter-spacing: 1px;
  font-weight: 400;
  margin-bottom: 3vh;
  margin-left: 5vw;
}
.repair-data {
  margin-top: 3vh;
  margin-bottom: 6vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vh;
  justify-content: space-around;
}
.repair-data p {
  font-size: 18px;
  line-height: 1.5;
  width: 85vw;
  text-align: justify;
  font-family: "Alice", serif;
}

.repair-data a {
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  color: white;
  background-color: #323a40;
  padding: 1vh 5vw;
  border-radius: 12px;
  /* Gradient */
  background: linear-gradient(135deg, #1f262b 0%, #323a40 50%, #3e474e 100%);

  /* Shadow */
  box-shadow:
    0 3px 14px rgba(0, 0, 0, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.05);
  font-size: 16px;
}

.repair-img {
  width: 90vw;
  margin-left: 5vw;
}

.repair-img img {
  width: 90vw;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .repair-data p {
    font-size: 28px;
    margin-top: 3vh;
    margin-bottom: 3vh;
  }
  #repair-title {
    font-size: 4.5vh;
  }
  .repair-img {
    margin-top: 2vh;
  }
  .repair-data a {
    font-size: 22px;
    padding: 1.5vh 4vw;
  }
}

@media (min-width: 1024px) {
  #repair {
    flex-direction: row;
    margin-top: 4vh;
    margin-bottom: 6vh;
  }
  #repair-title {
    font-size: 6vh;
    margin-top: 8vh;
  }

  .repair-img {
    width: 40vw;
    margin-left: 5vw;
  }
  .repair-img img {
    width: 40vw;
    border-radius: 12px;
  }
  .repair-data p {
    width: 40vw;
    font-size: 24px;
  }
  .repair-data {
    margin-left: 7.5vw;
  }
  .repair-data a {
    font-size: 16px;
    padding: 1.5vh 4vw;
  }
}

/* ================contact========== */

#contact-title {
  text-align: start;
  font-family: "Alegreya SC", serif;
  color: #0e192a;
  font-size: 4vh;
  letter-spacing: 1px;
  margin-top: 5vh;
  font-weight: 400;
  margin-bottom: 4vh;
  margin-left: 5vw;
}

#contact-conatiner {
  width: 100vw;
  position: relative;
  margin-bottom: 4vh;
}

#map {
  width: 80vw;
  border-radius: 12px;
  margin-left: 15vw;
}

.contact-icons {
  position: absolute;
  z-index: 2;
  left: 3vw;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  top: 0;
}

.ribon-name i {
  font-size: 2.3vh;
}
.ribon-name h3 {
  font-size: 2.1vh;
}
.ribon-name {
  margin-bottom: 1vh;
  display: flex;
  color: #0e2a47;
  font-family: "Inika", serif;
  gap: 3vw;
}

.contact-icon {
  text-decoration: none;
  margin-top: 3vh;
  margin-bottom: 1vh;
  font-size: 17px;
  color: #0e2a47;
  font-family: "Inika", serif;
  display: block;
  z-index: 3;
  background-color: #566f7c;
  width: 40vw;
  border-top-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 2px 6px 8px #00000095;
  background: linear-gradient(135deg, #ddecff 0%, #a8c8fc 50%, #617394 100%);
  padding: 1vh 5vw;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ===== Contact Form ===== */

.contact-form {
  width: 80vw;
  border: 1px solid #0e192a;
  margin-left: 5vw;
  padding: 2vh 5vw;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 2vh;
  font-family: "Alice", serif;
  margin-bottom: 4vh;
}

.form-title {
  font-size: 2.7vh;
  text-align: center;
  font-family: "Alice", serif;
  color: #0e192a;
  margin-bottom: 1vh;
}

.contact-form input,
.contact-form textarea {
  padding: 1vh 3vw;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  background-color: #f5f7f8;
  outline: none;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #192f49;
  box-shadow: 0 0 0 2px rgba(25, 47, 73, 0.1);
}

.contact-form button {
  background: #323a40;
  color: #fff;
  border: none;
  padding: 1vh;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0e2a47;
}

@media (min-width: 768px) {
  #map {
    width: 75vw;
  }
  .contact-icons {
    left: 5vw;
  }
  .ribon-name i {
    font-size: 2.7vh;
  }
  .contact-section h2 {
    font-size: 4.5vh;
  }
  .ribon-name h3 {
    font-size: 2.5vh;
  }
  .ribon-name {
    margin-bottom: 1vh;
  }
  #contact-conatiner {
    margin-bottom: 6vh;
  }
  .contact-icon {
    width: 35vw;
    font-size: 28px;
    margin-top: 5vh;
    padding: 1.5vh 7vw;
    border-top-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .contact-form input,
  .contact-form textarea {
    padding: 1.2vh 5vw;
    font-size: 20px;
  }
  .contact-form {
    gap: 3vh;
  }
  .contact-form button {
    padding: 1.3vh 0;
    font-size: 20px;
  }
}

@media (min-width: 1024px) {
  #contact {
    display: flex;
    margin-bottom: 9vh;
  }
  .contact-form {
    width: 49vw;
    margin-right: 6vw;
    padding: 5vh 5vw;
     margin-bottom: 0vh;
     margin-left:1vw;
  }
  #map {
    width: 44vw;
    margin-left: 5vw;
  }
  .contact-icon {
    width: 19vw;
    padding: 2vh 2vw;
    font-size: 23px;
    margin-bottom: 6vh;
  }
  .contact-icons {
    left: 2vw;
    top: 6vh;
  }
  #contact-title {
    font-size: 6vh;
    margin-top: 8vh;
  }
  .ribon-name h3 {
    font-size: 3.5vh;
  }
  .ribon-name i {
    font-size: 3vh;
  }
  .form-title{
    font-size: 5vh;
    margin-top: 2vh;
    margin-bottom: 5vh;
  }
  .contact-form input,
.contact-form textarea{
  margin-bottom: 3vh;
   padding: 2vh 2vw;
}
.contact-form button{
  margin-top: 3vh;
}
#contact-conatiner {
  margin-bottom: 0vh;
}
}

/* ===== Success Modal ===== */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #ffffff;
  width: 85vw;
  max-width: 400px;
  padding: 4vh 5vw;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: "Alice", serif;
  animation: popUp 0.3s ease;
}

@keyframes popUp {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-icon {
  font-size: 45px;
  color: #1f7a3f;
  margin-bottom: 15px;
}

.modal-content h3 {
  margin-bottom: 10px;
  color: #192f49;
}

.modal-content p {
  font-size: 14px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.modal-content button {
  background: #192f49;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.modal-content button:hover {
  background: #0e2a47;
}

/* ================= HM FOOTER ================= */

.hm-footer {
  background: #f0f0f0;
  color: #0e192a;
  padding: 50px 5% 20px;
  font-family: "Arsenal", sans-serif;
}

#footer-img {
  width: 50vw;
  margin-bottom: 2vh;
}

.hm-footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hm-footer-col {
  flex: 1;
  min-width: 220px;
}

.hm-footer-logo {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hm-footer-about {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}

.hm-footer-heading {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.hm-footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hm-footer-list li {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.hm-footer-list li a {
  text-decoration: none;
  color: #323a40;
  transition: 0.3s;
}

.hm-footer-list li a:hover {
  color: #f5c518;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-contact i {
  color: #323a40; /* matches your theme */
  font-size: 15px;
  min-width: 18px;
}

.hm-footer-bottom {
  text-align: center;
  color: white;
  padding: 1vh 5vw;
  background-color: #323a40;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
}

/* Responsive */

@media (min-width: 768px) {
  .hm-footer-container {
    flex-direction: column;
    gap: 50px;
  }
  .hm-footer-about {
    font-size: 22px;
  }
  .hm-footer-heading {
    font-size: 32px;
  }
  .footer-contact i {
    font-size: 24px;
  }
  .footer-contact li {
    font-size: 24px;
    gap: 26px;
  }
  .hm-footer-list li {
    font-size: 24px;
  }
  .hm-footer-bottom {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  #footer-img {
  width: 25vw;
  margin-bottom: 2vh;
}
  }