* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'kumbh sans', sans-serif;
scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 0.5rem;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: #00dbde;
  border-radius: 5rem;
}

.navbar {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 2rem;
}

.logo {
    height: 80px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .logo {
        height: 80px;
    }
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
}

.navbar__item {
    height: 80px;
}

.navbar__link {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 125px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
    cursor: pointer;
    transition: 0.5s;
}

.navbar__btn:hover {
    transform: scale(1.1);
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: #fc00ff;  
    background: -webkit-linear-gradient(to right, #00dbde, #fc00ff);  
    background: linear-gradient(to right, #00dbde, #fc00ff); 
    color: #fff;
    transition: all 0.3s ease;
}

.navbar__link:hover {
    color: #fc00ff;
    transition: all 0.3s ease;
}

@media screen and (max-width: 960px) {
    .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    padding: 0 1rem;
}

.navbar__menu {
    display: none;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position:absolute;
    top: none;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: -1;
    left: 0;
    background: #000000;
}

.navbar__menu.active {
    background: #000000;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: 60vh;
    font-size: 1.6rem;
    display: grid;
}

.navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
}

.navbar__item {
    width: 100%;
}

.navbar__link {
    text-align: center;
    padding: 2rem;
    width: 100%;
    display: table;
}

.navbar__btn {
    padding-bottom: 2rem;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: 80px;
    margin: 0;
}
#mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
}

.navbar__toggle .bar {
    display: block;
    cursor: pointer;
    background: #fff;
}

#mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
}

#mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

#mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);

}

}

.hero {
    background: #000046;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #1CB5E0, #000046);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 650px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.background__image {
  max-width: 400px;
  width: 100%;
  max-height: 500px;
  height: 100%;
  background: url(kkgen.webp) center / cover no-repeat;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}


.hero__container {
    flex-direction: column;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
    max-width: 100%;
    max-height: 100%;
}

.hero__heading {
    font-size: 40px;
    color: #fff;
    cursor: text;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  color: #fff;
}

.btn {
    width: 100%;
    height: 30px;
    z-index: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
}

.main__btn  {
    font-size: 15px;
    color: #fff;
    padding: 10px 10px;
    text-decoration: none;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 50px;
}

.hero__heading span {
background: #ee0979;  
background: -webkit-linear-gradient(to right, #ff6a00, #ee0979);  
background: linear-gradient(to right, #ff6a00, #ee0979); 
background-size: 100%;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-fill-color: transparent;
-mo-text-fill-color: transparent;
}


@media (max-width: 376px) {
    .hero {
        min-height: 600px;
    }
}

@media (max-width: 768px) {
  .hero__container {
    height: auto;
    min-height: 150px;
    padding: 0 1.5rem; 
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }

  .hero__heading {
    margin-top: 0;
  }

  .hero-overlay {
    display: none;
  }

  .hero__heading span {
    font-size: 45px;
  }

}

.main {
    background: #000428;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 0 0;
}

.main__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    justify-content: center;
    height: 350px;
    width: 100%;
    padding: 0;
}

.main__container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 400px;
    width: 100%;
    padding: 0;
}

.main__item1 {
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.main__item2 {
  height: 350px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.main__content {
    display: flex;
    flex-direction: column;
    color: #fff;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.about__item {
    height: 350px;
    max-width: 500px;
    border-radius: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: transparent;
    text-align: center;
}

.item1 {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.item2 {
  height: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.item3 {
  height: 100%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: transparent;
}

.about__image1 {
    inset: 0;
    object-fit: cover;
    z-index: 0;
    height: 300px;
    width: 300px;
}

.about__image2 {
    inset: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;

}

.about__item p {
    font-size: 15px;
    font-weight: 10px;
    padding: 10px;
}

.about__item h3 {
    font-size: 20px;
    font-weight: 2px;
}

.about__item h2 {
    font-size: 20px;
    font-weight: 2px;
}

.about__button {
    display: flex;
    background: transparent;
    align-items: center;
    justify-content: center;
}


.main__btn a {
    position: relative;
    z-index: 2;
    color: #fff;
    text-decoration: none;
}

.main__btn:hover {
    transform: scale(1.08);
}

.main__btn:hover:after {
    width: 100%;
}

@media (max-width: 766px) {
    .main {
        padding: 0rem 0;
        height: 100%;
        width: 100%;
    }
    .main__btn {
        padding: 9px 23px;
        margin: 2.5rem 0;
    }
    .main__content {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .main__container {
        display: flex;
        width: 100%;
        height: 250px;
    }
    .main__container2 {
        display: flex;
        width: 100%;
        height: 230px;
    }
    .about__item {
        width: auto;
        height: auto;
    }
    .about__image1 {
        width: auto;
        height: 150px;
    }
    .about__image2 {
      max-width: 300px;
      min-width: 170px;
      max-height: 150px;
    }
    .about__item p {
        font-size: 10px;
        font-weight: 1px;
    }
    .about__item h3 {
        font-size: 13px;
        font-weight: 2px;
    }
    .about__item h4 {
        font-size: 13px;
        font-weight: 2px;
    }
    .about__button {
      height: 100%;
    }
}

.footer__container {
    background: #000428;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.footer__logo {
    color: #131313;
    display: flex;
    align-items: center;
    cursor: pointer;
    height: 100px;
}

.website__rights {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 200;
}

@media screen and (max-width: 820px) {
    #footer__logo {
        margin-bottom: 2rem;
    }

    .website__rights {
        margin-bottom: 2rem;
    }

    .footer__container {
        height: 100%;

    }
}

html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden;
    background: #000000;
}

body {
    padding-top: 100px;
}

.read-hero {
  position: relative;
  height: 90vh;
  background: url("readmore.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.read-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0,0,0,0.4), #000);
}

.read-hero__content {
  position: relative;
  text-align: center;
  max-width: 700px;
  padding: 20px;
}

.read-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 1px;
  color: #fff;
}

.read-hero p {
    color: #fff;
  margin-top: 20px;
  font-size: 1.1rem;
  opacity: 0.85;
}


.read-content {
    background: #131313;
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 90px;
}


.read-block h2 {
  font-size: 2rem;
  margin-bottom: 15px;
      color: #fff;
}

.read-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
      color: #fff;
}


.read-quote {
  padding: 60px 30px;
  border-left: 4px solid #ffd700;
  background: linear-gradient(90deg, rgba(255,215,0,0.05), transparent);
    
}

.read-quote p {
  font-size: 1.4rem;
  font-style: italic;
    color: #fff;
}

.read-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}


.read-ending {
  text-align: center;
  padding-top: 60px;
}

.read-ending h3 {
  font-size: 2.2rem;
  margin-bottom: 15px;
    color: #fff;
}

.read-ending p {
  font-size: 1.1rem;
  opacity: 0.85;
    color: #fff;
}

.read__btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-decoration: none;

  background: linear-gradient(135deg, #6a11cb, #2575fc);
  border-radius: 50px;

  box-shadow: 0 10px 25px rgba(37, 117, 252, 0.35);
  transition: all 0.3s ease;
}


.read__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(37, 117, 252, 0.5);
  background: linear-gradient(135deg, #2575fc, #6a11cb);
}



@media (max-width: 768px) {
  .read-content {
    gap: 60px;
  }

  .read-quote p {
    font-size: 1.2rem;
  }
}


.about {
  padding: 100px 10%;
  text-align: center;
}

.about h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}


.services__home {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000428;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  width: 100%;
  border: 2px solid #000;
}

.services-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px;
  width: 100%;
}

.service-cards {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 420px;
  padding: 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #121212;
  border-radius: 20px;
  position: relative;
}

.service__card-glow {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

/* Border glow layer */
.service-cards::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  box-shadow:
    0 0 0 1px rgba(110, 231, 255, 0.25),
    0 0 18px rgb(82, 203, 243),
    0 0 36px rgb(76, 206, 223);

  opacity: 0;
  transition: opacity 0.35s ease;
}

/* Hover effect (optional) */
.service-cards:hover::after {
  opacity: 1;
}



.scroll-btn {
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.65);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  z-index: 10;
}

.scroll-btn i {
  font-size: 18px;
}

@media (max-width: 1300px) {
  .scroll-btn {
    position: absolute;
    right: 6px;
  }
}

.service__image {
    height: 200px;
    width: 100%;
}

.image-container1 {
    background: url("A\ professional.webp") center/cover no-repeat;
    height: 200px;
    min-width: 200px;
    max-width: 400px;
}

.image-container2 {
    background: url("money\ videos\ t.png") center/cover no-repeat;
    height: 200px;
    min-width: 200px;
    max-width: 400px;
}

.image-container3 {
    background: url("manifestation\ books.webp") center/cover no-repeat;
    height: 200px;
    min-width: 200px;
    max-width: 400px;
}

.service-cards h2 {
    color: #fff;
    font-size: 15px;
    padding: 20px 5px;

}

.service-cards p {
    color: #fff;
    font-size: 11px;
    font-weight: 4px;
    padding-top: 6px;
    padding:0 5px;
}

.image__btn {
    text-decoration: none;
    padding: 20px 5px;
    font-size: 20px;
    text-align: right;
    color: #f12711;
}

.image__btn:hover {
    color: #f5af19;
}

@media (max-width: 1300px) {
  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-content: left;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 2rem;
    gap: 20px;
  }

  ::-webkit-scrollbar {
  display: none;
  }

  .service-cards {
    flex: 0 0 300px;
  }

  .services-grid::-webkit-scrollbar {
    height: 6px;
    width: 2px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00dbde, #fc00ff);
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .services__home {
    height: 100%;
    width: 100%;
  }
}

@media (max-width: 460px) {
  .service-cards {
    height: 410px;
    width: 300px;
  }

  .service__card-glow {
    height: 410px;
    width: 300px;
  }
}

.services {
    height: 1000px;
    width: 100%;
    background: #000428;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.service__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    gap: 40px;
    padding: 2rem 0;
}

.service__card {
    display: flex;
    flex-direction: column;
    height: 250px;
    max-width: 300px;
    min-width: 100px;
    padding: 0 20px;
    
}

.image__container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image__container1 {
    background:  url("book.png") center / cover no-repeat;
    background-color: transparent;
    height: 50px;
    width: 60px;
    object-fit: cover;
}

.image__container2 {
    background:  url("money\ icon.png") center / cover no-repeat;
    background-color: transparent;
    height: 50px;
    width: 35px;
    object-fit: cover;
}

.image__container3 {
    background:  url("youtube.png") center / cover no-repeat;
    background-color: transparent;
    height: 40px;
    width: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}

.image__container4 {
    background:  url("programming.png") center / cover no-repeat;
    background-color: transparent;
    height: 60px;
    width: 80px;
    object-fit: cover;
}

.image__container5 {
    background:  url("perception\ icon.png") center / cover no-repeat;
    background-color: transparent;
    height: 60px;
    width: 60px;
    object-fit: cover;
}

.image__container6 {
    background:  url("activation.png") center / cover no-repeat;
    background-color: transparent;
    height: 60px;
    width: 60px;
    object-fit: cover;
}

.service__card h2 {
    color: #fff;
    font-size: 14px;
    text-align: center;
    height: 40px;
    margin-bottom: 0;
    margin-top: 10px;
}

.service__card p {
    color: #fff;
    font-size: 12px;
    text-align: center;
    margin-top: 0;
    
}

.services__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px 20px;
}

.services__content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #6ee7ff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 5px;
}

@media (max-width: 767px) {
  .services__content h1 {
    font-size: 2.2rem;
  }
  .service__card h2 {
    font-size: 6px;
    height: 5px;
  }
  .service__card p {
    font-size: 7px;
    font-weight: 2px;
    height: 130px;
    padding: 10px 0;
    line-height: 1.1;
  }
  .services {
    height: 600px;
  }
  .service__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;
    column-gap: 0;
    padding: 4px 10px;
  }
  .service__card {
    height: 200px;
    width: 100px;
    padding: 0 0;
  }
}

.video-container {
    height: 400px;
    width: 100%;
    background: transparent;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 10px 10px;
}

.video-card {
    background: transparent;
    height: 300px;
    max-width: 400px;
    min-width: 240px;
    
    
}

.card1 {
    height: 100%;
    width: 100%;
    background: url("image\ 1.png") center / cover no-repeat;
}

.card2 {
    height: 100%;
    width: 100%;
    background: url("image\ 1.png") center / cover no-repeat;
}

.card3 {
    height: 100%;
    width: 100%;
    background: url("image\ 1.png") center / cover no-repeat;
}

@media (max-width: 768px) {
    .video-container {
        height: 200px;
    }
}

.video__page {
    height: 1000px;
    background: #131313;
    display: flex;
    flex-direction: column;
}

.video__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    height: 320px;
    width: 100%;
    padding: 10px 10px;
}

.video__card {
    display: flex;
    align-items: center;
    width: 100%;
    height: 300px;
    background: #000000;
}

@media (max-width: 768px) {
    .video__page {
        height: 100%;
    }
    .video__container {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .video__card {
        height: 320px;
    }
}

.donate html, body {
  background: #000428;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #004e92, #000428);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #004e92, #000428); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.amount-row button {
  flex: 1;
  background: #005f5f;
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 18px;
  cursor: pointer;
}

.conversion {
  opacity: 0.7;
  margin-bottom: 20px;
}

.donate-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 20px;
  height: 100%;
}


.amount-row {
  display: flex;
  gap: 24px;
  margin: 40px 0;
}

.amount-row input {
  flex: 1;
  padding: 22px;
  font-size: 28px;
  background: #2c2c2c;
  border: 2px solid #999;
  border-radius: 16px;
  color: white;
}

input::placeholder {
  color: rgba(255,255,255,0.5);
  font-size: 16px;
  text-align: center;
}


.approx {
  color: #9a9a9a;
  font-size: 18px;
}

.currency-row {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-top: 40px;
}

select {
  padding: 14px 20px;
  font-size: 18px;
  background: #2c2c2c;
  border: 1px solid #777;
  border-radius: 14px;
  color: white;
}

.currency-select span {
  color: #fff;
}

.country-box {
  background: #2c2c2c;
  color: #fff;
  padding: 18px 28px;
  border-radius: 16px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.suggested {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}

.suggested span {
  color: #fff;
}

.suggest-btn {
  background: #009688;
  border: none;
  height: 30px;
  width: 100px;
  border-radius: 14px;
  font-size: 20px;
  color: white;
  cursor: pointer;
}

@media (max-width: 700px) {
  .amount-row {
    flex-direction: column;
  }
  .currency-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .amount-row button {
    padding: 30px 20px;
  }
  .suggest-btn {
    padding: 4px 8px;
  }
  .country-search-wrap {
    width: 100%;
  }
}

.donate-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 300px;
  width: 100%;
  gap: 10px;
  padding: 40px 10px;
  background: url(99.jpg) center / cover no-repeat;
  object-fit: cover;
}

.donate-bar h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #6ee7ff, #c084fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.donate-bar p {
  text-align: center;
  color: #fff;
  width: 100%;
}

.currency-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.currency-select {
  display: flex;
  align-items: center;
  gap: 14px;
}

.currency-select label {
  color: white;
  font-size: 18px;
  font-weight: 500;
}

#currency {
  width: 180px;
  height: 86px;
  border-radius: 22px;
  border: 1px solid #8b8b8b;
  background: #2e2e2e;
  color: white;
  font-size: 22px;
  padding: 0 20px;
  outline: none;
}

.country-search-wrap {
  position: relative;
}

.country-search-box {
  position: relative;
  width: 360px;
  height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 22px;
  border: 1px solid #8b8b8b;
  background: #2e2e2e;
  padding: 0 20px;
}

#countryFlag {
  font-size: 28px;
  flex-shrink: 0;
}

#countrySearch {
  flex: 1;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: white;
  font-size: 22px;
}

#countrySearch::placeholder {
  color: #bfbfbf;
}

.country-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  max-height: 260px;
  overflow-y: auto;
  background: #2e2e2e;
  border: 1px solid #8b8b8b;
  border-radius: 18px;
  display: none;
  z-index: 1000;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  color: white;
  font-size: 18px;
  cursor: pointer;
}

.country-item:hover {
  background: #0aa6a6;
}

.purchases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 800px;
  align-items: center;
  justify-content: center;
  padding: 10px 30px;
  gap: 20px;
  background: #0f0c29;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #24243e, #302b63, #0f0c29);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #24243e, #302b63, #0f0c29); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}

.purchase__image {
  height: 100%;
  max-height: 500px;

  background: url(finance\ 1.jpg) center / cover no-repeat;
  object-fit: cover;
}

.purchase__text {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  justify-content: center;
 
}

.purchase__text h2 {
  color: #ff6a00;
  font-size: 20px;
}

.purchase__text p {
  font-size: 16px;
  color: #fff;
}

.purchase-btn {
  text-align: right;
  text-decoration: none;
  color: red;
}

.purchase-btn:hover {
  color: #ff6a00;
}

@media (max-width: 768px) {
  .purchases {
    display: flex;
    flex-direction: column;
    padding: 50px 20px;
  }

  .purchase__image {
    height: 100%;
    width: 100%;
  }


  .purchase__text h2 {
    font-size: 15px;
  }
}

.contact {
  display: grid;
  height: 100%;
  width: 100%;
  background: #000046;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #1CB5E0, #000046);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #1CB5E0, #000046); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

 
}

.heading {
  padding: 20px 0;
  gap: 10px;
}

.heading p {
  text-align: center;
  padding-top: 10px;
  color: #fff;
}

.heading h2 {
  text-align: center;
  color: #fff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 10px;
}

.contact-info {
  flex:  1 1 20rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-info h2 {
  font-size: 1.7rem;
  color: #fff;
  text-align: center;
}

.contact-info p {
  margin: 0.5rem 0 1rem;
  text-align: center;
  color: #fff;
}

.address {
 display: flex;
 flex-direction: column;
}

.address i {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 20px;
  color: #fff;
}

.address span {
  font-size: 1rem;
  margin-left: 1rem;
}

.social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.social a {
 font-size: 24px;
 color: #fff;
 margin-right: 1rem;
}

.social a:hover {
  transform: scale(1.10);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0 50px 50px;
}

form input,
textarea {
  width: 100%;
  padding: 17px;
  border-radius: 0.5rem;
  outline: none;
  margin-bottom: 1rem;
  border: 2px solid #1CB5E0;
  box-shadow: 0 4px 4px 2px rgb(14 55 54 / 15%);
}

form input::placeholder,
textarea::placeholder {
  color: #000;
  text-align: left;
}

form textarea {
  resize: none;
  height: 150px;
}

form .submit-btn {
  max-width: 100px;
  height: 40px;
  background: transparent;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid #fff;
  border-radius: 100px;
}

form .submit-btn:hover {
  transform: scale(1.05);
}


@media (max-width: 767px) {
  .contact-container{
    display: flex;
    flex-direction: column;
  }

  .contact-form {
    width: 100%;
  }

  .contact-form form {
    padding: 0 10px 20px;
  }
}



/* {
  outline: 1px solid red;
}*/