* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fff;
}

.delivery-bar {
  width: 100%;
  height: 50px;
  background: linear-gradient(90deg, #e63946, #d83d76);
  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
}

.delivery-bar p {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.feature-bar {
  width: 100%;
  min-height: 58px;

  background: linear-gradient(90deg, #14216e, #1d358c);

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 55px;

  padding: 8px 20px;

  box-shadow: 0 2px 6px rgba(20, 33, 110, 0.15);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;

  color: white;
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.feature-item i {
  color: #66d1d2;
  font-size: 25px;
}

.navbar {
  width: 100%;
  min-height: 130px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  padding: 15px 8%;

  background: white;

  box-shadow: 0 4px 14px rgba(20, 33, 110, 0.12);

  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;

  gap: 15px;

  flex-shrink: 0;
}

.logo-australia {
  width: 110px;
  height: 80px;

  background: #14216e;

  clip-path: polygon(
    15% 20%,
    40% 5%,
    75% 20%,
    90% 45%,
    70% 60%,
    85% 80%,
    55% 95%,
    30% 75%,
    5% 80%,
    15% 55%
  );

  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  font-size: 25px;
}

.logo-text h2 {
  line-height: 1;
  font-size: 28px;
  letter-spacing: 1px;
}

.logo-text h2:first-child {
  color: #2ec4c4;
}

.logo-text h2:last-child {
  color: #14216e;
  margin-top: 5px;
}

.logo-company {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #d83d76;
}

.nav-menu {
  display: flex;
  align-items: center;

  gap: 30px;
}

.nav-menu > a {
  position: relative;

  text-decoration: none;

  color: #14216e;

  font-size: 19px;
  font-weight: 700;

  padding: 6px 2px;

  transition: color 0.3s;
}

.nav-menu > a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: -4px;

  width: 0;
  height: 3px;

  border-radius: 3px;

  background: #2ec4c4;

  transition: width 0.3s ease;
}

.nav-menu > a:hover {
  color: #2ec4c4;
}

.nav-menu > a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;

  gap: 24px;

  margin-left: 24px;
  padding-left: 24px;

  border-left: 1px solid #e6e9f2;
}

.cart {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eef3fb;
  color: #14216e !important;

  font-size: 20px !important;

  transition: 0.3s;
}

.cart:hover {
  background: #2ec4c4;
  color: #fff !important;
}

.call-box {
  display: flex;
  align-items: center;

  gap: 12px;

  padding: 10px 20px;

  border-radius: 50px;

  background: #eef3fb;

  color: #14216e;
}

.call-box > i {
  color: #2ec4c4;
  font-size: 30px;
}

.call-box div {
  display: flex;
  flex-direction: column;
}

.call-box span {
  font-size: 17px;
}

.call-box strong {
  font-size: 20px;
  white-space: nowrap;
}

.menu-btn {
  display: none;

  border: none;
  background: transparent;

  color: #14216e;

  font-size: 30px;

  cursor: pointer;
}

@media (max-width: 1100px) {

  .navbar {
    padding: 15px 4%;
    gap: 24px;
  }

  .nav-menu {
    gap: 18px;
  }

  .nav-menu > a {
    font-size: 16px;
  }

  .nav-right {
    gap: 16px;
    margin-left: 16px;
    padding-left: 16px;
  }

  .call-box {
    padding: 8px 14px;
  }

  .logo-australia {
    width: 80px;
    height: 65px;
  }

  .logo-text h2 {
    font-size: 22px;
  }

  .feature-bar {
    gap: 25px;
  }

  .feature-item {
    font-size: 15px;
  }

  .home_image_head {
    left: 80px;
  }

  .home_image_head h2 {
    font-size: 38px;
  }

  .home_image_head h3 {
    font-size: 28px;
  }

}

@media (max-width: 768px) {

  

  .delivery-bar {
    height: 42px;
  }

  .delivery-bar p {
    font-size: 15px;
  }

  

  .feature-bar {
    min-height: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;

    padding: 12px 15px;
  }

  .feature-item {
    justify-content: center;

    font-size: 12px;
    gap: 6px;
  }

  .feature-item i {
    font-size: 16px;
  }

  

  .navbar {
    min-height: 85px;

    padding: 10px 20px;

    justify-content: space-between;
  }

  

  .logo {
    gap: 8px;
  }

  .logo-australia {
    width: 55px;
    height: 45px;
    font-size: 15px;
  }

  .logo-text h2 {
    font-size: 17px;
  }

  

  .menu-btn {
    display: block;
  }

  

  .nav-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    background: white;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 10px 20px;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu > a {
    font-size: 17px;

    padding: 14px 5px;

    border-bottom: 1px solid #ddd;
  }

  .nav-menu > a::after {
    display: none;
  }

  .nav-right {
    flex-direction: column;
    align-items: stretch;

    width: 100%;

    margin: 0;
    padding: 0;

    border-left: none;
    border-bottom: 1px solid #ddd;
  }

  .cart {
    display: none;
  }

  

  .call-box {
    padding: 14px 5px;
  }

  .call-box > i {
    font-size: 28px;
  }

  .call-box span {
    font-size: 14px;
  }

  .call-box strong {
    font-size: 16px;
  }

  .hero {
    height: 250px;
  }

}

/* hero  */



/* Main Banner */
.hero {
  position: relative;
  width: 100%;
  height: 650px; /* image ki height yahan se control hogi */
  overflow: hidden;
}

/* Image */
.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

/* Left Content */
.hero-content {
  position: absolute;
  top: 80px;
  left: 4%;

  width: 50%;
  z-index: 2;
}

/* Main Heading */
.hero-content h1 {
  font-size: clamp(45px, 5vw, 82px);
  line-height: 0.95;

  font-weight: 800;
  color: #10254b;

  margin-bottom: 30px;
}

.hero-content h1 span {
  color: #1261c9;
}

/* Sub Heading */
.hero-content h2 {
  font-size: clamp(22px, 2.3vw, 38px);
  font-weight: 600;

  color: #10254b;

  margin-bottom: 45px;
}

.hero-content h2 b {
  margin: 0 12px;
  font-weight: 400;
}

/* Features */
.features {
  display: flex;
  align-items: flex-start;
  gap: clamp(35px, 5vw, 80px);

  margin-left: 25px;
}

/* Individual Feature */
.feature {
  width: 130px;
  text-align: center;

  color: #10254b;
}

.feature i {
  display: block;

  font-size: 65px;
  color: #1261c9;

  margin-bottom: 18px;
}

.feature p {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 600;
}

.feature p strong {
  font-weight: 800;
}

/* Order Button */
.order-btn {
  margin-top: 55px;
  margin-left: 0;
  width: 100%;
  max-width: 465px;
  height: 90px;
  border: none;
  border-radius: 50px;
  background: #1265d1;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 34px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.order-btn i {
  font-size: 42px;
}

.order-now {
  font-size: 42px;
  color: white;
  text-decoration: none;
}

.order-btn:hover {
  transform: translateY(-3px);
  background: #0956bd;
}


/* Tablet */
@media (max-width: 991px) {
  .order-btn {
    max-width: 400px;
    height: 75px;
    font-size: 28px;
    gap: 18px;
  }

  .order-btn i {
    font-size: 34px;
  }

  .order-now {
    font-size: 34px;
  }
}


/* Mobile */
@media (max-width: 600px) {
  .order-btn {
    width: 100%;
    max-width: 350px;
    height: 65px;
    margin-top: 35px;
    gap: 12px;
    font-size: 22px;
  }

  .order-btn i {
    font-size: 20px;
  }

  .order-now {
    font-size: 20px;
  }
}


/* Small Mobile */
@media (max-width: 400px) {
  .order-btn {
    max-width: 100%;
    height: 58px;
    margin-top: 25px;
    gap: 10px;
  }

  .order-btn i {
    font-size: 18px;
  }

  .order-now {
    font-size: 18px;
  }
}


/* Very Small Mobile */
@media (max-width: 320px) {
  .order-btn {
    height: 52px;
    border-radius: 30px;
    gap: 8px;
  }

  .order-btn i {
    font-size: 15px;
  }

  .order-now {
    font-size: 20px;
  }
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .hero {
    height: 550px;
  }

  .hero-content {
    top: 55px;
    left: 4%;
  }

  .hero-content h1 {
    font-size: 55px;
  }

  .hero-content h2 {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .features {
    gap: 25px;
    margin-left: 0;
  }

  .feature i {
    font-size: 45px;
  }

  .feature p {
    font-size: 17px;
  }

  .order-btn {
    width: 330px;
    height: 65px;

    margin-top: 35px;

    font-size: 24px;
  }

  .order-btn i {
    font-size: 28px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .hero {
    height: 400px;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-content {
    top: 35px;
    left: 20px;

    width: 55%;
  }

  .hero-content h1 {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 18px;
  }

  .hero-content h2 {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .hero-content h2 b {
    margin: 0 5px;
  }

  .features {
    gap: 8px;
    margin-left: 0;
  }

  .feature {
    width: 75px;
  }

  .feature i {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .feature p {
    font-size: 11px;
  }

  .order-btn {
    width: 190px;
    height: 48px;

    margin-top: 25px;

    gap: 10px;

    font-size: 15px;
  }

  .order-btn i {
    font-size: 20px;
  }
}

/* hero  */

.products-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 2%;
}

.products-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 25px;
}

.products-head h2 {
  font-size: 30px;
  color: #14216e;
}

.products-arrows {
  display: flex;
  gap: 12px;
}

.arrow-btn {
  width: 45px;
  height: 45px;

  border: none;
  border-radius: 50%;

  background: #14216e;
  color: #fff;

  font-size: 17px;

  cursor: pointer;

  transition: background 0.3s ease;
}

.arrow-btn:hover:not(:disabled) {
  background: #1f31a8;
}

.arrow-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.products-slider {
  overflow: hidden;
}

.products-track {
  display: flex;

  transition: transform 0.45s ease;
}

.product-card {
  flex: 0 0 25%;
  padding: 0 10px;
}

.product-card-inner {
  border: 1px solid #e5e5e5;
  border-radius: 10px;

  background: #fff;

  padding: 15px;

  text-align: center;

  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-card-inner:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-img {
  width: 100%;
  height: 180px;

  border-radius: 8px;
  overflow: hidden;

  background: #f4f4f4;
}

.product-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-name {
  font-size: 20px;
  color: #14216e;

  margin: 14px 0 8px;
}

.stars {
  display: flex;
  justify-content: center;
  gap: 3px;

  margin-bottom: 14px;
}

.stars i {
  color: #f5a623;
  font-size: 16px;
}

.product-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-bottom: 14px;
}

.price-now {
  font-size: 22px;
  font-weight: 700;
  color: #14216e;
}

.price-old {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
}

.buy-btn {
  width: 100%;

  padding: 12px 0;

  border: none;
  border-radius: 6px;

  background: #14216e;
  color: #fff;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #1f31a8;
}

@media (max-width: 900px) {

  .product-card {
    flex: 0 0 50%;
  }

}

@media (max-width: 480px) {

  .product-card {
    flex: 0 0 100%;
  }

  .products-head h2 {
    font-size: 24px;
  }

}

.features-section {
  width: 100%;
  min-height: 190px;

  background: #111217;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  align-items: center;

  padding: 20px 50px;

  gap: 20px;
}

.feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  min-width: 0;
}

.feature-icon {
  width: 92px;
  height: 92px;

  border: 2px solid #d9e2ed;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 12px;
}

.feature-icon i {
  color: #d9e2ed;

  font-size: 38px;
}

.feature-box p {
  color: #19b7c5;

  font-size: 20px;
  font-weight: 600;

  line-height: 1.2;

  white-space: nowrap;
}

@media (max-width: 1100px) {

  .features-section {
    padding: 20px 25px;
  }

  .feature-icon {
    width: 85px;
    height: 85px;
  }

  .feature-icon i {
    font-size: 34px;
  }

  .feature-box p {
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .features-section {
    grid-template-columns: repeat(2, 1fr);

    min-height: auto;

    padding: 30px 15px;

    row-gap: 35px;
  }

  .feature-icon {
    width: 75px;
    height: 75px;

    margin-bottom: 10px;
  }

  .feature-icon i {
    font-size: 29px;
  }

  .feature-box p {
    font-size: 14px;

    white-space: normal;

    max-width: 180px;
  }

}

@media (max-width: 480px) {

  .features-section {
    padding: 25px 10px;

    gap: 25px 5px;
  }

  .feature-icon {
    width: 62px;
    height: 62px;
  }

  .feature-icon i {
    font-size: 24px;
  }

  .feature-box p {
    font-size: 12px;

    max-width: 140px;
  }

}

.reviews-section {
  width: 100%;
  padding: 30px 5% 70px;

  background: #fff;
}

.reviews-title {
  text-align: center;

  color: #142d80;

  font-size: 40px;
  font-weight: 600;

  margin-bottom: 45px;

  line-height: 1.2;
}

.reviews-wrapper {
  width: 100%;

  display: flex;
  align-items: center;

  gap: 20px;
}

.reviews-container {
  flex: 1;
  min-width: 0;

  overflow: hidden;
}

.reviews-track {
  display: flex;

  transition: transform 0.45s ease;
}

.review-slot {
  flex: 0 0 33.333%;
  padding: 0 12.5px;
}

.review-card {
  flex: 0 0 auto;

  min-height: 340px;

  background: #edf7fa;

  border: 1px solid #9ed4df;

  border-radius: 30px;

  padding: 42px 45px 30px;

  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.review-card h3 {
  color: #18234c;

  font-size: 25px;
  font-weight: 700;

  margin-bottom: 15px;

  line-height: 1.2;
}

.stars {
  color: #e5a51b;

  font-size: 26px;

  letter-spacing: 2px;

  margin-bottom: 22px;
}

.review-card p {
  color: #26314f;

  font-size: 18px;

  line-height: 1.4;

  margin: 0 auto 25px;

  max-width: 430px;
}

.review-card h4 {
  margin-top: auto;

  color: #21489b;

  font-size: 20px;

  font-weight: 600;

  line-height: 1.3;
}

.review-arrow {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  border: none;

  background: transparent;

  color: #222;

  font-size: 25px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: 0.2s;
}

.review-arrow:hover {
  color: #1648a0;
  transform: scale(1.15);
}

@media (max-width: 1100px) {

  .reviews-section {
    padding: 30px 4% 60px;
  }

  .reviews-title {
    font-size: 32px;

    margin-bottom: 35px;
  }

  .review-slot {
    flex: 0 0 50%;
  }

  .review-card {
    padding: 35px 30px;
  }

  .review-card h3 {
    font-size: 22px;
  }

  .review-card p {
    font-size: 16px;
  }

}

@media (max-width: 768px) {

  .reviews-section {
    padding: 25px 15px 50px;
  }

  .reviews-title {
    font-size: 26px;

    margin-bottom: 30px;
  }

  .reviews-wrapper {
    gap: 5px;
  }

  .review-slot {
    flex: 0 0 100%;
  }

  .review-card {
    min-height: 310px;

    padding: 30px 25px;

    border-radius: 25px;
  }

  .review-card h3 {
    font-size: 21px;
  }

  .stars {
    font-size: 23px;

    margin-bottom: 18px;
  }

  .review-card p {
    font-size: 16px;

    line-height: 1.5;
  }

  .review-card h4 {
    font-size: 17px;
  }

  .review-arrow {
    width: 30px;

    font-size: 20px;
  }

}

@media (max-width: 480px) {

  .reviews-title {
    font-size: 22px;

    padding: 0 10px;
  }

  .review-card {
    min-height: 330px;

    padding: 28px 20px;
  }

  .review-card h3 {
    font-size: 19px;
  }

  .stars {
    font-size: 21px;
  }

  .review-card p {
    font-size: 14px;
  }

  .review-card h4 {
    font-size: 16px;
  }

}

.post-delivery{
  width: 100%;
  overflow: hidden;
}

.post-delivery img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.modafinil-section {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 20px 25px 40px;
}

.modafinil-section > h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  background: linear-gradient(
    135deg,
    #eef7f6,
    #e9f1f1
  );

  border-radius: 15px;
  padding: 20px 22px;

  min-height: 120px;
}

.icon {
  flex-shrink: 0;

  width: 25px;
  height: 25px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #55b9ad;
  color: white;

  font-size: 16px;
  font-weight: bold;

  margin-top: 3px;
}

.info-box h3 {
  color: #173b73;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;

  margin-bottom: 8px;
}

.info-box p {
  color: #263746;

  font-size: 17px;
  line-height: 1.45;

  font-weight: 400;
}

.info-box ul {
  margin-top: 7px;
  padding-left: 20px;
}

.info-box li {
  color: #263746;
  font-size: 17px;
  line-height: 1.4;
  margin-bottom: 5px;
}

.info-box strong {
  font-weight: 700;
}

.info-box em {
  font-style: italic;
}

@media (max-width: 900px) {

  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .column {
    gap: 16px;
  }

  .modafinil-section {
    padding: 20px;
  }

  .info-box h3 {
    font-size: 20px;
  }

  .info-box p,
  .info-box li {
    font-size: 16px;
  }
}

@media (max-width: 600px) {

  .modafinil-section {
    padding: 15px;
  }

  .modafinil-section > h2 {
    font-size: 19px;
    line-height: 1.3;
  }

  .info-box {
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
  }

  .icon {
    width: 22px;
    height: 22px;
    font-size: 14px;
  }

  .info-box h3 {
    font-size: 18px;
  }

  .info-box p,
  .info-box li {
    font-size: 15px;
    line-height: 1.45;
  }
}

.choose-product{
  gap: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  background: red;
  color: white;
  padding: 20px;
  max-width: 400px;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
}
.choose-product > button{
  border: none;
  background: red;
}
.choose-product  button a{
  text-decoration: none;
  color: white;
  font-size: 20px;
  cursor: pointer;

}

.choose-product >span {
  font-size: 20px;

}
.choose-product:hover{
  background: rgba(255, 0, 0, 0.868);
}
.choose-product:hover button{
  background: rgba(255, 0, 0, 0.868);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.used-by {
  width: 100%;
  background: #162b91;
  padding: 25px 30px 35px;
  color: white;
}

.used-container {
  width: 100%;
  max-width: 1750px;
  margin: auto;
}

.used-container > h2 {
  text-align: center;

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 22px;
}

.used-list {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(8, 1fr);

  align-items: start;
  justify-content: center;

  gap: 15px;
}

.used-item {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: flex-start;

  text-align: center;
}

.used-icon {
  width: 105px;
  height: 105px;

  border-radius: 50%;

  background: #62c8c4;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 9px;

  position: relative;

  border: 2px solid rgba(255, 255, 255, 0.12);
}

.used-icon i {
  font-size: 48px;
  color: #e5ead7;
}

.used-item h3 {
  color: #ffffff;

  font-size: 21px;
  font-weight: 700;

  line-height: 1.2;

  white-space: nowrap;
}

.bottom-text {
  text-align: center;

  color: #ffffff;

  font-size: 19px;
  font-weight: 500;

  margin-top: 28px;
}

@media (max-width: 1200px) {

  .used-list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 25px;
  }

}

@media (max-width: 768px) {

  .used-by {
    padding: 25px 20px 30px;
  }

  .used-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 10px;
  }

  .used-icon {
    width: 80px;
    height: 80px;
  }

  .used-icon i {
    font-size: 35px;
  }

  .used-item h3 {
    font-size: 16px;
    white-space: normal;
  }

  .bottom-text {
    font-size: 16px;
  }

}

@media (max-width: 480px) {

  .used-by {
    padding: 22px 12px 28px;
  }

  .used-container > h2 {
    font-size: 21px;
    margin-bottom: 20px;
  }

  .used-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 10px;
  }

  .used-icon {
    width: 75px;
    height: 75px;
  }

  .used-icon i {
    font-size: 32px;
  }

  .used-item h3 {
    font-size: 15px;
    margin-top: 2px;
  }

  .bottom-text {
    font-size: 14px;
    line-height: 1.4;
    margin-top: 25px;
  }

}

.footer {
  width: 100%;
  background: linear-gradient(
    180deg,
    #02040b 0%,
    #050914 45%,
    #172f91 100%
  );

  color: #fff;

  padding: 55px 5% 20px;
}

.footer-container {
  width: 100%;
  max-width: 1400px;
  margin: auto;

  display: grid;

  grid-template-columns:
    2.2fr
    1fr
    1fr
    1.5fr;

  gap: 55px;
}

.footer-column {
  color: #fff;
}

.footer-column h2 {
  font-size: 27px;
  margin-bottom: 18px;
}

.footer-column p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.footer-column h4 {
  color: #61c8c3;
  font-size: 15px;
  margin-top: 24px;
  margin-bottom: 10px;
}

.payment-methods {
  display: flex;
  align-items: center;
  gap: 25px;

  margin: 15px 0 30px;
}

.payment-methods span {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
}

.payment-methods span:nth-child(2) {
  font-size: 27px;
}

.payment-methods span:nth-child(3) {
  background: #fff;
  color: #111;

  padding: 8px 10px;

  border-radius: 7px;

  font-size: 17px;
}

.auspost {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 12px 0 25px;

  color: #ff4b30;

  font-weight: 700;
}

.auspost-icon {
  font-size: 45px;
}

.auspost span:last-child {
  font-size: 17px;
}

.footer-link {
  color: #fff !important;
  font-weight: 600;
  margin-bottom: 6px !important;
}

.footer-link:hover {
  color: #61c8c3 !important;
}

.footer-menu {
  list-style: none;

  padding: 0;
  margin: 0;
}

.footer-menu li {
  font-size: 16px;
  font-weight: 600;

  margin-bottom: 10px;

  cursor: pointer;
}

.footer-menu li:hover {
  color: #61c8c3;
}

.contact-column p {
  margin-bottom: 22px;
}

.contact {
  font-size: 16px !important;
}

.disclaimer {
  width: 100%;
  max-width: 1400px;

  margin: 35px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.7);
}

.disclaimer h4 {
  display: inline;

  font-size: 15px;

  color: #fff;
}

.disclaimer p {
  display: inline;

  font-size: 14px;

  line-height: 1.6;

  color: #fff;
}

.footer-bottom {
  width: 100%;
  max-width: 1400px;

  margin: 35px auto 0;

  padding-top: 25px;

  border-top: 1px solid rgba(255, 255, 255, 0.7);

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 600;

  line-height: 1.6;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #61c8c3;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icons a {
  color: #fff;

  font-size: 24px;
  font-weight: 700;

  text-decoration: none;
}

@media (max-width: 1000px) {

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 600px) {

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h2 {
    font-size: 23px;
  }

  .footer-column p {
    font-size: 14px;
  }

  .payment-methods {
    flex-wrap: wrap;
  }

  .footer-menu li {
    font-size: 15px;
  }

  .disclaimer {
    margin-top: 25px;
  }

  .disclaimer p {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-icons {
    align-self: flex-end;
  }

}

.faq-section {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px 70px 80px;
}

.faq-title {
  text-align: center;
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 55px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
}

.faq-column {
  width: 100%;
}

.faq-item {
  border-top: 1px solid #777;
}

.faq-item:last-child {
  border-bottom: 1px solid #777;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  padding: 25px 5px;

  cursor: pointer;
}

.faq-question h2 {
  margin: 0;

  font-size: 23px;
  line-height: 1.3;

  font-weight: 700;
}

.faq-toggle {
  width: 35px;
  height: 35px;

  flex-shrink: 0;

  border: none;
  background: transparent;

  padding: 0;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  width: 25px;
  height: 25px;

  border: 2px solid #222;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  line-height: 1;
  font-weight: 400;

  transition: 0.2s ease;
}

.faq-answer {
  max-height: 500px;

  overflow: hidden;

  opacity: 1;

  padding: 0 45px 28px 5px;

  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.faq-answer p {
  margin: 0;

  font-size: 17px;
  line-height: 1.45;

  color: #444;
}

.faq-item.closed .faq-answer {
  max-height: 0;

  opacity: 0;

  padding-top: 0;
  padding-bottom: 0;
}

.faq-full {
  margin-top: 50px;
}

@media (max-width: 900px) {

  .faq-section {
    padding: 30px 25px 60px;
  }

  .faq-title {
    font-size: 34px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-question h2 {
    font-size: 21px;
  }

  .faq-answer p {
    font-size: 16px;
  }

}

@media (max-width: 600px) {

  .faq-section {
    padding: 25px 15px 50px;
  }

  .faq-title {
    font-size: 27px;
    margin-bottom: 35px;
  }

  .faq-question {
    padding: 20px 0;
    gap: 10px;
  }

  .faq-question h2 {
    font-size: 18px;
  }

  .faq-answer {
    padding-left: 0;
    padding-right: 25px;
    padding-bottom: 22px;
  }

  .faq-answer p {
    font-size: 15px;
  }

  .faq-toggle {
    width: 30px;
    height: 30px;
  }

  .icon {
    width: 23px;
    height: 23px;
    font-size: 18px;
  }

}


.post-delivery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.post-delivery > img {
  display: block;
  width: 100%;
  height: auto;
}

.delivery-card {
  position: absolute;
  top: 5.2%;
  right: 3%;
  width: 27.4%;
  aspect-ratio: 455 / 445;

  background: #fff;
  border-radius: 35px;
  padding: 40px 30px;

  text-align: center;
  color: #173e7c;

  z-index: 10;
  font-family: Arial, sans-serif;
}

/* Australia Post Logo */
.post-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
}

.post-icon {
  width: 54px;
  height: 54px;
  background: #e51e32;
  border-radius: 50%;
  position: relative;
}

.post-icon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 54px;
  background: white;
  left: 18px;
  top: 0;
  border-radius: 50%;
}

.post-name {
  color: #e51e32;
  font-size: 25px;
  line-height: .95;
  font-weight: 700;
  text-align: left;
}

/* Heading */
.delivery-card h2 {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.8vw, 30px);
  color: #173e7c;
}

/* Paragraph */
.delivery-card p {
  margin: 0 0 32px;
  font-size: clamp(14px, 1.15vw, 19px);
  line-height: 1.4;
  color: #173e7c;
}

/* Delivery boxes */
.delivery-options {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.delivery-box {
  width: 180px;
  height: 100px;

  background: #164391;
  border-radius: 12px;

  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.delivery-box strong {
  font-size: 21px;
  margin-bottom: 8px;
}

.delivery-box span {
  font-size: 18px;
}



.post-delivery {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.post-bg {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================
   LEFT CONTENT
========================= */

.delivery-content {
  position: absolute;

  top: 5%;
  left: 3.2%;

  width: 65%;

  color: white;
  font-family: Arial, sans-serif;
}


/* Heading */

.delivery-content h1 {
  margin: 0 0 35px;

  font-size: clamp(30px, 3vw, 52px);
  line-height: 1.15;
  font-weight: 700;
}


/* Intro */

.delivery-intro {
  max-width: 1080px;

  margin: 0 0 35px;

  font-size: clamp(16px, 1.35vw, 23px);
  line-height: 1.5;
}

.delivery-intro strong {
  font-weight: 700;
}


/* =========================
   FEATURES
========================= */

.delivery-feature {
  display: flex;
  align-items: flex-start;

  gap: 20px;

  margin-bottom: 27px;
}

.delivery-feature p {
  margin: 0;

  font-size: clamp(16px, 1.3vw, 22px);
  line-height: 1.45;
}

.delivery-feature strong {
  font-weight: 700;
}


/* Check circle */

.check-icon {
  flex-shrink: 0;

  width: 32px;
  height: 32px;

  border: 3px solid #00c9f5;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00c9f5;

  font-size: 21px;
  font-weight: bold;

  margin-top: 2px;
}


/* =========================
   DELIVERY TIMELINE
========================= */

.delivery-content h3 {
  margin: 25px 0 20px;

  font-size: clamp(17px, 1.4vw, 24px);
  font-weight: 700;
}

.delivery-time {
  display: flex;
  flex-direction: column;

  gap: 12px;

  font-size: clamp(16px, 1.3vw, 22px);
}

.delivery-time > div {
  display: flex;
  align-items: center;
}


/* Small check */

.check-icon.small {
  width: 27px;
  height: 27px;

  font-size: 17px;

  border-width: 2px;

  margin-right: 12px;
}


/* =========================
   NOTE
========================= */

.delivery-note {
  max-width: 1000px;

  margin-top: 22px;

  font-size: clamp(14px, 1.1vw, 19px);
  line-height: 1.4;
}

.delivery-note strong {
  font-weight: 700;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1100px) {

  .delivery-content {
    top: 4%;
    left: 3%;
    width: 63%;
  }

  .delivery-content h1 {
    margin-bottom: 20px;
  }

  .delivery-intro {
    margin-bottom: 20px;
  }

  .delivery-feature {
    gap: 12px;
    margin-bottom: 16px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .post-delivery {
    background: #031936;
  }

  .post-bg {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .delivery-content {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;

    padding: 35px 20px;

    background: rgba(3, 25, 54, 0.75);
  }

  .delivery-content h1 {
    font-size: 30px;
  }

  .delivery-intro {
    font-size: 16px;
  }

  .delivery-feature p {
    font-size: 15px;
  }

  .check-icon {
    width: 27px;
    height: 27px;

    font-size: 17px;
  }

  .delivery-content h3 {
    font-size: 18px;
  }

  .delivery-time {
    font-size: 15px;
  }

  .delivery-note {
    font-size: 14px;
  }
}
.post-delivery {
  position: relative;
  width: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.express-bg {
  display: block;
  width: 100%;
  height: auto;
}


/* =========================
   MAIN HEADING
========================= */

.order-heading {
  position: absolute;
  top: 2%;
  left: 18%;
  width: 65%;
  text-align: center;
}

.order-heading h1 {
  margin: 0;

  color: #1250a8;

  font-size: clamp(30px, 3.2vw, 58px);
  line-height: 1.15;
  font-weight: 700;
}

.order-heading p {
  margin: 8px 0 0;

  color: #17213b;

  font-size: clamp(17px, 1.5vw, 28px);
  font-weight: 600;
}


/* =========================
   RIGHT SIDE STEPS
========================= */

.order-steps {
  position: absolute;

  top: 18%;
  right: 4%;

  width: 47%;
}


/* Individual Step */

.order-step {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 30px;

  min-height: 125px;
}


/* Vertical Line */

.order-step:not(:last-child)::after {
  content: "";

  position: absolute;

  left: 34px;
  top: 68px;

  width: 5px;
  height: 80px;

  background: #1553ad;
}


/* Number Circle */

.step-number {
  position: relative;

  z-index: 2;

  flex-shrink: 0;

  width: 70px;
  height: 70px;

  border: 5px solid #42a9e8;

  border-radius: 50%;

  background: white;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1250a8;

  font-size: 20px;
  font-weight: 700;
}


/* Step Content */

.step-content {
  padding-top: 14px;
}

.step-content h2 {
  margin: 0 0 12px;

  color: #1250a8;

  font-size: clamp(17px, 1.5vw, 27px);
  line-height: 1.25;

  font-weight: 700;
}

.step-content p {
  margin: 0;

  color: #18233e;

  font-size: clamp(14px, 1.25vw, 22px);
  line-height: 1.4;
}


/* =========================
   BOTTOM FEATURES
========================= */

.order-features {
  position: absolute;

  left: 12%;
  bottom: 2%;

  width: 76%;

  display: grid;
  grid-template-columns: repeat(6, 1fr);

  align-items: start;
}


/* Feature */

.order-feature {
  position: relative;

  text-align: center;

  min-height: 100px;

  padding: 0 15px;
}


/* Vertical Separator */

.order-feature:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 5px;

  width: 2px;
  height: 70px;

  background: #cbd7e7;
}


/* Icon */

.feature-icon {
  width: 62px;
  height: 62px;

  margin: 0 auto 10px;

  border-radius: 50%;

  background: #27b8cf;

  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 27px;
  font-weight: 700;
}


/* Feature Text */

.order-feature p {
  margin: 0;

  color: #123d82;

  font-size: clamp(12px, 1vw, 18px);

  line-height: 1.25;

  font-weight: 600;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

  .order-heading {
    left: 15%;
    width: 70%;
  }

  .order-steps {
    width: 50%;
    right: 3%;
    top: 19%;
  }

  .order-step {
    gap: 15px;
    min-height: 100px;
  }

  .step-number {
    width: 55px;
    height: 55px;

    border-width: 4px;

    font-size: 16px;
  }

  .order-step:not(:last-child)::after {
    left: 27px;
    top: 55px;
    width: 4px;
    height: 55px;
  }

  .step-content {
    padding-top: 5px;
  }

  .step-content h2 {
    margin-bottom: 6px;
  }

  .order-feature {
    padding: 0 7px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .post-delivery {
    background: #f5faff;
  }

  .express-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }

  .order-heading {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;

    padding: 30px 20px 20px;

    background: rgba(245, 250, 255, 0.9);
  }

  .order-steps {
    position: relative;

    top: auto;
    right: auto;

    width: 100%;

    padding: 20px;

    background: rgba(255, 255, 255, 0.9);
  }

  .order-step {
    min-height: 110px;
  }

  .step-content h2 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }

  .order-features {
    position: relative;

    left: auto;
    bottom: auto;

    width: 100%;

    padding: 20px;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    background: rgba(255, 255, 255, 0.9);
  }

  .order-feature:not(:last-child)::after {
    display: none;
  }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

  .order-heading h1 {
    font-size: 27px;
  }

  .order-heading p {
    font-size: 16px;
  }

  .order-step {
    gap: 12px;
  }

  .step-number {
    width: 45px;
    height: 45px;

    border-width: 3px;

    font-size: 14px;
  }

  .order-step:not(:last-child)::after {
    left: 22px;
    top: 45px;
  }

  .step-content h2 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .order-features {
    grid-template-columns: 1fr 1fr;
  }
}


/* =========================================
   RESPONSIVE - TABLET
========================================= */

@media (max-width: 1100px) {

  .delivery-content {
    top: 4%;
    left: 3%;
    width: 63%;
  }

  .delivery-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .delivery-intro {
    font-size: 17px;
    margin-bottom: 20px;
  }

  .delivery-feature {
    gap: 12px;
    margin-bottom: 16px;
  }

  .delivery-feature p {
    font-size: 16px;
  }

  .check-icon {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }

  .delivery-content h3 {
    font-size: 18px;
    margin-top: 18px;
    margin-bottom: 12px;
  }

  .delivery-time {
    font-size: 16px;
    gap: 8px;
  }

  .delivery-note {
    font-size: 14px;
    margin-top: 15px;
  }


  /* RIGHT CARD */

  .delivery-card {
    top: 4%;
    right: 2.5%;

    width: 30%;
    min-height: 350px;

    padding: 28px 18px;
    border-radius: 25px;
  }

  .post-logo {
    margin-bottom: 25px;
  }

  .post-icon {
    width: 42px;
    height: 42px;
  }

  .post-icon::after {
    width: 14px;
    height: 42px;
    left: 14px;
  }

  .post-name {
    font-size: 19px;
  }

  .delivery-card h2 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .delivery-card > p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .delivery-options {
    gap: 10px;
  }

  .delivery-box {
    width: 120px;
    height: 65px;
  }

  .delivery-box strong {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .delivery-box span {
    font-size: 12px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .post-delivery {
    position: relative;
    width: 100%;
  }

  .post-delivery > img {
    width: 100%;
    height: auto;
    display: block;
  }


  /* LEFT CONTENT */

  .delivery-content {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;

    padding: 30px 20px;

    background: #031936;
  }

  .delivery-content h1 {
    font-size: 30px;
    line-height: 1.2;

    margin-bottom: 20px;
  }

  .delivery-intro {
    font-size: 16px;
    line-height: 1.5;

    margin-bottom: 25px;
  }

  .delivery-feature {
    gap: 12px;
    margin-bottom: 18px;
  }

  .delivery-feature p {
    font-size: 15px;
    line-height: 1.45;
  }

  .check-icon {
    width: 27px;
    height: 27px;

    min-width: 27px;

    border-width: 2px;

    font-size: 17px;
  }

  .delivery-content h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .delivery-time {
    font-size: 15px;
    gap: 10px;
  }

  .check-icon.small {
    width: 25px;
    height: 25px;

    min-width: 25px;

    margin-right: 8px;
  }

  .delivery-note {
    font-size: 14px;
    line-height: 1.5;

    margin-top: 20px;
  }


  /* RIGHT CARD */

  .delivery-card {
    position: relative;

    top: auto;
    right: auto;

    width: calc(100% - 30px);

    min-height: auto;

    margin: 25px auto 30px;

    padding: 30px 20px;

    border-radius: 25px;
  }

  .post-logo {
    margin-bottom: 30px;
  }

  .post-icon {
    width: 45px;
    height: 45px;
  }

  .post-icon::after {
    width: 15px;
    height: 45px;
    left: 15px;
  }

  .post-name {
    font-size: 21px;
  }

  .delivery-card h2 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .delivery-card > p {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 25px;
  }

  .delivery-options {
    gap: 12px;
  }

  .delivery-box {
    width: 45%;
    height: 80px;
  }

  .delivery-box strong {
    font-size: 16px;
  }

  .delivery-box span {
    font-size: 14px;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

  .delivery-content {
    padding: 25px 15px;
  }

  .delivery-content h1 {
    font-size: 25px;
  }

  .delivery-intro {
    font-size: 14px;
  }

  .delivery-feature {
    gap: 10px;
  }

  .delivery-feature p {
    font-size: 14px;
  }

  .delivery-content h3 {
    font-size: 17px;
  }

  .delivery-time {
    font-size: 14px;
  }

  .delivery-note {
    font-size: 13px;
  }


  /* CARD */

  .delivery-card {
    width: calc(100% - 20px);

    padding: 25px 15px;
  }

  .post-logo {
    margin-bottom: 25px;
  }

  .post-name {
    font-size: 19px;
  }

  .delivery-card h2 {
    font-size: 21px;
  }

  .delivery-card > p {
    font-size: 14px;
  }

  .delivery-options {
    flex-direction: column;
    align-items: center;
  }

  .delivery-box {
    width: 85%;
    height: 75px;
  }

  .delivery-box strong {
    font-size: 15px;
  }

  .delivery-box span {
    font-size: 13px;
  }
}