@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  margin: 0;
  background-color: #f4f4f4;
  font-family: Poppins;
}
:root {
  --item1-transform: translateX(-100%) scale(1.3);
  --item1-filter: blur(12px);
  --item1-zIndex: 11;
  --item1-opacity: 0;

  --item2-transform: translateX(0) scale(1);
  --item2-filter: blur(0px);
  --item2-zIndex: 10;
  --item2-opacity: 1;

  --item3-transform: translate(50%, 10%) scale(0.85);
  --item3-filter: blur(6px);
  --item3-zIndex: 9;
  --item3-opacity: 1;

  --item4-transform: translate(90%, 20%) scale(0.6);
  --item4-filter: blur(10px);
  --item4-zIndex: 8;
  --item4-opacity: 0.8;

  --item5-transform: translate(120%, 30%) scale(0.4);
  --item5-filter: blur(14px);
  --item5-zIndex: 7;
  --item5-opacity: 0;
}

header {
  /* width: 1140px;
  max-width: 90%;
  display: flex;
  justify-content: space-between; */
  margin: auto;
  height: 50px;
  align-items: center;
}
.logo_size {
  width: 200px;
}
header .logo {
  font-weight: bold;
}
header nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #555;
  font-weight: 500;
}
header nav button a {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
}
header nav .btn {
  padding: 8px 20px;
  font-size: 1rem;
}

/* carousel */
.carousel {
  position: relative;
  height: 750px; /*800*/
  overflow: hidden;
  margin-top: -50px;
}
.carousel .list {
  position: absolute;
  width: 1140px;
  max-width: 90%;
  height: 80%;
  left: 50%;
  transform: translateX(-50%);
}
.carousel .item {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.carousel .list .item {
  position: absolute;
  left: 0%;
  width: 70%;
  height: 100%;
  font-size: 15px;
  transition: left 0.5s, opacity 0.5s, width 0.5s;
}
.carousel .list .item:nth-child(n + 6) {
  opacity: 0;
}
.carousel .list .item:nth-child(2) {
  z-index: 10;
  transform: translateX(0);
}
.carousel .list .item img {
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: right 1.5s;
}
/* Apply only to items 2, 3, 4, 5…
.carousel .list .item:not(:nth-child(1)) img {
    width: 40%;
    left: 3%;
    right: auto !important;
} */

.carousel .list .item .introduce {
  opacity: 0;
  pointer-events: none;
}
.carousel .list .item:nth-child(2) .introduce {
  opacity: 1;
  pointer-events: auto;
  width: 400px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.5s;
}
.carousel .list .item .introduce .title {
  font-family: "Poppins", sans-serif;
  letter-spacing: 5px;
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1em;
}
.carousel .list .item .introduce .topic {
  font-family: "Poppins", sans-serif;
  letter-spacing: 7px;
  font-size: 4em;
  font-weight: 500;
}
.carousel .list .item .introduce .des {
  width: 300px;
  margin-top: 15px;
  font-size: small;
  color: #5559;
}
.carousel .list .item .introduce .seeMore {
  font-family: "Poppins", sans-serif;
  margin-top: 1.2em;
  padding: 5px 0;
  border: none;
  border-bottom: 1px solid #555;
  background-color: transparent;
  font-weight: bold;
  letter-spacing: 3px;
  transition: background 0.5s;
  color: black;
}
.carousel .list .item .introduce .seeMore:hover {
  background: #eee;
}
.carousel .list .item:nth-child(1) {
  transform: var(--item1-transform);
  filter: var(--item1-filter);
  z-index: var(--item1-zIndex);
  opacity: var(--item1-opacity);
  pointer-events: none;
}
.carousel .list .item:nth-child(3) {
  transform: var(--item3-transform);
  filter: var(--item3-filter);
  z-index: var(--item3-zIndex);
}
.carousel .list .item:nth-child(4) {
  transform: var(--item4-transform);
  filter: var(--item4-filter);
  z-index: var(--item4-zIndex);
}
.carousel .list .item:nth-child(5) {
  transform: var(--item5-transform);
  filter: var(--item5-filter);
  opacity: var(--item5-opacity);
  pointer-events: none;
}
/* animation text in item2 */
.carousel .list .item:nth-child(2) .introduce .title,
.carousel .list .item:nth-child(2) .introduce .topic,
.carousel .list .item:nth-child(2) .introduce .des,
.carousel .list .item:nth-child(2) .introduce .seeMore {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
@keyframes showContent {
  from {
    transform: translateY(-30px);
    filter: blur(10px);
  }
  to {
    transform: translateY(0);
    opacity: 1;
    filter: blur(0px);
  }
}
.carousel .list .item:nth-child(2) .introduce .topic {
  animation-delay: 1.2s;
  font-weight: 700;
}
.carousel .list .item:nth-child(2) .introduce .des {
  animation-delay: 1.4s;
  font-weight: 700;
}
.carousel .list .item:nth-child(2) .introduce .seeMore {
  animation-delay: 1.6s;
}
/* next click */
.carousel.next .item:nth-child(1) {
  animation: transformFromPosition2 0.45s ease-in-out 1 forwards;
}
@keyframes transformFromPosition2 {
  from {
    transform: var(--item2-transform);
    filter: var(--item2-filter);
    opacity: var(--item2-opacity);
  }
}
.carousel.next .item:nth-child(2) {
  animation: transformFromPosition3 0.6s ease-in-out 1 forwards;
}
@keyframes transformFromPosition3 {
  from {
    transform: var(--item3-transform);
    filter: var(--item3-filter);
    opacity: var(--item3-opacity);
  }
}
.carousel.next .item:nth-child(3) {
  animation: transformFromPosition4 0.75s ease-in-out 1 forwards;
}
@keyframes transformFromPosition4 {
  from {
    transform: var(--item4-transform);
    filter: var(--item4-filter);
    opacity: var(--item4-opacity);
  }
}
.carousel.next .item:nth-child(4) {
  animation: transformFromPosition5 0.9s ease-in-out 1 forwards;
}
@keyframes transformFromPosition5 {
  from {
    transform: var(--item5-transform);
    filter: var(--item5-filter);
    opacity: var(--item5-opacity);
  }
}
/* previous */
.carousel.prev .list .item:nth-child(5) {
  animation: transformFromPosition4 0.5s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(4) {
  animation: transformFromPosition3 0.7s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(3) {
  animation: transformFromPosition2 0.9s ease-in-out 1 forwards;
}
.carousel.prev .list .item:nth-child(2) {
  animation: transformFromPosition1 1.1s ease-in-out 1 forwards;
}
@keyframes transformFromPosition1 {
  from {
    transform: var(--item1-transform);
    filter: var(--item1-filter);
    opacity: var(--item1-opacity);
  }
}
@media (prefers-reduced-motion: reduce) {
  .carousel .item {
    filter: none !important;
    animation: none !important;
  }
}

/* detail  */
.carousel .list .item .detail {
  opacity: 0;
  pointer-events: none;
}
/* showDetail */
.carousel.showDetail .list .item:nth-child(3),
.carousel.showDetail .list .item:nth-child(4) {
  left: 100%;
  opacity: 0;
  pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) {
  width: 100%;
}
.carousel.showDetail .list .item:nth-child(2) .introduce {
  opacity: 0;
  pointer-events: none;
}
.carousel.showDetail .list .item:nth-child(2) img {
  right: 50%;
  /* right: 60%;
  width: 500px;
  height: 500px; */
}
.carousel.showDetail .list .item:nth-child(2) .detail {
  opacity: 1;
  width: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  pointer-events: auto;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title {
  margin-bottom: 12px;
  font-size: 4em;
  font-weight: 600;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  display: flex;
  gap: 10px;
  width: 100%;
  border-top: 1px solid #5553;
  margin-top: 20px;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications div {
  margin-top: 14px;
  width: 90px;
  text-align: center;
  flex-shrink: 0;
}
.carousel.showDetail
  .list
  .item:nth-child(2)
  .detail
  .specifications
  div
  p:nth-child(1) {
  font-weight: bold;
}
.carousel.carousel.showDetail .list .item:nth-child(2) .checkout button {
  font-family: Poppins;
  background-color: transparent;
  border: 1px solid #5555;
  margin-left: 5px;
  padding: 5px 10px;
  letter-spacing: 2px;
  font-weight: 500;
}
.carousel.carousel.showDetail
  .list
  .item:nth-child(2)
  .checkout
  button:nth-child(2) {
  background-color: #693eff;
  color: #eee;
}
.carousel.showDetail .list .item:nth-child(2) .detail .title,
.carousel.showDetail .list .item:nth-child(2) .detail .des,
.carousel.showDetail .list .item:nth-child(2) .detail .specifications,
.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
  opacity: 0;
  animation: showContent 0.5s 1s ease-in-out 1 forwards;
}
.carousel.showDetail .list .item:nth-child(2) .detail .des {
  animation-delay: 1.2s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .specifications {
  margin-bottom: 13px;
  animation-delay: 1.4s;
}
.carousel.showDetail .list .item:nth-child(2) .detail .checkout {
  animation-delay: 1.6s;
}
.arrows {
  position: absolute;
  bottom: 110px;
  width: 1140px;
  max-width: 90%;
  display: flex;
  justify-content: space-between;
  left: 50%;
  transform: translateX(-50%);
}
#prev,
#next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-family: monospace;
  border: 1px solid #5555;
  font-size: large;
  bottom: 20%;
  left: 10%;
}
#next {
  left: unset;
  right: 10%;
}
#back {
  position: absolute;
  z-index: 100;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  border: none;
  border-bottom: 1px solid #555;
  font-family: Poppins;
  font-weight: bold;
  letter-spacing: 3px;
  background-color: transparent;
  padding: 10px;
  /* opacity: 0; */
  transition: opacity 0.5s;
}
.carousel.showDetail #back {
  opacity: 1;
}
.carousel.showDetail #prev,
.carousel.showDetail #next {
  opacity: 0;
  pointer-events: none;
}
.carousel::before {
  width: 500px;
  height: 300px;
  content: "";
  background-image: linear-gradient(70deg, #dc422a, blue);
  position: absolute;
  z-index: -1;
  border-radius: 20% 30% 80% 10%;
  filter: blur(150px);
  top: 50%;
  left: 50%;
  transform: translate(-10%, -50%);
  transition: 1s;
}
.carousel.showDetail::before {
  transform: translate(-100%, -50%) rotate(90deg);
  filter: blur(130px);
}
@media screen and (max-width: 991px) {
  /* ipad, tablets */
  .carousel .list .item {
    width: 90%;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .specifications {
    overflow: auto;
    gap: 0px;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .title {
    font-size: 2em;
  }
  .logo_size {
    width: 150px;
  }
}
@media screen and (max-width: 444px) {
  .carousel .list .item:nth-child(2) .introduce .seeMore {
    font-size: 11px !important;
  }
  .arrows {
    bottom: 100px !important;
  }
}
@media screen and (max-width: 430px) {
  .carousel .list .item img {
    margin-right: 0px !important;
  }
  .carousel .list .item .introduce .seeMore {
    font-size: 10px !important;
  }
  .arrows {
    bottom: 100px !important;
  }
  .carousel.showDetail .list .item:nth-child(2) img {
    right: 53% !important;
  }
}

@media screen and (max-width: 391px) {
  .carousel .list .item {
    font-size: 6px !important;
  }
  .carousel .list .item:nth-child(2) .introduce .des {
    height: 170px !important;
    width: 138px !important;
  }
}
@media screen and (max-width: 767px) {
  /* mobile */
  .carousel {
    height: 600px;
  }
  .carousel .list .item {
    width: 100%;
    font-size: 8px;
  }

  .carousel .list {
    height: 100%;
  }
  .carousel .list .item:nth-child(2) .introduce {
    width: 50%;
  }

  .carousel .list .item img {
    width: 50%;
    margin-right: 10px;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail {
    backdrop-filter: blur(10px);
    font-size: small;
  }
  .carousel .list .item:nth-child(2) .introduce .des,
  .carousel.showDetail .list .item:nth-child(2) .detail .des {
    height: 140px; /*100px*/
    text-align: justify;
    /* overflow: auto; */
    width: 168px;
  }
  .carousel.showDetail .list .item:nth-child(2) .detail .checkout {
    display: flex;
    width: max-content;
    float: right;
    margin-top: 60px; /*10px*/
  }
}
/* Show small image ONLY in detail view */
.carousel.showDetail .list .item:nth-child(2) > img:not(.detail-img) {
  opacity: 0;
}

.carousel.showDetail .list .item:nth-child(2) .detail-img {
  display: block;
}
/* Transparent navbar */
.navbar {
  background: transparent !important;
  box-shadow: none !important;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

/* Navbar text color */
.navbar .nav-link {
  color: #222 !important;
  font-weight: 500;
}

.navbar .btn-outline-danger {
  background: transparent;
}

/* On hover */
.navbar .nav-link:hover {
  color: #dc3545 !important;
}
/* Hide detail image by default */
@media screen and (min-width: 768px) {
  .detail-img {
    display: none;
    width: 30% !important;
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
  }
}
.navbar a,
.navbar button {
  cursor: pointer;
}
/* Mobile & Tablet view */
@media (max-width: 991px) {
  /* Hide all specs by default */
  .specifications > div {
    display: none;
  }

  /* Show "Pages" (1st item) */
  .specifications > div:nth-child(1),
    /* Show "Book Type" (4th item) */
    .specifications > div:nth-child(4) {
    display: block;
  }
}

/* 2nd section */
.master-note-section {
  background: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.015) 1px,
      transparent 0
    ),
    linear-gradient(135deg, #efecfa 0%, #fff 15%, #ffffff 100%);
  background-size: 6px 6px, cover;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -60px;
}

/* Container */
.master-note-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Top line: NO MORE LOOSE SHEETS */
.master-note-container .top-line {
  font-size: clamp(18px, 3.5vw, 35px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 22px;
}

/* Main line: JUST ONE MASTER NOTEBOOK */
.master-note-container .main-line {
  font-size: clamp(32px, 6.5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
  color: #e1261c;
}

/* Highlighted text */
.master-note-container .main-line span {
  color: #e1261c;
  position: relative;
}

/* Tablets */
@media (max-width: 991px) {
  .master-note-section {
    padding: 80px 20px;
  }

  .master-note-container .top-line {
    letter-spacing: 2.5px;
  }
  .master-note-container .top-line {
    font-size: clamp(17px, 4vw, 23px) !important;
  }
  .master-note-container .main-line {
    font-size: clamp(32px, 6.5vw, 37px) !important;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .master-note-section {
    margin-top: -60px !important;
    padding: 65px 16px;
  }

  .master-note-container .top-line {
    font-size: clamp(17px, 4vw, 15px) !important;
    letter-spacing: 2px;
  }

  .master-note-container .main-line {
    font-size: clamp(28px, 8vw, 12px) !important;
  }
}
/* 3rd section */
.master-note-section101 {
  background: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 0
    ),
    linear-gradient(135deg, #efecfa 0%, #f6f4ff 55%, #ffffff 100%);
  background-size: 6px 6px, cover;
  padding: 70px 20px;
}

/* Title */
.section-title {
  font-size: clamp(26px, 4.5vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.section-title span {
  display: block;
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 600;
  color: #6b5cff;
  margin-top: 6px;
}

/* Feature points */
.feature-list {
  max-width: 900px;
  margin: 40px auto;
  padding: 0;
  list-style: none;
}

.feature-list li {
  /* display: flex; */
  gap: 12px;
  font-size: clamp(15px, 2.3vw, 18px);
  line-height: 1.7;
  margin-bottom: 18px;
  color: #222;
}

.feature-list .check {
  color: #6b5cff;
  font-size: 20px;
  flex-shrink: 0;
}

/* Specification Box */
.spec-box {
  max-width: 900px;
  margin: 40px auto 0;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.spec-box h4 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

/* Specs list */
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 20px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  font-size: 15px;
  color: #333;
}

/* Tablet */
@media (max-width: 768px) {
  .spec-list {
    grid-template-columns: 1fr;
  }

  .spec-box {
    padding: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .master-note-section101 {
    padding: 55px 16px;
  }

  .feature-list li {
    font-size: 15px;
  }
}

/* 4th section */
/* Card base */
.package-card {
  background: linear-gradient(180deg, #ffffff, #faf9ff);
  border: 1px solid #eee;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Soft glow layer */
.package-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #cfc6ef,
    #ffffff
  ); /*linear-gradient(135deg, #efecfa, #ffffff);*/
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

/* Content above glow */
.package-card * {
  position: relative;
  z-index: 1;
}
small.offer-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: #555;
}
/* Desktop hover only */
@media (hover: hover) {
  .package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(91, 124, 250, 0.18);
    border-color: #9a8be8; /*#d6d0f5;*/
  }

  .package-card:hover::before {
    opacity: 1;
  }

  /* Text color shift */
  .package-card:hover h5 {
    color: #2b2b7c;
  }

  .package-card:hover p {
    color: #444;
  }

  .package-card:hover .new-price {
    color: #2f4bff;
  }

  /* Button highlight */
  .package-card:hover .btn-order {
    background-color: #ffcc33 !important;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.4);
  }
}

/* Image styling */
.package-card img {
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

@media (hover: hover) {
  .package-card:hover img {
    transform: scale(1.04);
  }
}

/* Price */
.new-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: #ff5722;
}

/* Button */
.btn-order {
  font-family: "Poppins", sans-serif !important;
  display: inline-block !important;
  background-color: #ffc107 !important;
  color: #000 !important;
  font-weight: 700 !important;
  border: none !important;
  padding: 10px 28px !important;
  border-radius: 999px !important;
  transition: all 0.3s ease !important;
}

/* Mobile friendly */
@media (max-width: 768px) {
  .package-card img {
    height: auto;
  }

  .new-price {
    font-size: 1.2rem;
  }
}

/* last section */
.features-section {
  padding: 80px 15px;
  /* background: #faf9ff; */
  background: radial-gradient(
      circle at 1px 1px,
      rgba(0, 0, 0, 0.035) 1px,
      transparent 0
    ),
    linear-gradient(135deg, #efecfa 0%, #f6f4ff 55%, #ffffff 100%);
  background-size: 6px 6px, cover;
}

/* Section heading */
.features-section h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 60px;
}

/* Feature box */
.benefit-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: all 0.3s ease;
}

/* Hover (desktop only) */
@media (hover: hover) {
  .benefit-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  }
}

/* Feature title */
.benefit-box h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1b1b1b;
  margin-bottom: 20px;
  text-align: center;
}

/* List reset */
.benefit-box ul {
  padding: 0;
  margin: 0;
}

/* Feature points */
.benefit-box ul li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #333;
}

/* Remove circle */
.benefit-box ul li::before {
  content: none;
}

/* Simple black tick */
.benefit-box ul li::after {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  color: #000;
  font-weight: 700;
}

/* Make broken lines feel like ONE point */
.benefit-box ul li + li {
  margin-top: 6px;
}

/* Remove last margin */
.benefit-box ul li:last-child {
  margin-bottom: 0;
}

/* Tablet */
@media (max-width: 991px) {
  .benefit-box {
    padding: 28px !important;
  }

  .benefit-box h5 {
    font-size: 17px;
  }

  .benefit-box ul li {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .features-section {
    padding: 60px 12px;
  }

  .features-section h1 {
    margin-bottom: 40px;
  }

  .benefit-box {
    border-radius: 14px;
  }

  .benefit-box h5 {
    font-size: 16.5px;
  }

  .benefit-box ul li {
    font-size: 14.5px;
  }
}

/* Footer Base */
footer {
  background-color: #002b5b;
  color: white;
  padding: 20px 0;
}

footer a {
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

/* Footer Intro */
.footer_intro {
  color: #fff;
  font-size: 13px;
  text-align: left;
}

.footer_intro img {
  width: 200px;
  margin: auto 0 10px;
}

.footer_intro ul {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

.footer_intro ul li a i {
  color: #fff;
  transition: color 0.3s, transform 0.3s;
}

.footer_intro ul li a:hover i {
  color: red;
  transform: scale(1.2);
}

/* Titles & Lists */
footer h4.title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}

ul.quick {
  list-style: none;
  padding: 0;
  column-count: 2;
}

ul.quick li a {
  color: #a2a2a2;
  /* Default grey */
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

ul.quick li a:hover {
  color: #007bff;
  /* Blue on hover */
  text-decoration: underline;
}

/* Contact info */
.adr_same,
.eml,
.phn {
  color: #6c757d;
  /* Grey text */
  margin-bottom: 15px;
  /* padding-left: 25px; */
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.phn i {
  color: #007bff;
}

/* Phone icon blue */
.eml i {
  color: #ffcc00;
}

/* Email icon yellow */
.whatsapp i {
  color: #25d366;
}

/* Google Map Links */
.footer_lower_txt a {
  color: #007bff;
}

.footer_lower_txt a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer Layout */
.container101 {
  display: flex;
  justify-content: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer_lower_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.colorgsfp {
  color: white;
}

/* Bottom Bar */
.bottom_bar {
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #717171;
}

/* Responsive */
@media (max-width: 576px) {
  .trusted-logo {
    max-height: 35px;
    margin: 5px;
  }

  .flipkart-logo {
    max-height: 40px;
  }

  .footer_intro ul {
    justify-content: center;
  }
}

/* cta btn */
/* Mobile Sticky CTA */
.mobile-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #eee;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12);
  transition: bottom 0.4s ease;
  z-index: 9999;
}

/* Text */
.cta-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

/* Button */
.cta-btn {
  background-color: #ffc107;
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cta-btn:active {
  transform: scale(0.95);
}

/* Show CTA */
.mobile-cta.show {
  bottom: 0;
}

/* Mobile only */
@media (min-width: 769px) {
  .mobile-cta {
    display: none;
  }
}
