* {
  font-family: "Inter", sans-serif;
}

body {
  background: #f8fafc;
  color: #111;
  
}

/* TOPBAR */
.topbar-premium {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-size: 14px;
  padding: 8px 0;
}

/* LEFT */
.topbar-left {
  list-style: none;
  display: flex;
  gap: 22px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.topbar-left li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
}

/* RIGHT */
.topbar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

/* AUTH */
.topbar-auth {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-auth a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.topbar-auth a:hover {
  text-decoration: underline;
}

/* LANGUAGE */
.topbar-lang select {
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  outline: none;
  font-size: 13px;
}

.topbar-lang select option {
  color: #000;
}

/* SOCIAL */
.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  margin-left: 4px;
  transition: 0.3s;
}

.topbar-social a:hover {
  background: #fff;
  color: #2563eb;
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .topbar-premium {
    display: none;
  }
}


/* HEADER */
/* MAIN HEADER */
.main-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 998;
  transition: 0.3s;
}

/* LOGO */
.dvkvf-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* NAV LINKS */
.main-header .nav-link {
  font-weight: 600;
  color: #374151;
  position: relative;
  padding: 10px 12px;
  transition: 0.3s;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
  color: #2563eb;
}

/* UNDERLINE EFFECT */
.main-header .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  transform: translateX(-50%);
  transition: 0.3s;
}

.main-header .nav-link:hover::after,
.main-header .nav-link.active::after {
  width: 60%;
}

/* CTA BUTTON */
.btn-gradient {
  padding: 10px 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-weight: 700;
  border: none;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.35);
  color: #fff;
}

/* CUSTOM TOGGLER */
.custom-toggler {
  border: none;
  outline: none;
  padding: 0;
}

.custom-toggler span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #111827;
  border-radius: 2px;
}

/* MOBILE MENU */
@media (max-width: 991px) {
  .main-header .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    margin-top: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  }

  .btn-gradient {
    width: 100%;
    text-align: center;
  }

  .dvkvf-logo {
    height: 42px;
  }
}



/* HERO SECTION */
.hero-startup-bg {
  position: relative;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Dark overlay for readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,6,23,0.85), rgba(2,6,23,0.4));
  z-index: 1;
}

/* Content above overlay */
.hero-content {
  position: relative;
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Heading */
.hero-startup-bg h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-startup-bg h1 span {
  background: linear-gradient(90deg, #22c55e, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text */
.hero-startup-bg p {
  font-size: 18px;
  max-width: 620px;
  color: #e2e8f0;
  margin-bottom: 28px;
}

/* Buttons */
.hero-buttons .btn{
  background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}
.hero-buttons .btn:hover {
  transform: translateY(-2px);
}

.hero-buttons .btn1 {
     border-radius: 50px;
    padding: 14px 90px;
    font-weight: 600;
    margin-right: 10px;
    transition: 0.3s;
    background: #ffffff;
}
a.btn1 {
    text-decoration: none;
}
.hero-buttons .btn1:hover{
  transform: translateY(-2px);
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #000;
}
/* Responsive */
@media (max-width: 992px) {
  .hero-startup-bg h1 {
    font-size: 36px;
  }
  .hero-startup-bg {
    min-height: 80vh;
  }
}

/* ABOUT SECTION */
.about-startup-pro {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Badge */
.about-badge-pro {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Title */
.about-title-pro {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: #0f172a;
}

.about-title-pro span {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Description */
.about-desc-pro {
  margin-top: 16px;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

/* Features */
.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  font-weight: 600;
  transition: 0.3s;
}

.feature-box i {
  font-size: 18px;
  color: #2563eb;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Button */
.btn-gradient {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
  color: #000;
}

/* Right Visual */
.about-visual-pro {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: auto;
}

/* Main Image */
.about-main-img img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

/* Floating Cards */
.stat-card {
  position: absolute;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  text-align: center;
}

.stat-card h4 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 13px;
  color: #64748b;
}

/* Card Positions */
.stat-card.one {
  top: 20px;
  left: -40px;
}

.stat-card.two {
  bottom: 40px;
  right: -30px;
}

.stat-card.three {
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
}

/* Glow Effects */
.glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.glow.g1 {
  background: #2563eb;
  top: -40px;
  left: -40px;
}

.glow.g2 {
  background: #22c55e;
  bottom: -40px;
  right: -40px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-title-pro {
    font-size: 32px;
  }

  .stat-card {
    display: none;
  }
}
/* ===========SERVICE SECTION=========== */
.service-slider-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Heading */
.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
}

.section-desc {
  font-size: 16px;
  color: #475569;
  max-width: 700px;
  margin: auto;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #64748b;
}

/* Carousel Buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #2563eb;
  border-radius: 50%;
  padding: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card img {
    height: 180px;
  }
}




/* =============CAUSE SECTION =============== */
.cause-startup {
  background: #f8fafc;
}

/* Header */
.section-badge {
  display: inline-block;
  background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 17px;
  color: #475569;
  max-width: 800px;
  margin: auto;
}

/* Cards */
.cause-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cause-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
}

/* Image */
.cause-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* Content */
.cause-content {
  padding: 22px;
  flex-grow: 1;
}

.cause-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.cause-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Button */
.cause-btn {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: 0.3s;
  text-decoration: none;  
}
.cause-btn:hover {
  transform: translateY(-2px);
  color: #000;
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* Responsive */
@media (max-width: 992px) {
  .section-title {
    font-size: 32px;
  }
  .cause-img img {
    height: 180px;
  }
}

/* =======EVENTS SECTION========== */
.events-area-premium {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
}

/* Section Title */
.section-title .sub-title {
  background: linear-gradient(90deg, #2563eb, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 800;
  color: #0f172a;
}

/* Event Card */
.events-card-premium {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.events-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.15);
}

/* Image */
.events-image-premium {
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
}

/* Speaker Card */
.author-card-premium {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  padding: 30px;
  border-radius: 18px;
}

.author-card-premium h5 {
  font-size: 20px;
  font-weight: 700;
}

.author-card-premium span {
  font-size: 15px;
  opacity: 0.9;
}

/* Speaker Images */
.speaker-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}

.speaker-list li {
  margin-left: -10px;
}

.speaker-list img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* Content */
.events-content-premium h3 {
  font-size: 26px;
  font-weight: 800;
  color: #0f172a;
}

.event-info {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  color: #2563eb;
  font-weight: 600;
}

.events-content-premium p {
  color: #64748b;
  font-size: 16px;
  margin-bottom: 15px;
}

/* Button */
.btn-premium {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-premium:hover {
  transform: translateX(5px);
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .events-content-premium h3 {
    font-size: 22px;
  }
}


/* =======PARTNER SECTION============ */
.logo-slider-section {
  position: relative;
  padding: 28px 0;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  overflow: hidden;
}

/* Soft background glow */
.logo-slider-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

.logo-slider-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  filter: blur(120px);
  bottom: -100px;
  right: -100px;
}

.logo-slider-section .container {
  position: relative;
  z-index: 2;
}

/* Main Logo */
.main-logo img {
  width: 158px;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 12px;
}

/* Title */
.logo-title {
  color: #000;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* Slider */
.logo-slider {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.logo-item {
  background: #fff;
  padding: 15px 30px;
  margin: 0 15px;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Animation */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-title {
    font-size: 24px;
  }
  .logo-item img {
    height: 30px;
  }
}


/* =======TESTIMONIAL SECTION============== */
.testimonial-ultra {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Glow background */
.testimonial-ultra::before,
.testimonial-ultra::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
}

.testimonial-ultra::before {
  background: rgba(37, 99, 235, 0.25);
  top: -100px;
  left: -100px;
}

.testimonial-ultra::after {
  background: rgba(34, 197, 94, 0.25);
  bottom: -100px;
  right: -100px;
}

.testimonial-ultra .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.tu-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 30px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.tu-title {
  font-size: 42px;
  font-weight: 800;
  color: #0f172a;
}

.tu-desc {
  max-width: 620px;
  margin: 12px auto 0;
  font-size: 16px;
  color: #64748b;
}

/* Card */
.tu-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 45px;
  box-shadow: 0 30px 90px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 32px;
  transition: 0.5s ease;
}

.swiper-slide-active .tu-card {
  transform: scale(1.02);
}

/* Image */
.tu-img img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid transparent;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  padding: 4px;
}

/* Text */
.tu-content p {
  font-size: 17px;
  color: #475569;
  margin: 14px 0 18px;
  line-height: 1.7;
}

.tu-content h5 {
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
}

.tu-content span {
  font-size: 14px;
  color: #22c55e;
  font-weight: 600;
}

/* Stars */
.tu-stars {
  color: #facc15;
  font-size: 18px;
}

/* Premium dots */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  opacity: 1;
  transition: 0.3s;
}

.swiper-pagination-bullet-active {
  width: 26px;
  border-radius: 20px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
}

/* Responsive */
@media (max-width: 768px) {
  .tu-card {
    flex-direction: column;
    text-align: center;
    padding: 28px;
  }

  .tu-title {
    font-size: 30px;
  }

  .tu-img img {
    width: 110px;
    height: 110px;
  }
}

/* ===========DONATE SECTION=========== */
.cta-fixed {
  position: relative;
  width: 100%;
  min-height: 380px;
  background: url('../images/donate/bg-1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* Perfect Overlay (NO STRIP ISSUE) */
.cta-layer {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(37, 99, 235, 0.75),
    rgba(34, 197, 94, 0.75)
  );
  display: flex;
  align-items: center;
  padding: 100px 0;
}

/* Subtitle */
.cta-sub {
  display: block;
  font-size: 20px;
  font-style: italic;
  color: #000;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Heading */
.cta-heading {
  font-size: 46px;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Button */
.cta-btn-fixed {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 50px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-btn-fixed:hover {
  transform: translateY(-3px);
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 30px;
  }
  .cta-layer {
    padding: 70px 20px;
  }
}

/* ========FOOTER SECTION========== */
.footer-premium {
  /* background: linear-gradient(135deg, #022c22, #064e3b, #022c22); */
  background: #0F172A;
  color: #e5f7f1;
  padding: 90px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Soft background pattern */
.footer-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('public/assets/images/footer-pattern.png') center/cover no-repeat;
  opacity: 0.08;
}

.footer-premium .container {
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo {
  width: 170px;
  margin-bottom: 15px;
}

/* About text */
.footer-brand h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  color: #fff;
}

.footer-brand p {
  font-size: 15px;
  color: #c7e5dd;
  margin-bottom: 20px;
}

/* Button */
.footer-btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 40px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.footer-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}

/* Titles */
.footer-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #22c55e);
  position: absolute;
  left: 0;
  bottom: -8px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #c7e5dd;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 5px;
}

/* Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
li a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

li a:hover {
  color: #00c896; 
}

.footer-contact li {
  font-size: 14px;
  color: #c7e5dd;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Payment icons */
.payment-icons img {
  height: 32px;
  margin-right: 10px;
  background: #fff;
  padding: 4px 6px;
  border-radius: 6px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  transform: translateY(-4px) scale(1.05);
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #c7e5dd;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-brand h4 {
    font-size: 18px;
  }
}

/* ====******ABOUT PART*******========= */
/* ============FOR BG============ */
.page-banner-premium {
  position: relative;
  width: 100%;
  min-height: 340px;
  /* 🔥 New Professional Background Image */
  background: url('../images/about/about-4.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Gradient Overlay */
.banner-overlay {
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    120deg,
    rgba(37, 99, 235, 0.75),
    rgba(34, 197, 94, 0.75),
    rgba(0, 0, 0, 0.65)
  ); */
  display: flex;
  align-items: center;
  padding: 110px 0;
}

/* Title */
.page-banner-content h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

/* Breadcrumb */
.pages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}

.pages-list li {
  color: #e0f2fe;
}

.pages-list li a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.pages-list li a:hover {
  color: #22c55e;
}

.pages-list li::after {
  content: "/";
  margin-left: 10px;
  color: rgba(255,255,255,0.6);
}

.pages-list li:last-child::after {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner-content h2 {
    font-size: 32px;
  }

  .banner-overlay {
    padding: 80px 20px;
  }
}
/* ===========ABOUT SECTION========== */
.about-premium-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

/* IMAGE LAYOUT */
.about-image-box {
  position: relative;
}

.about-main-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-small-img {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 220px;
}

.about-small-img img {
  width: 100%;
  border-radius: 16px;
  border: 5px solid #fff;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.about-exp-card {
  position: absolute;
  top: -30px;
  left: -20px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  padding: 18px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.about-exp-card h2 {
  font-size: 36px;
  margin: 0;
}

/* CONTENT STYLE */
.about-content-box {
  padding-left: 10px;
}

.about-tag {
  display: inline-block;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-text {
  font-size: 16px;
  color: #374151;
  margin-bottom: 14px;
  font-style: italic;
}

/* Features */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 30px;
}

.feature-item {
  background: #f1f5f9;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  transition: 0.3s;
}

.feature-item:hover {
  background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
}
.about-counter h3 {
  font-size: 28px;
  color: #2563eb;
}
/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.about-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-small-img {
    display: none;
  }
  .about-exp-card {
    left: 0;
  }
}

/* ==========About SECTION 2ND PART======= */
.core-values-section{
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.section-tag{
  color: var(--theme-primary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.section-title{
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

.values-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 25px;
}

.value-item{
  background: linear-gradient(135deg, #2563eb, #22c55e);
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: .3s;
}

.value-item:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.value-item h5{
  color: var(--theme-primary);
  font-weight: 600;
  margin-bottom: 6px;
}

.value-item p{
  font-size: 14px;
  margin-bottom: 4px;
}

.btn-theme{
      background: linear-gradient(90deg, #2563eb, #22c55e);
  color: #fff;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.btn-theme:hover{
  background: linear-gradient(135deg, #00c2ff, #0d6efd);
  color: #fff;
}

.contact-box{
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.contact-box:hover{
      background: linear-gradient(90deg, #2563eb, #22c55e);
}
.contact-box i{
  color: var(--theme-primary);
  font-size: 22px;
}

.contact-box a{
  font-weight: 600;
  color: #000;
  text-decoration: none;
}

/* Image Layout */

.core-image-wrapper{
  position: relative;
  width: 100%;
  height: 100%;
}

.img-main img{
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.img-overlay{
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 45%;
}

.img-overlay img{
  width: 100%;
  border-radius: 16px;
  border: 6px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.play-btn{
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.play-btn a{
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0d6efd, #00c2ff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
/* ==========About SECTION 2ND PART======= */

/* ===========ABOUT SECTION 3RD PART========== */
.founding-story {
  background: linear-gradient(135deg, #0d6efd, #00c2ff, #00ffa6);
  position: relative;
  overflow: hidden;
}

.founding-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.founding-story .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.story-subtitle {
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
}

.story-title {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-top: 10px;
}

.story-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ffa6, #00c2ff);
  margin: 20px auto 0;
  border-radius: 10px;
}

/* Story Box */

.story-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px;
  border-radius: 20px;
  color: #000;
  line-height: 1.8;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}

.story-box p {
  margin-bottom: 14px;
  font-size: 17px;
}

/* Image Section */

.story-image-box {
  position: relative;
}

.story-main-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.story-overlay-img {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 45%;
  border-radius: 16px;
  border: 5px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Badge */

.story-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #00c2ff, #00ffa6);
  color: #000;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.story-badge span {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

/* Responsive */

@media(max-width: 991px) {
  .story-title {
    font-size: 30px;
  }
  .story-overlay-img {
    display: none;
  }
}

/* ===========ABOUT SECTION 3RD PART========== */

 /* ======********CONTACT PART*********====== */
 .contact-premium-section {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

/* CONTACT INFO CARDS */
.contact-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(37,99,235,0.2);
}

.icon-box {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.icon-box1 {
  width: 70px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
}
.info-content h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.info-content a {
  text-decoration: none;
  color: #374151;
  font-size: 15px;
  transition: 0.3s;
}

.info-content a:hover {
  color: #2563eb;
}

/* MAP BOX */
.contact-map-box {
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.95);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  backdrop-filter: blur(10px);
}

.contact-form-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #111827;
}

.contact-form-box .form-control {
  border-radius: 12px;
  padding: 12px 15px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.contact-form-box .form-control:focus {
  border-color: #2563eb;
  box-shadow: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form-box h2 {
    font-size: 28px;
  }
}
/* ==========************BLOG PART***********========= */
.blog-premium-section {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.blog-subtitle {
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
}

.blog-title {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
}

/* BLOG CARD */
.blog-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(37,99,235,0.2);
}

.blog-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin-bottom: 12px;
  font-size: 14px;
  color: #6b7280;
}

.blog-meta i {
  color: #2563eb;
}

.blog-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.blog-body p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 15px;
}

/* BUTTON */
.blog-btn {
    background: linear-gradient(90deg, #2563eb, #22c55e);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
    text-decoration: none;
}

.blog-btn:hover {
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .blog-title {
    font-size: 28px;
  }
}
/* ========*********OLYMPIAD PART*********=========== */
.olympiad-premium-section {
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

.olympiad-subtitle {
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
}

.olympiad-title {
  font-size: 38px;
  font-weight: 800;
  color: #111827;
}

.olympiad-desc {
  max-width: 750px;
  margin: 10px auto 0;
  color: #4b5563;
  font-size: 16px;
}

/* CARD STYLE */
.olympiad-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* .olympiad-card.active {
  border: 2px solid #2563eb;
} */

.olympiad-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(37,99,235,0.2);
   border: 2px solid #2563eb;
}

/* IMAGE */
.olympiad-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: 0.4s;
}

.olympiad-card:hover .olympiad-img img {
  transform: scale(1.08);
}

/* BODY */
.olympiad-body {
  padding: 22px;
}

.olympiad-body h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.olympiad-body p {
  font-size: 15px;
  color: #4b5563;
  margin-bottom: 15px;
}

/* BUTTON */
.olympiad-btn {
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
  transition: 0.3s;
}

.olympiad-btn:hover {
  color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .olympiad-title {
    font-size: 28px;
  }
}

/* ======*******LOGIN PART********========== */
/* BACKGROUND */
.login-premium-section {
  min-height: 100vh;
  /* background: url('https://images.unsplash.com/photo-1535223289827-42f1e9919769?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; */
  position: relative;
}

/* .login-overlay {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(37,99,235,0.7), rgba(34,197,94,0.7), rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
} */

/* LOGIN CARD */
.login-card-premium {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: fadeUp 0.6s ease;
}

.login-card-premium h3 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
}

/* INPUT */
.login-input {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.login-input:focus {
  border-color: #2563eb;
  box-shadow: none;
}

/* FORGOT LINK */
.forgot-link {
  font-size: 14px;
  font-weight: 600;
  color: #2563eb;
  text-decoration: none;
}

.forgot-link:hover {
  color: #22c55e;
}

/* BUTTON */
.login-btn {
  border: none;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* DIVIDER */
.login-divider {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  position: relative;
}

.login-divider::before,
.login-divider::after {
  content: "";
  width: 35%;
  height: 1px;
  background: #d1d5db;
  position: absolute;
  top: 50%;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

/* SOCIAL BUTTONS */
.social-login {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social-login.google {
  background: #ea4335;
}

.social-login.facebook {
  background: #1877f2;
}

.social-login:hover {
  transform: scale(1.1);
}

/* SIGNUP LINK */
.signup-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.signup-link:hover {
  color: #22c55e;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .login-card-premium {
    padding: 25px;
  }
}

/* =======*****REGISTER PART*******========== */
/* BACKGROUND */
/* .register-premium-section {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  position: relative;
} */

/* .register-overlay {
  min-height: 100vh;
  background: linear-gradient(120deg, rgba(37,99,235,0.7), rgba(34,197,94,0.7), rgba(0,0,0,0.7));
  display: flex;
  align-items: center;
} */

/* CARD */
.register-card-premium {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  animation: fadeUp 0.6s ease;
}

.register-card-premium h3 {
  font-size: 30px;
  font-weight: 800;
  color: #111827;
}

/* INPUT */
.register-input {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.register-input:focus {
  border-color: #2563eb;
  box-shadow: none;
}

/* BUTTON */
.register-btn {
  border: none;
  padding: 12px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* DIVIDER */
.register-divider {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  position: relative;
}

.register-divider::before,
.register-divider::after {
  content: "";
  width: 35%;
  height: 1px;
  background: #d1d5db;
  position: absolute;
  top: 50%;
}

.register-divider::before {
  left: 0;
}

.register-divider::after {
  right: 0;
}

/* SOCIAL BUTTONS */
.social-register {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: 0.3s;
}

.social-register.google {
  background: #ea4335;
}

.social-register.facebook {
  background: #1877f2;
}

.social-register:hover {
  transform: scale(1.1);
}

/* LOGIN LINK */
.login-link {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.login-link:hover {
  color: #22c55e;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .register-card-premium {
    padding: 25px;
  }
}
/* <!-- Start Donation Area -->  */
.donate-ultra-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
}

/* TITLE */
.donate-subtitle {
  color: #22c55e;
  font-weight: 600;
  font-size: 16px;
}

.donate-title {
  font-size: 40px;
  font-weight: 800;
  color: #111827;
}

.donate-desc {
  max-width: 650px;
  margin: 10px auto 0;
  color: #4b5563;
}

/* FORM BOX */
.donate-form-box {
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  padding: 35px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* INPUT */
.donate-input {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  transition: 0.3s;
}

.donate-input:focus {
  border-color: #2563eb;
  box-shadow: none;
}

/* AMOUNT BUTTONS */
.donate-amounts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.amount-btn {
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  cursor: pointer;
}

.amount-btn:hover,
.amount-btn.active {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  border-color: transparent;
}

/* PAYMENT */
.donate-payments {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
}

/* BUTTON */
.donate-btn {
  border: none;
  padding: 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  transition: 0.3s;
}

.donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37,99,235,0.4);
}

/* IMAGE BOX (SAME HEIGHT AS FORM) */
.donate-image-box {
  position: relative;
  border-radius: 22px;
  background: url('../images/donate/image-2.jpg') center/cover no-repeat;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: hidden;
}

/* OVERLAY */
.donate-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.75));
}

.donate-overlay {
  position: relative;
  color: #fff;
  padding: 30px;
}

.donate-overlay h3 {
  font-size: 28px;
  font-weight: 800;
}

.donate-overlay p {
  font-size: 15px;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .donate-title {
    font-size: 30px;
  }
  .donate-image-box {
    min-height: 300px;
  }
}
/* <!-- =======TERM AND CONDITIONS======== --> */
/* TERMS SECTION */
.terms-section {
  background: linear-gradient(135deg, #f7fbff, #f1fff8);
  position: relative;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #00c2ff, #00c896);
  color: #fff;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a2540;
}

.section-subtitle {
  max-width: 600px;
  margin: 10px auto 0;
  color: #6b7280;
  font-size: 16px;
}

/* Wrapper */
.terms-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

/* Card Style */
.terms-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-left: 6px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.terms-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,194,255,0.05), rgba(0,200,150,0.05));
  opacity: 0;
  transition: 0.4s;
}

.terms-card:hover::before {
  opacity: 1;
}

.terms-card:hover {
  transform: translateY(-6px);
  border-left-color: #00c896;
}

/* Headings */
.terms-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0a2540;
}

/* Text */
.terms-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Highlight Card */
.highlight-card {
  background: linear-gradient(135deg, #00c2ff, #00c896);
  color: #fff;
}

.highlight-card h4,
.highlight-card p {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
  .terms-card {
    padding: 22px;
  }
}

/* <!-- =======TERM AND CONDITIONS======== --> */

/* <!-- Start privacy policy Page Banner Area --> */
.privacy-premium {
  background: linear-gradient(135deg, #f6fbff, #f0fff7);
}

/* Heading */
.policy-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  background: linear-gradient(90deg, #00c2ff, #00c896);
  color: #fff;
  margin-bottom: 12px;
}

.policy-title {
  font-size: 42px;
  font-weight: 800;
  color: #0a2540;
}

.policy-subtitle {
  max-width: 650px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #6b7280;
}

/* Wrapper */
.policy-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

/* Card */
.policy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  border-left: 6px solid transparent;
  transition: 0.4s ease;
  position: relative;
}

.policy-card:hover {
  transform: translateY(-6px);
  border-left-color: #00c896;
}

/* Title */
.policy-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 12px;
}

/* Text */
.policy-card p {
  font-size: 15.5px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 10px;
}

/* Highlight Card */
.policy-card.highlight {
  background: linear-gradient(135deg, #2563eb, #22c55e);
  color: #fff;
}

.policy-card.highlight h4,
.policy-card.highlight p,
.policy-card.highlight strong {
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .policy-title {
    font-size: 30px;
  }
  .policy-card {
    padding: 20px;
  }
}

/* <!-- Start privacy policy Page Banner Area --> */