@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/road-radio');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
  --teal: #00B8A9;
  --teal-dark: #009688;
  --teal-light: #E0F7F5;
  --gold: #F0B429;
  --gold-dark: #D9A01E;
  --dark: #0D1B2A;
  --dark2: #1A2A3A;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --light: #F7FAFB;
  --white: #FFFFFF;
  --border: #E2EAF0;
}

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

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #00B8A9;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: #F0B429;
  border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #ff512f, #dd2476);
}



.cursor {
  width: 35px;
  height: 35px;
  border: 2px solid #00B8A9;
  border-radius: 50%;

  position: fixed;
  top: 0;
  left: 0;

  pointer-events: none;

  transform: translate(-50%, -50%);

  z-index: 999999;

  transition: transform 0.08s linear;
}

.cursor::after {
  content: "";

  width: 12px;
  height: 12px;

  background: #00B8A9;

  border-radius: 50%;

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.top-bar {
  /* background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); */
  color: white;
  font-size: 13px;
  padding: 0px 5%;
  text-align: center;
}

.top-bar span {
  font-size: 18px;
  font-weight: bolder;
  margin-right: 12px;
}

.contact-info {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 6px 12px;
  border-radius: 8px;
  gap: 20px;
  border-radius: 230px 100px;
}

/* ===== NAVBAR ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  /* background: var(--white); */
  background: linear-gradient(135deg, #F7FAFB 0%, #E8F8F6 55%, #E8F8F6 100%);
  /* border-bottom: 1px solid var(--border); */
  /* height: 72px; */
  /* box-shadow: 0 2px 16px rgba(0, 184, 169, .08); */
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 10px 5% !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  /* margin:10px ; */
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gold);
  flex-shrink: 0;
}

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

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .brand {
  /* font-family: 'Playfair Display', serif; */
  /* font-family: 'Road Radio', sans-serif; */
  font-weight: 700;
  font-size: 30px;
  color: var(--dark);
}

.logo-text .sub {
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--teal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 184, 169, .35);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: var(--dark);
  line-height: 1;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px 5%;
  flex-direction: column;
  gap: 0;
  z-index: 998;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .btn-primary {
  margin-top: 14px;
  text-align: center;
  border-radius: 8px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, .4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 11px 22px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--teal);
  color: white;
}

.btn-white {
  background: var(--white);
  color: var(--teal-dark);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, .2);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .6);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  display: inline-block;
  margin-left: 12px;
}

.btn-outline-white:hover {
  border-color: white;
  background: rgba(255, 255, 255, .1);
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 80px 5%;
}

.wrap {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  /* font-family: 'Playfair Display', serif; */
  font-family: 'Road Radio', sans-serif;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto 48px;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 80px 5%;
  text-align: center;
}

.page-hero .ph-tag {
  display: inline-block;
  background: rgba(0, 184, 169, .15);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.page-hero h1 {
  /* font-family: 'Playfair Display', serif; */
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.breadcrumb a {
  color: var(--teal);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .3);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  /* background: var(--dark); */
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 22px 5%;
}

.trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

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

.trust-icon {
  font-size: 26px;
}

.trust-text .t-num {
  font-size: 19px;
  font-weight: 700;
  color: var(--gold);
}

.trust-text .t-label {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
}

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all .3s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  box-shadow: 4px 4px 12px 0 rgb(30 51 72 / 15%), 0 16px 48px 0 rgb(112 144 176 / 30%);
}

.product-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(0, 184, 169, .12);
  transform: translateY(-4px);
}

.prod-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 600;
}

.product-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.prod-arrow {
  color: var(--teal);
  font-size: 18px;
  margin-top: auto;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  border-radius: 20px;
  padding: 36px 28px;
  border: 1.5px solid var(--border);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.feature-card:hover {
  box-shadow: 0 12px 40px rgba(0, 184, 169, .12);
  transform: translateY(-4px);
}

.feat-icon {
  font-size: 36px;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== WHY CARD ===== */
.why-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  border: 1.5px solid var(--border);
  text-align: center;
  transition: all .3s;
}

.why-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(0, 184, 169, .1);
}

.why-card .wnum {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 6px;
}

.why-card .wlabel {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 72px 5%;
  text-align: center;
}

.cta-strip h2 {
  /* font-family: 'Playfair Display', serif; */
  font-family: 'Road Radio', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-strip p {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  margin-bottom: 32px;
}

/* ===== TESTIMONIAL ===== */
.testi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1.5px solid var(--border);
  height: 100%;
}

.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-card .quote {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 15px;
}

.testi-loc {
  font-size: 12px;
  color: var(--gray);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 60px 5% 28px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .fbrand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .logo-img-wrap {
  width: 44px;
  height: 44px;
}

.footer-brand p {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.social-btn:hover {
  background: var(--teal);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--teal);
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .4);
  font-size: 13px;
}

.sebi {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

/* ===== WHATSAPP ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
  text-decoration: none;
  animation: wafloat 3s ease-in-out infinite;
}

.wa-btn:hover {
  transform: scale(1.1);
}

@keyframes wafloat {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.3)
  }
}

/* ===== SWIPER CUSTOM ===== */
.swiper {
  padding-bottom: 48px !important;
}

.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--teal);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--teal) !important;
  background: var(--white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px !important;
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:768px) {
  section {
    padding: 60px 5%;
  }

  .nav-links,
  .btn-primary {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-inner {
    gap: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .top-bar span {
    font-size: 11px;
    font-weight: bolder;
    margin-right: 12px;
  }

  .product-card h3 {
    font-size: 13px;
    font-weight: 600;
  }
}

@media(max-width:480px) {
  section {
    padding: 50px 15px;
  }
}


.social {
  position: fixed;
  top: 140px;
  left: 0;
  z-index: 999;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: none;
}

.social ul {
  padding: 0;
  margin: 0;
}

.social ul li {
  list-style: none;
  margin: 8px 0;
  transform: translateX(-245px);
  transition: 0.5s;
}

.social ul li:hover {
  transform: translateX(0);
}

.social ul li a {
  width: 280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 5px 5px;
  /* background: rgba(0, 0, 0, 0.75); */
  background-color: #D9A01E;
  color: #fff;
  border-radius: 0 30px 30px 0;
  font-size: 16px;
  font-weight: 500;
}

.social ul li a i {
  /* background: #fff; */
  background: var(--teal-light);
  color: #000;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.4s;
}

.social ul li:hover i {
  transform: rotate(360deg);
}

/* Mobile Responsive */
@media(max-width:768px) {

  .social {
    top: auto;
    bottom: 15px;
    left: 0px;
  }

  .social ul li {
    transform: translateX(-235px);
  }

  .social ul li a {
    width: 280px;
    font-size: 14px;
  }

  .logo-text .sub {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
  }
}

.asteroid-2 {
  width: 49px;
  height: 46px;

  position: fixed;
  /* absolute ku badhila fixed */
  top: 20%;
  left: -100px;

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

  font-size: 40px;

  z-index: 999999;

  pointer-events: none;

  animation: fly 8s linear infinite;
}

@keyframes fly {

  0% {
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translateX(50vw) translateY(-30px) rotate(180deg);
  }

  100% {
    transform: translateX(120vw) translateY(50px) rotate(360deg);
    opacity: 0;
  }

}


.asteroid-3 {
  width: 49px;
  height: 46px;

  position: fixed;

  bottom: -100px;
  right: -100px;

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

  font-size: 40px;

  z-index: 999999;

  pointer-events: none;

  animation: fly_2 8s linear infinite alternate;
}

@keyframes fly_2 {

  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  50% {
    transform: translate(-50vw, -50vh) rotate(-180deg);
  }

  100% {
    transform: translate(-120vw, -120vh) rotate(-360deg);
    opacity: 1;
  }

}


.swiper-img img {
  width: 100%;
  height: 300px;
  object-fit: contain;
}

@media (max-width:768px) {

  body {
    cursor: auto;
  }

  .cursor {
    display: none;
  }

}