/* ====== CSS VARIABLES & RESET ====== */
:root {
  --bg-1: linear-gradient(135deg, #0f172a 0%, #07203c 100%);
  --glass: rgba(255, 255, 255, 0.06);
  --card: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  --accent-a: #7c3aed;
  /* purple */
  --accent-b: #06b6d4;
  /* teal */
  --muted: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;


  --poppins: "Poppins", sans-serif;
  --winkky: "Winky Rough", sans-serif;
  --roboto: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
}

/* ==========================PRELOEADER============================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Cube container */
.cube {
  position: relative;
  width: 80px;
  height: 80px;
  transform-style: preserve-3d;
  animation: spin 1.8s linear infinite;
}

.cube div {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #06b6d4 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.3), inset 0 -6px 20px rgba(255, 255, 255, 0.04);
}

/* Cube faces */
.front {
  transform: translateZ(40px);
}

.back {
  transform: rotateY(180deg) translateZ(40px);
}

.right {
  transform: rotateY(90deg) translateZ(40px);
}

.left {
  transform: rotateY(-90deg) translateZ(40px);
}

.top {
  transform: rotateX(90deg) translateZ(40px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(40px);
}

/* Spin animation */
@keyframes spin {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

/* Inner pulse cube */
.inner-cube {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.25), inset 0 6px 20px rgba(255, 255, 255, 0.03);
  animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(0.95);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Shadow below cube */
.shadow {
  width: 100px;
  height: 20px;
  background: radial-gradient(ellipse at center, rgba(2, 6, 23, 0.25), rgba(2, 6, 23, 0.05));
  filter: blur(10px);
  border-radius: 50%;
  margin-top: 20px;
}

.loading-text {
  margin-top: 20px;
  color: #94a3b8;
  font-size: 14px;
  letter-spacing: 1px;
}

/* ==========================PRELOEADER============================ */

html,
body {
  /* height: 100%; */
  font-family: var(--poppins);
}

body {
  /* height: 100%; */
  background: radial-gradient(1200px 600px at 10% 10%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(900px 500px at 90% 90%, rgba(6, 182, 212, 0.08), transparent),
    var(--bg-1);
  color: #f8fafc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 48px 32px;
  overflow-x: hidden;
}

/*body::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/


a {
  color: inherit;
  text-decoration: none
}

/* === Burger Menu Animation === */
#burger {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: white;
  z-index: 1001;
}

/* ====== LAYOUT ====== */


.user-text {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.pill-img img {
  width: 200px;
}


.pill-text span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}



header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 10px;
  background-color: #092743;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

.slogan {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
}

.slogan img {
  width: 200px;
}


.brand {
  display: flex;
  align-items: center;
}

.log .logo svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.45))
}

.brand h1 {
  font-size: 18px;
  letter-spacing: 0.2px
}

nav {
  display: flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
}

nav a:last-child {
  background-color: transparent;
}

nav a {
  padding: 8px 12px;
  border-radius: 10px;
  font-weight: 400;
  opacity: 0.95;
  font-size: 16px;
  font-family: var(--poppins);
}

nav a:hover {
  background: rgba(255, 255, 255, 0.04)
}

/* ====== HERO ====== */
.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
  align-items: center;
  width: 100%;
  height: 60vh;
  border-radius: 22px;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-blend-mode: overlay;
  animation: changeBackground 16s infinite ease-in-out;
  color: #fff;
  backdrop-filter: blur(6px);
  margin-top: 90px;
}

.hero::-webkit-scrollbar {
  display: none;
}



.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeImages 16s infinite ease-in-out;
  z-index: -1;
}

.hero::before {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('https://plus.unsplash.com/premium_photo-1661758211006-d41106e4be4d?ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8YnVzaW5lc3N8ZW58MHx8MHx8fDA%3D&auto=format&fit=crop&q=60&w=500');
}

.hero::after {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)), url('../image/bg.jpg');
  animation-delay: 8s;
}

@keyframes fadeImages {

  0%,
  45% {
    opacity: 0;
  }

  50%,
  95% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}




/* Animation for Background Change */


.hero-first {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}


.hero-button {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}



h2 {
  font-size: 36px;
  line-height: 1.02;
  margin-bottom: 12px
}

.lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 12px;
  align-items: center
}



.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(6, 12, 28, 0.6);
  transform: translateZ(30px);
  white-space: nowrap;
  flex-wrap: nowrap;
}


.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  box-shadow: none
}

.hero-right {
  position: relative;
  padding: 24px
}

.hero-card {
  height: 320px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.6);
  transform-style: preserve-3d
}



/* ====== SECTIONS ====== */

.general-about {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 30px;
  margin-bottom: 80px;
}

.about-img img {
  width: 400px;
  border-radius: 20px;
}

.details {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.about-header h3 {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(to left, var(--accent-b), #ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 80px;
  font-family: var(--poppins);
  width: 100%;
}

.main {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.main span {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--poppins);
  color: #fff;
}

.main p {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--poppins);
  color: #ccc;
}

.light {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(220, 219, 226, 0.2);
  filter: blur(70px);
  animation: move 8s infinite ease-in-out alternate;
}

@keyframes move {
  0% {
    transform: translate(10vw, 10vh);
  }

  50% {
    transform: translate(70vw, 30vh);
  }

  100% {
    transform: translate(30vw, 40vh);
  }
}

.light:nth-child(2) {
  animation-delay: 3s;
  background: rgba(237, 240, 243, 0.3);
}

.light:nth-child(3) {
  animation-delay: 6s;
  background: rgba(255, 100, 0, 0.3);
}





.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px
}


/* ====== GRANT CARDS ====== */
#grants {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}


.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

/* ===============RESPONSIVE FOR THE PLANS=========== */

@media(max-width: 1000px) {
  .details {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 0 20px;
  }

}

@media(max-width: 800px) {
  .plan-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width: 600px) {
  .about-img img {
    width: 100%;
    border-radius: 20px;
  }
}

@media(max-width: 500px) {
  .plan-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}


/* ===============RESPONSIVE FOR THE PLANS=========== */
.grant {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 18px;
  width: 100%;
  /* height: 500px; */
  border-radius: 20px;
  box-shadow: 0px 0px 2px var(--accent-b);
  background-color: #101B24;

}

.cards {
  position: relative;
}

.pricing-accent {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 40px;
  background: linear-gradient(135deg, #00d4ff, #063042);
  clip-path: polygon(50% 0%, 100% 40%, 80% 100%, 20% 100%, 0% 40%);
  border-radius: 8px;
  box-shadow: 0 5px 10px #063042;
}

.grant .title h3 {
  text-align: center;
  font-size: 18px;
  font-family: var(--poppins);
  font-weight: 800;
  color: #a97900;
}

.grant .amount p {
  font-size: 16px;
  font-family: var(--poppins);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.grant .amount i {
  font-size: 28px;
  color: var(--accent-b);
}

.grant .amount p span {
  font-size: 26px;
  font-family: var(--roboto);
  color: var(--accent-b);
  font-weight: 800;
}

.grant .description p {
  font-size: 14px;
  font-family: var(--poppins);
  color: #ccccccaf;
}


.grant .delivery p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 16px;
  font-family: var(--poppins);
}

.grant .delivery p i {
  font-size: 28px;
  color: var(--accent-b);
}

.grant .delivery p span {
  font-size: 26px;
  font-family: var(--roboto);
  color: var(--accent-b);
}



.apply-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.apply-btns .btn {
  width: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
}

/* ====== STEPS (Testimonial Section Rework) ====== */
.testimonials {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin: 100px auto;
  max-width: 1100px;
  position: relative;
  flex-wrap: wrap;
}

.lines {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.lines .sucess-line {
  width: 210px;
  height: 2px;
  background-color: #CE9D00;
}

.lines .sucess-dot {
  background-color: var(--accent-b);
  width: 10px;
  height: 10px;
  border-radius: 100%;
}

/* ==================================TESTIMONIALS======================= */


.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.section-head h3 {
  font-size: 40px;
  font-weight: 500;
  background: linear-gradient(to left, var(--accent-b), #ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top: 1 80px;
  font-family: var(--poppins);
  width: 100%;
}

.testimonial {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.testimonialImg {
  width: 100%;
}

.img {
  width: 100%;
  overflow: hidden;
  height: 200px;
}

.img img {
  border-radius: 100%;
  object-fit: cover;
  width: 200px;
  height: 100%;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 8%;
  right: 8%;
  height: 1px;
  border-top: 2px dotted rgba(255, 204, 0, 0.8);
  z-index: 0;
}

.stars {
  color: gold;
  font-size: 18px;
}

/* glowing dot markers */
.testimonials::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 8%;
  right: 8%;
  height: 12px;
  background: radial-gradient(circle, rgba(255, 204, 0, 0.9) 20%, transparent 70%);
  background-repeat: repeat-x;
  background-size: calc(100% / 2) 1px;
  /* for 3 boxes */
  z-index: 1;
}

.testimonial {
  position: relative;
  flex: 1;
  padding: 28px 20px;
  border-radius: 10px;
  text-align: center;
  background: radial-gradient(rgba(255, 204, 0, 0.15), rgba(0, 0, 0, 0.9));
  border: 1px solid rgba(255, 204, 0, 0.25);
  box-shadow: 0 0 25px rgba(255, 204, 0, 0.25);
  color: #f8f8f8;
  z-index: 2;
  min-width: 280px;
}

/* glowing numbered circle */
.testimonial::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffcc00, #a97900);
  color: #000;
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  border: 2px solid rgba(255, 204, 0, 0.4);
}

/* initialize numbering */
.testimonials {
  counter-reset: step;
}

.testimonial h3 {
  margin-top: 20px;
  color: #ffd54f;
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.4);
}

.testimonial p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

/* responsive stacking */
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    align-items: center;
  }

  .testimonials::before,
  .testimonials::after {
    display: none;
  }

  .testimonial {
    width: 90%;
    margin-bottom: 50px;
  }

  .testimonial::before {
    top: -20px;
  }
}


/* ====== CONTACT & FOOTER ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding-top: 18px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center
}

/* ====== MODAL ====== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  display: none;
  /* align-items: center; */
  justify-content: center;
  padding: 28px;
  z-index: 1000;
  height: 100%;
   overflow-y: auto; 
}

.modal {
  width: 100%;
  max-width: 720px;
  border-radius: 14px;
  background: linear-gradient(180deg, #071728, #041822);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 40px 120px rgba(2, 6, 23, 0.8);
  overflow-y: auto;
}

/*.modal::-webkit-scrollbar {*/
/*  display: none;*/
/*}*/

.modal h4 {
  margin-bottom: 8px
}

.form-row {
  display: flex;
  gap: 12px
}

.form-row .col {
  flex: 1
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.445);
  background: transparent;
  color: var(--muted);
  resize: none
}

input[type="radio"],
input[type="checkbox"] {
  width: 20px;
}

label {
  /* display: block; */
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted)
}

.modal .actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 12px
}

/* ====== MICHELLE EFFECT & ANIM ====== */
@keyframes floaty {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }

  100% {
    transform: translateY(0)
  }
}

.float {
  animation: floaty 6s ease-in-out infinite
}

/* ====== RESPONSIVE ====== */




@media (max-width:1000px) {


  .hero {
    order: -1;
  }




  .container {
    padding: 0 18px
  }
}





/* ===== HERO RESPONSIVENESS FIX ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 20px;
    text-align: center;
  }

  .hero-left {
    padding: 0;
    max-width: 100%;
  }



  .hero-left .lead {
    max-width: 500px;
    margin: 0 auto 16px auto;
    font-size: 15px;
  }

  .cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .input-url {
    width: 100%;
    min-width: unset;
    text-align: center;
  }

  .hero-btn .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-right {
    padding: 0;
    margin-top: 24px;
  }

  .hero-card {
    height: auto;
    width: 100%;
    padding: 18px;
  }


}

@media(max-width: 850px) {}

/* Mobile Menu Hidden by Default */
/* ====== MOBILE (max-width: 640px) ====== */
@media (max-width: 641px) {

  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding: 48px 10px;
  }

  /* ---- Header & Navigation ---- */
  header {
    align-items: center;
  }


  .animation {
    display: none;
  }

  #burger {
    display: block;
    font-size: 22px;
    z-index: 1001;
  }

  nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    align-items: center;
    justify-content: center;
    top: 80px;
    right: 10px;
    background: rgba(7, 23, 40, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 9px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 180px;
    max-width: calc(100vw - 20px);
    z-index: 1000;
  }

  nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  nav a {
    /* padding: 8px 12px; */
    border-radius: 5px;
    font-weight: 600;
    opacity: 0.95;
  }

  /* ---- Branding ---- */
  .logo {
    width: 38px;
    height: 38px;
    border-radius: 8px;
  }

  .logo svg {
    width: 22px;
    height: 22px;
  }

  .brand {
    gap: 8px;
  }

  .brand h1 {
    font-size: 15px;
  }

  .brand .muted {
    font-size: 10px !important;
  }

  /* ---- Hero Section ---- */

  .hero-left h2 {
    font-size: 24px;
  }

  .hero-left .lead {
    font-size: 14px;
    text-align: center;
  }


  .btn {
    width: 100%;
    font-size: 15px;
    justify-content: center;
  }

  .hero-card {
    height: auto;
    width: 100%;
  }




  /* ---- Apply Buttons ---- */
  .apply-row {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .apply-row>div:last-child {
    width: 100%;
    max-width: none;
  }

  .apply-row .btn,
  .apply-row .btn.ghost {
    width: 100%;
  }

  /* ---- Contact & Sections ---- */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}


/* Extra small screens */
@media (max-width: 500px) {
  /* .title {
    line-height: 5;
  } */

  .hero {
    padding: 24px 14px;
  }

  .hero-left h2 {
    font-size: 24px;
  }

  .hero-left .lead {
    font-size: 14px;
  }


  .btn {
    font-size: 15px;
  }


  .slogan img {
    width: 200px;
  }


  .section-title h3 {
    font-size: 25px;
  }


  .section-head h3 {
    font-size: 25px;
    font-weight: 500;
    background: linear-gradient(to left, var(--accent-b), #ffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-family: var(--poppins);
    width: 100%;
  }

  .form-row {
    flex-direction: column;
  }
}

@media(max-width: 400px) {
  .hero-left {
    padding: 0;
    max-width: 250px;
  }
}

@media(max-width: 375px) {
  .hero-left {
    padding: 0;
    max-width: 290px;
  }

  #planname {
    margin-top: 30px;
  }
}

@media(max-width: 350px) {
  .hero-left {
    padding: 0;
    max-width: 250px;
  }
}

/* small utilities */
.muted {
  color: var(--muted)
}

.chip {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 700
}

.container,
.hero,
.grid {
  max-width: 100%;
  overflow-x: hidden;
}

.container {
  scroll-margin-top: 100px;
}

/* =========back to top======================== */

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.back-to-top-btn button {
  display: flex;
  position: fixed;
  bottom: 70px;
  right: 5px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: var(--accent-b);
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  animation: jo 1.5s ease-in-out alternate infinite;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 25px;
  transition: transform .1s ease-in-out;
}

@keyframes jo {
  0% {
    transform: scale(.7);
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

.back-to-top-btn button:hover {
  transform: scale(1.05);
}



/* ================WHATSAPP=============== */

.whatsapp img {
  border-radius: 100%;
  width: 50px;
}


.whatsapp {
  display: flex;
  position: fixed;
  bottom: 40px;
  left: 5px;
  z-index: 99;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  animation: vibrate 2s linear infinite;
}

@keyframes vibrate {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-3px);
  }

  40% {
    transform: translate(3px);
  }

  60% {
    transform: translate(-3px);
  }

  80% {
    transform: translate(3px);
  }

  100% {
    transform: translate(0);
  }
}


.whatsapp-msg {
  display: flex;
  position: fixed;
  bottom: 117px;
  left: 50px;
  z-index: 99;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  border-radius: 100%;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  height: 10px;
  width: 10px;
  background-color: red;
  animation: beat 7s infinite;
}


@keyframes beat {


  20% {
    transform: translateY(-3px);
  }

  40% {
    transform: translateY(3px);
  }



  80% {
    transform: translateY(3px);
  }

}

.whatsapp-msg p {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--roboto);
}


input[type=radio] {
  appearance: none;
  width: 4px;
  height: 4px;
  border: 2px solid #555;
  border-radius: 1px;
  padding: 6px;
}

input[type=radio]:checked {
  background: #007bff;
}


.one {
  display: flex;
  position: fixed;
  bottom: 40px;
  right: 5px;
  z-index: 99;
  border: none;
  outline: none;
  /* background-color: var(--accent-b); */
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  /* color: red; */
}



     
    /* ===== Language Popup ===== */
    
   
#languagePopup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popupContent {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  color: black;
}

#languageSearch {
  margin-top: 15px;
  padding: 10px;
  font-size: 16px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ccc;
  color: black;
  
}

#languageSelect {
  margin-top: 15px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #000;
  border-radius: 5px;
  border: 1px solid #ccc;
}

#proceedBtn {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #10ABD6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#proceedBtn:hover {
  background-color: #0c91b6;
}

    
    
