/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/

/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

/* @import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700'); */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

@font-face {
  font-family: 'Rubik', sans-serif;
  src: url('../fonts/Rubik/Rubik-Italic-VariableFont_wght.ttf');
  src: url('../fonts/Rubik/Rubik-VariableFont_wght.ttf');
}

/*****---------------------------------------- 1) font-family: 'Rajdhani', sans-serif;
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/

/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(css/font-awesome.min.css);
@import url(meanmenu.css);
@import url(owl.carousel.min.css);
@import url(swiper.min.css);
@import url(slick.css);
@import url(jquery.fancybox.min.css);
@import url(jquery-ui.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- skeleton ---------------------------------------------------------------------*/

* {
  box-sizing: border-box !important;
  transition: ease all 0.5s;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #666666;
  font-size: 14px;
  line-height: 1.80857;
  font-weight: normal;
  overflow-x: hidden;
  font-family: 'Rubik', sans-serif;
  /* padding:110px; */
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0 0 10px 0;
  font-weight: normal;
  line-height: normal;
  color: #111111;
  margin: 0;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 22px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1;
}

button:focus {
  outline: none;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  margin: 20px;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
}

a {
  color: #222222;
  text-decoration: none;
  outline: none !important;
}

a,
.btn {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

img {
  max-width: 100%;
  height: auto;
}

:focus {
  outline: 0;
}

.paddind_bottom_0 {
  padding-bottom: 0 !important;
}

.btn-custom {
  margin-top: 20px;
  background-color: transparent !important;
  border: 2px solid #ddd;
  padding: 12px 40px;
  font-size: 16px;
}

.lead {
  font-size: 18px;
  line-height: 30px;
  color: #767676;
  margin: 0;
  padding: 0;
}

.form-control:focus {
  border-color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

/* Main Navigation Bar Styles */
.navbar {
  background: var(--kindstep-lavender);
  border-radius: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 60px);
  /* leaves side space for floating look */
  position: fixed;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 1000;
  /* padding: 15px 40px; */
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
  /* optional: gives frosted glass effect */
}


.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--kindstep-navy);
  text-decoration: none;
}

.logo i {
  margin-right: 10px;
  font-size: 1.8rem;
}

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

.nav-links li {
  position: relative;
  margin: 0 15px;
}

.nav-links a {
  text-decoration: none;
  color: var(--kindstep-gray-dark);
  font-weight: 400;
  padding: 10px 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-links a i {
  margin-right: 8px;
  font-size: 1.1rem;
}

.nav-links a:hover {
  color: #4f46ba;
}

.nav-links a:active {
  color: var(--kindstep-navy);
}

.navbar ul li a.active {
  color: var(--kindstep-peach);
  /* or your brand color */
  font-weight: 600;
  /* border-bottom: 3px solid #000080;  */
}


.nav-links a:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--kindstep-peach);
  border-radius: 3px;
  animation: underline 0.3s ease forwards;
}

@keyframes underline {
  from {
    width: 0;
  }

  to {
    width: 50%;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
}

.search-box {
  position: relative;
  margin-right: 20px;
}

.search-box input {
  padding: 10px 15px 10px 40px;
  border: none;
  background: #f1f3f6;
  border-radius: 50px;
  outline: none;
  width: 220px;
  transition: all 0.3s ease;
}

.search-box input:focus {
  box-shadow: 0 0 0 2px #4f46ba;
}

.search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

.btn {
  padding: 10px 20px;
  border-radius: 60px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-login {
  background: transparent;
  color: #4f46ba;
  margin-right: 10px;
}

.btn-login:hover {
  background: #f1f3f6;
}

.btn-donate a {
  display: inline-block;
  border: 2px solid var(--kindstep-navy);
  background-color: transparent;
  color: var(--kindstep-navy);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 30px;
  /* capsule shape */
  padding: 12px 20px;
  margin-right: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-donate a:hover {
  background-color: var(--kindstep-navy);
  color: var(--kindstep-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);

}


.hamburger {
  display: flex;
  position: absolute;
  top: 25px;
  right: 30px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  width: 30px;
  height: 20px;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background-color: var(--kindstep-navy-dark, #1b2a4a);
  transition: transform .2s, opacity .2s, background-color .2s;
  display: block;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* animated X (optional) */
.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Design */
@media (min-width: 768px)and (max-width: 991.98px) {

  /* match Bootstrap md breakpoint */
  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .nav-links {
    display: none !important;
    /* hidden by default on mobile */
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 12px;
  }

  .nav-links.active {
    display: flex !important;
  }

  .btn-donate {
    display: none;
  }

  .navbar img {
    display: flex;
  }

  /* hide donate btn on mobile by default */
  .navbar {
    padding: 30px 15px 10px 20px;
  }

  /* .donate-btn.active { display: block; }    show when menu open */
  .logo i {
    display: none;
  }

  /* hide donate btn on mobile by default */
  .fw-bold {
    display: none;
  }
}

@media (max-width: 576px) and (max-width: 768px) {
  .nav-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    margin: 5px 0;
  }

  .btn-donate {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* header section end */

/* banner section start */

.banner_section {
  width: 100%;
  float: left;
  background-image: url(../images/banner-bg.png);
  height: auto;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  top: -70px;
  margin-bottom: 0;
}

.banner_taital {
  width: 45%;
  margin: 0 auto;
  font-size: 60px;
  color: #000080;
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  line-height: 60px;
  font-family: 'Rubik', sans-serif;
}

.banner_text {
  width: 85%;
  margin: 0 auto;
  font-size: 16px;
  color: #000060;
  text-align: center;
  padding: 20px 0px;
}

.read_bt {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}

.read_bt a {
  width: 100%;
  float: left;
  text-align: center;
  font-size: 16px;
  color: #000080;
  background-color: #ffcba4;
  padding: 8px 0px;
  text-transform: uppercase;
  border: 2px solid #ffcba4;
}

.read_bt a:hover {
  background-color: #ffe5d4;
  color: #000080;
}

.carousel-indicators {
  bottom: -60px;
}

.carousel-indicators li {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid #e6e6fa;
  border-radius: 100%;
}

.carousel-indicators .active {
  background-color: #ffcba4;
  border: 3px solid #e6e6fa;
}

.donation_box {
  width: 70%;
  margin: 0 auto;
  background-color: #000080;
  height: auto;
  padding: 20px 0px;
  margin-top: 120px;
  border: 3px solid #e6e6fa;
}

.donation_taital {
  width: 100%;
  color: #ffffff;
  font-size: 20px;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 20px;
  font-family: 'Rubik', sans-serif;
}

.mail_box {
  width: 100%;
  display: flex;
  text-align: center;
  padding: 0px 10px;
}

.mail_text {
  width: 31.2%;
  float: left;
  font-size: 16px;
  color: #121716;
  background-color: #ffffff;
  border: 2px solid #e6e6fa;
  padding: 6px 15px;
  margin: 9px;
}

.send_bt {
  width: 150px;
  margin: 0 auto;
  text-align: center;
}

.send_bt a {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: #000080;
  background-color: #ffcba4;
  padding: 8px 40px;
  text-transform: uppercase;
  margin-top: 20px;
  display: block;
  font-weight: bold;
  border: 2px solid #ffcba4;
}

.send_bt a:hover {
  background-color: #ffe5d4;
}

.fundraise_section_main {
  width: 70%;
  margin: 0 auto;
  text-align: center;
}

.fundraise_section {
  width: 100%;
  text-align: center;
  background: white;
}

.box_main {
  width: 100%;
  background-color: #e6e6fa;
  clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0 75%, 0 0);
  height: auto;
  padding: 30px 20px 70px 20px;
  border: 2px solid #e6e6fa;
}

.icon_1 {
  width: 100%;
  float: left;
  text-align: center;
}

.volunteer_text {
  width: 100%;
  float: left;
  font-size: 26px;
  color: #000080;
  font-weight: bold;
  padding-top: 20px;
}

.lorem_text {
  width: 70%;
  margin: 0 auto;
  font-size: 16px;
  color: #000080;
  text-align: center;
}

.join_bt {
  width: 170px;
  margin: 0 auto;
  text-align: center;
  margin-top: 20px;
}

.join_bt a {
  width: 100%;
  font-size: 16px;
  color: #000080;
  text-align: center;
  background-color: #ffcba4;
  border: 1px solid #ffcba4;
  padding: 5px 15px;
}

.join_bt a:hover {
  background-color: #ffe5d4;
}

.box_main:hover {
  background-color: #ffcba4;
}

.box_main.active {
  background-color: #ffcba4;
}

/* banner section end */

/* about section start */
/* About Us Page Styles */

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--kindstep-navy);
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--kindstep-gray);
  max-width: 700px;
  margin: 0 auto;
}

.mission-vision {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background: var(--kindstep-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission h3,
.vision h3 {
  color: var(--kindstep-navy);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.mission p,
.vision p {
  color: var(--kindstep-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.breadcrumb-section {
  padding: 140px 0 40px 0;
  min-height: 40vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.breadcrumb-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
  /* black mask with ~55% opacity */
  z-index: 1;
}

.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  color: #fff;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  color: var(--kindstep-white);
}

.breadcrumb-list .index_page a {
  color: var(--kindstep-navy);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.breadcrumb-list .index_page a:hover {
  color: var(--kindstep-navy);
}

.breadcrumb-list .others_page a {
  color: var(--kindstep-white);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.about-header {
  background-image: url('../images/community/community-painting-project.jpg');
  height: 50vh;
  padding: 100px 0 60px;
  text-align: center;
  margin: 0px 0 50px 0;
}

.about-header h3 {
  font-size: 16px;
  color: var(--kindstep-peach) !important;
  margin-top: 50px;
  font-weight: 400;

}

.about-header p {
  font-size: 1rem;
  color: var(--kindstep-white);
  max-width: 800px;
  margin: auto;
}

.about-section {
  padding: 50px 0;
}

.story-image {
  position: relative;
  flex: 1;
  min-width: 280px;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* The main image */
.story-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  /* optional */
}

/* Common corner styles */
.corner {
  position: absolute;
  width: 60px;
  /* adjust size */
  height: 60px;
  border: 3px solid var(--kindstep-peach);
  /* navy tone */
  border-radius: 6px;
}

/* Top-left corner (rotated 90°) */
.corner-top-left {
  top: -15px;
  left: -15px;
  border-right: none;
  border-bottom: none;
  transform: rotate(0deg);
}

/* Bottom-right corner (rotated 90°) */
.corner-bottom-right {
  bottom: -15px;
  right: -15px;
  border-left: none;
  border-top: none;
  transform: rotate(0deg);
}

.story-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1;
  min-width: 300px;
}

.story-text h3 {
  color: var(--kindstep-peach) !important;
  margin-bottom: 20px;
  font-size: 24px;
  text-align: left;
}

.story-text p {
  color: var(--kindstep-black);
  margin: 0px 0px 15px;
  font-size: 16px;
}
.story-text .mini_title{
  color: var(--kindstep-peach) !important;
}

/* .story-image {
      flex: 1;
      min-width: 300px;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   }

   .story-image img {
      width: 100%;
      height: auto;
      display: block;
   } */

.founders-section {
  background-color: var(--kindstep-white);
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.founder-card {
  background: var(--kindstep-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 3px solid var(--kindstep-lavender);
}

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

.founder-card h3 {
  color: var(--kindstep-navy);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.founder-card p {
  color: var(--kindstep-gray);
  margin-bottom: 15px;
}

.founder-role {
  color: var(--kindstep-navy);
  font-weight: 600;
}

.programs-overview {
  background-color: var(--kindstep-light-gray);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.program-card {
  background: var(--kindstep-white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
  align-items: center;
  justify-content: center;
}

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

/* .program-icon {
      font-size: 3rem;
      margin: 0 auto auto 20px;
      color: var(--kindstep-peach);

   } */

/* .program-card h3 {
      color: var(--kindstep-peach);
      margin-bottom: 15px;
      font-size: 1.5rem;
   } */

.program-card p {
  color: var(--kindstep-gray);
  margin-bottom: 20px;
}

.program-link {
  display: inline-block;
  background-color: var(--kindstep-peach);
  color: var(--kindstep-navy);
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.program-link:hover {
  background-color: var(--kindstep-peach-light);
}

.impact-stats {
  background: var(--kindstep-light-gray);
  color: var(--kindstep-navy);
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 10px;

}

.stat-item {
  padding: 10px;
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--kindstep-peach);
}

.stat-text {
  font-size: 1.1rem;
  color: var(--kindstep-gray);
}

.cta-section {
  background-color: var(--kindstep-lavender);
  text-align: center;
  margin: 50px 0 0 0;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  color: var(--kindstep-peach);
  margin-bottom: 20px;
  font-size: 2rem;
}

.cta-content p {
  color: var(--kindstep-gray);
  margin-bottom: 30px;
  font-size: 1.1rem;
  text-align: center;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background-color: transparent;
  border: 2px solid var(--kindstep-peach);
  color: var(--kindstep-peach) !important;
}

.cta-btn.primary:hover {
  background-color: var(--kindstep-peach);
  color: var(--kindstep-white) !important;
}

.cta-btn.secondary {
  background-color: transparent;
  color: var(--kindstep-navy);
  border: 2px solid var(--kindstep-navy);
}

.cta-btn.secondary:hover {
  background-color: var(--kindstep-peach);
  color: var(--kindstep-white) !important;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .mission-vision {
    flex-direction: column;
  }

  .story-content {
    flex-direction: column;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* mission section start */

.mission_section {
  width: 100%;
  float: left;
}

.mission_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #000080;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 140px;
  font-family: 'Rubik', sans-serif;
}

.mission_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #666666;
  font-size: 16px;
  margin: 0px;
  padding-left: 140px;
}

.mission_section_2 {
  width: 100%;
  float: left;
  padding-top: 30px;
  padding: 40px 50px;
}

.image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background: linear-gradient(135deg, rgba(0, 0, 128, 0.8) 0%, rgba(230, 230, 250, 0.9) 100%);
}

.container_main:hover .overlay {
  opacity: 1;
}

.text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}

.some_text {
  color: #000080;
  text-align: center;
  font-size: 20px;
  text-transform: uppercase;
}

.alteration_text {
  font-size: 14px;
  color: #ffffff;
  text-align: center;
}

.btn_main {
  width: 100%;
  display: flex;
  text-align: center;
}

.donate_bt {
  display: flex;
  margin: 0 auto;
  text-align: center;
}

.donate_bt a {
  width: 150px;
  text-align: center;
  font-size: 14px;
  color: #000080;
  background-color: #ffcba4;
  border: 2px solid #ffffff;
  padding: 8px;
  text-transform: uppercase;
}

.donate_bt a:hover {
  color: #000080;
  background-color: #ffe5d4;
}

/* mission section end */

/* news section start */

.news_section {
  width: 100%;
  float: left;
}

.news_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #000080;
  text-transform: uppercase;
  font-weight: bold;
  font-family: 'Rubik', sans-serif;
}

.news_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #666666;
  margin: 0px;
  font-family: 'Rubik', sans-serif;
}

.news_section_2 {
  width: 100%;
  float: left;
  padding-top: 40px;
}

.give_taital h3 {
  width: 100%;
  float: left;
  font-size: 20px;
  color: var(--kindstep-peach) !important;
  font-weight: 400;
  padding-top: 40px;
  text-transform: capitalize !important;
}

.ipsum_text {
  width: 100%;
  float: left;
  font-size: 16px;
  margin-left: 0px;
  color: #666666;
  padding-top: 20px;
}

.raised_text {
  width: 100%;
  float: left;
  font-size: 20px;
  color: var(--kindstep-navy-dark);
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Rubik', sans-serif;
  padding-top: 20px;
}

.goal_text {
  color: var(--kindstep-navy);
  padding-left: 20px;
}

.donate_btn_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
}

.donate_btn_main {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 25px;

}

.readmore_btn a,
.readmore_btn_1 a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  border: 2px solid var(--kindstep-peach);
  color: var(--kindstep-navy);
  background-color: transparent;
  transition: all 0.3s ease;

}

/* Button hover effect (fills in color) */
.readmore_btn a:hover {
  background-color: var(--kindstep-lavender) !important;
  color: var(--kindstep-navy) !important;
  border-color: var (--kindstep-lavender) !important;
}

.readmore_btn_1 a:hover {
  background-color: var(--kindstep-peach-light) !important;
  color: var(--kindstep-peach) !important;
  border-color: var(--kindstep-peach) !important;
}

/* Optional subtle shadow for style */
.readmore_btn a,
.readmore_btn_1 a {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

/* news section end */

/* events section start */

.events_section {
  width: 100%;
  float: left;
  padding-bottom: 90px;
}

.events_section_2 {
  width: 100%;
  float: left;
  padding-top: 30px;
}

.give_taital_1 {
  width: 100%;
  float: left;
  font-size: 26px;
  color: var(--kindstep-peach) !important;
  font-weight: 400;
  padding-top: 10px;
  text-transform: capitalize;
}

.ipsum_text_1 {
  width: 100%;
  float: left;
  font-size: 16px;
  margin-left: 0px;
  color: #666666;
}

.raised_text_1 {
  width: 100%;
  float: left;
  font-size: 20px;
  color: var(--kindstep-gray);
  font-weight: 400;
  text-transform: capitalize;
  font-family: 'Rubik', sans-serif;
}

.img_7 {
  width: 100%;
  float: left;
  position: relative;
}

.date_bt {
  width: 100%;
  float: left;
  position: absolute;
  top: 35%;
}

.date_text {
  display: flex;
  margin: 0 auto;
  text-align: center;
}

.date_text a {
  width: 70px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
  background-color: var(--kindstep-peach);
  padding: 8px;
  text-transform: uppercase;
}

.date_text a:hover {
  color: #000080;
  background-color: #ffcba4;
}

.date_text.active a {
  background-color: #ffcba4;
  color: #000080;
}

/* events section end */

/* donate section start */

.donate_section {
  width: 100%;
  float: left;
  background: linear-gradient(135deg, #e6e6fa 0%, #ffe5d4 100%);
  height: auto;
  padding-bottom: 90px;
}

.donate_taital {
  width: 100%;
  font-size: 40px;
  color: #000080;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Rubik', sans-serif;
}

.donate_taital_main {
  width: 100%;
  border: 1px solid #e6e6fa;
  padding: 40px 20px 60px 20px;
  display: flex;
}

.donate_left {
  width: 25%;
  float: left;
}

.donate_right {
  width: 100%;
}

.client_img {
  width: 100%;
}

.client_name_text {
  width: 100%;
  font-size: 24px;
  color: #000080;
  font-weight: bold;
}

.dummy_text {
  width: 100%;
  font-size: 16px;
  color: #666666;
  margin-left: 0px;
}

#main_slider a.carousel-control-next {
  position: absolute;
  right: -89px;
  top: 23%;
  background-color: #000080;
}

#main_slider a.carousel-control-prev {
  position: absolute;
  right: -89px;
  top: 52%;
  left: initial;
}

#main_slider .carousel-control-prev,
#main_slider .carousel-control-next {
  width: 68px;
  height: 68px;
  background: #ffcba4;
  opacity: 1;
  font-size: 30px;
  color: #000080;
}

#main_slider .carousel-control-prev:hover,
#main_slider .carousel-control-next:hover,
#main_slider .carousel-control-prev:focus,
#main_slider .carousel-control-next:focus {
  background: #000080;
  color: #ffffff;
}

/* donate section end */

/* contact section start */

.contact_section {
  width: 100%;
  float: left;
  padding-bottom: 90px;
}

.contact_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: #000080;
  font-weight: bold;
}

.contact_section_2 {
  width: 100%;
  float: left;
  border-radius: 20px;
  background-color: var(--kindstep-lavender);

}

.mail_section_1 {
  width: 100%;
  margin: 0 auto;
}

.mail_text_1 {
  width: 100%;
  float: left;
  font-size: 16px;
  color: #4f4e4e;
  border: 2px solid #e6e6fa;
  background-color: #ffff;
  padding: 15px;
  margin-top: 20px;
  border-radius: 5px;
}

.massage-bt {
  color: #4f4e4e;
  width: 100%;
  height: 110px;
  font-size: 18px;
  background-color: #ffff;
  padding: 40px 15px 0px 15px;
  border: 2px solid #e6e6fa;
  height: 110px;
  margin-top: 20px;
  border-radius: 10px;
}

.send_bt_1 {
  width: 170px;
  margin: 0 auto;
  text-align: center;
}

.send_bt_1 a {
  width: 100%;
  float: left;
  background-color: #ffcba4;
  color: #000080;
  text-align: center;
  padding: 10px 0px;
  font-size: 16px;
  margin-top: 40px;
  border: 1px solid #ffcba4;
  font-weight: 500;
}

.send_bt_1 a:hover {
  background-color: transparent;
  color: #000080;
}

.map_main {
  width: 100%;
  float: left;
  padding-top: 80px;
}

/* contact section end */

/* footer section start */

.footer {
  width: 100%;
  float: left;
  background-image: linear-gradient(180deg,
      var(--kindstep-lavender) 0%,
      var(--kindstep-navy) 70%,
      var(--kindstep-navy-dark) 20%,
      var(--kindstep-navy) 30%) !important;
  /* linear-gradient(90deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(237, 221, 83, 1) 100%); */
  height: auto;
  padding: 30px;
}

.footer_logo {
  width: 100px;
  margin-bottom: 20px;
}

.social_icon a {
  display: inline-block;
  margin: 0 10px;
  /* spacing between icons */
}

.social_icon a i {
  color: var(--kindstep-white);
  font-size: 30px;
  /* adjust size here */
  transition: color 0.3s ease;
}

.social_icon a i:hover {
  color: var(--kindstep-peach);
}

.footer_taital {
  color: var(--kindstep-navy) !important;
  text-transform: capitalize;
  font-size: 20px;
  float: left;
  z-index: 1;
}

.footer_text {
  width: 100%;
  float: left;
  font-size: 17px;
  color: #e6e6fa;
  margin: 5px 0px;
}

.footer_menu_main {
  width: 100%;
  float: left;
}

.footer_menu {
  width: 100%;
  float: left;
}

.footer_menu ul {
  margin: 0px;
  padding: 0px;
  /* padding-left: 15px; */
  list-style: none;

}

.footer_menu li {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--kindstep-white);
  padding-bottom: 5px;
  position: relative;

}

.footer_menu li a {
  color: var(--kindstep-navy-dark);
  text-decoration: none;
}

.footer_menu li a:hover {
  color: var(--kindstep-peach);
}


/* 
.address_text {
  width: 85%;
  float: left;
  font-size: 18px;
  color: #969595;
  padding: 5px 200px 5px 0px;
  border: 0px;
  background-color: transparent;
  height: 60px;
  border-bottom: 1px solid #e6e6fa;
   border-radius:30px 0 0 30px;
} */

input.address_text::placeholder {
  color: #969595;
  font-size: 16px;
  padding: 5px 0px 5px 15px;
}

.subscribe_section {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 12px; */
  width: 800px;
  margin: 60px auto;
  padding: 12px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-radius: 50px;
}

.address_text {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  background-color: #f3f4f6;
  transition: all 0.3s ease;
}

.address_text:focus {
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

.get_bt {
  padding: 14px 28px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, var(--kindstep-peach));
  transition: all 0.3s ease;
}

.get_bt:hover {
  transform: translateY(-1px);
  color: var(--kindstep-white);
}

/* 📱 Mobile-friendly adjustments */
@media (max-width: 600px) {
  .subscribe_section {
    /* flex-direction: column; */
    border-radius: 20px;
    /* gap: 10px; */
  }

  .get_bt {
    width: 100%;
  }

  .address_text {
    width: 100%;
  }
}


/* footer section end */

/* copyright section start */

.copyright_section {
  width: 100%;
  float: left;
  background-color: var(--kindstep-navy);
  height: auto;
}

.copyright_text {
  width: 100%;
  float: left;
  font-size: 16px;
  margin-left: 0px;
  color: #e6e6fa;
  text-align: center;
}

.copyright_text a {
  color: #ffcba4;
}

.copyright_text a:hover {
  color: #ffe5d4;
}

/* copyright section end */

.margin_top_90 {
  margin-top: 90px;
}

/*--------------------------------------------------------------------- Kindstep Africa Foundation Custom Color Scheme ---------------------------------------------------------------------*/

/* Header and Navigation Updates */
.navbar-light {
  background-color: var(--kindstep-white) !important;
  border-bottom: 3px solid var(--kindstep-lavender);
}

.navbar-light .navbar-nav .nav-link {
  color: var(--kindstep-navy) !important;
  font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--kindstep-peach) !important;
  background-color: var(--kindstep-lavender);
}

.donate_btn {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
  border: 2px solid var(--kindstep-peach);
  font-weight: 600;
}

.donate_btn:hover {
  background-color: var(--kindstep-peach-light) !important;
  color: var(--kindstep-navy) !important;
  border-color: var(--kindstep-peach);
}

/* Banner Section Updates */
.banner_section {
  background: linear-gradient(135deg,
      var(--kindstep-lavender) 0%,
      var(--kindstep-peach-light) 100%);
}

.banner_taital {
  color: var(--kindstep-navy) !important;
}

.banner_text {
  color: var(--kindstep-navy-dark) !important;
}

.read_bt a {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
  border: 2px solid var(--kindstep-peach);
}

.read_bt a:hover {
  background-color: var(--kindstep-peach-light) !important;
  color: var(--kindstep-navy) !important;
}

/* Donation Box Updates */
.donation_box {
  background-color: var(--kindstep-navy) !important;
  border: 3px solid var(--kindstep-lavender);
}

.donation_taital {
  color: var(--kindstep-white) !important;
}

.send_bt a {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
}

.send_bt a:hover {
  background-color: var(--kindstep-peach-light) !important;
}

/* Fundraise Section Updates */
.box_main {
  border: 2px solid var(--kindstep-lavender);
  background-color: var(--kindstep-white);
}

.box_main.active {
  background-color: var(--kindstep-lavender);
  border-color: var(--kindstep-navy);
}

.volunteer_text {
  color: var(--kindstep-navy) !important;
}

.join_bt a {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
}

.join_bt a:hover {
  background-color: var(--kindstep-peach-light) !important;
}



/* Mission Section Updates */
.mission_taital {
  color: var(--kindstep-navy) !important;
}

.mission_text {
  color: var(--kindstep-gray) !important;
}

.some_text {
  color: var(--kindstep-navy) !important;
}

.alteration_text {
  color: var(--kindstep-white) !important;
}

/* News Section Updates */
.news_taital {
  color: var(--kindstep-navy) !important;
}

.news_text {
  color: var(--kindstep-gray) !important;
}

.give_taital {
  color: var(--kindstep-peach) !important;
  text-transform: capitalize !important;
}

.ipsum_text {
  color: var(--kindstep-gray) !important;
}

.readmore_btn a {
  background-color: var(--kindstep-lavender) !important;
  color: var(--kindstep-navy) !important;
}

.readmore_btn_1 a {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
}

/* Events Section Updates */
/* .give_taital_1 {
  color: var(--kindstep-navy) !important;
} */

.ipsum_text_1 {
  color: var(--kindstep-gray) !important;
}

/* Testimonials Section Updates */
.donate_section {
  background: linear-gradient(135deg,
      var(--kindstep-lavender) 0%,
      var(--kindstep-peach-light) 100%) !important;
}

.donate_taital {
  color: var(--kindstep-navy) !important;
}

.client_name_text {
  color: var(--kindstep-navy) !important;
}

.dummy_text {
  color: var(--kindstep-gray) !important;
}

/* Footer Updates */

.footer_section_2 {
  margin-top: 20px;
}

.footer_menu p {
  color: var(--kindstep-white) !important;

}

.footer_menu ul li a {
  color: var(--kindstep-white) !important;
  text-decoration: none;
}

.footer_menu ul li a:hover {
  color: var(--kindstep-peach) !important;
}



.address_text {
  /* border: 2px solid var(--kindstep-navy); */
  background-color: var(--kindstep-white);
  border-radius: 30px 0 0 30px;
  gap: 0;
  padding: 10px;
  font-size: 16px;
  color: var(--kindstep-gray);
  /* color: var(--kindstep-navy); */
}

.get_bt {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
  border: 2px solid var(--kindstep-peach);
  padding: 10px 10px;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0 30px 30px 0;
  font-weight: 600;
  width: 40%;

}

.get_bt:hover {
  background-color: var(--kindstep-peach-light) !important;
}

.copyright_text {
  color: var(--kindstep-lavender) !important;
}

.copyright_text a {
  color: var(--kindstep-peach) !important;
}

/* Form Elements Updates */
.mail_text,
.mail_text_1 {
  border: 2px solid var(--kindstep-lavender);
  background-color: var(--kindstep-white);
}

.mail_text:focus,
.mail_text_1:focus {
  border-color: var(--kindstep-peach);
  box-shadow: 0 0 0 0.2rem rgba(255, 203, 164, 0.25);
}

.massage-bt {
  border: 2px solid var(--kindstep-lavender);
  background-color: var(--kindstep-white);
}

.massage-bt:focus {
  border-color: var(--kindstep-peach);
  box-shadow: 0 0 0 0.2rem rgba(255, 203, 164, 0.25);
}

/* Button Hover Effects */
.btn_main .donate_bt a:hover {
  background-color: var(--kindstep-peach-light) !important;
  color: var(--kindstep-navy) !important;
}

/* Carousel Controls */
.carousel-control-next,
.carousel-control-prev {
  color: var(--kindstep-navy) !important;
}

.carousel-indicators li {
  background-color: var(--kindstep-lavender);
}

.carousel-indicators li.active {
  background-color: var(--kindstep-peach);
}

/* Overlay Effects */
.overlay {
  background: linear-gradient(135deg,
      rgba(0, 0, 128, 0.8) 0%,
      rgba(230, 230, 250, 0.9) 100%);
}

/* Contact Section Updates */
.contact_taital {
  color: var(--kindstep-navy) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-light .navbar-nav .nav-link {
    color: var(--kindstep-navy) !important;
    background-color: var(--kindstep-lavender-light);
    margin: 2px 0;
    padding: 10px 15px;
  }

  .donate_btn {
    margin-top: 10px;
  }
}

/* Custom Button Styles */
.readmore_btn a {
  background-color: var(--kindstep-lavender) !important;
  color: var(--kindstep-navy) !important;
  border: 2px solid var(--kindstep-lavender);
  transition: all 0.3s ease;
}

.readmore_btn a:hover {
  background-color: var(--kindstep-lavender-dark) !important;
  border-color: var(--kindstep-navy);
}

.readmore_btn_1 a {
  background-color: var(--kindstep-peach) !important;
  color: var(--kindstep-navy) !important;
  border: 2px solid var(--kindstep-peach);
  transition: all 0.3s ease;
}

.readmore_btn_1 a:hover {
  background-color: var(--kindstep-peach-light) !important;
  border-color: var(--kindstep-navy);
}

/* Section Backgrounds */
.layout_padding {
  padding: 60px 0;
}

/* Custom Section Styling */
.about_section,
.mission_section,
.news_section {
  background-color: var(--kindstep-white);
}

.events_section {
  background-color: var(--kindstep-light-gray);
}

.donate_section {
  background: linear-gradient(135deg,
      var(--kindstep-lavender) 0%,
      var(--kindstep-peach-light) 100%);
}

/* Text Color Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--kindstep-navy) !important;
}

p {
  color: var(--kindstep-gray);
}

/* Link Hover Effects */
a:hover {
  color: var(--kindstep-peach) !important;
}

/* Form Styling */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--kindstep-peach) !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 203, 164, 0.25) !important;
}

/* Custom Card Styling */
.container_main {
  border: 2px solid var(--kindstep-lavender);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.container_main:hover {
  border-color: var(--kindstep-peach);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 128, 0.1);
}

/* Logo size inside navbar */
.logo {
  height: 80px;
  /* Adjust for best fit */
  width: auto;
  margin-left: 20px;
}

/* ========== Slider ========== */
.kindstep-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  /* margin-top: 80px; */
  overflow: hidden;
  background: #f8f9fa;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-content {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background: #fbf3fb;
  color: white;
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 350px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 1s ease;
}

.slide-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.slide-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 10;
}

.control-btn {
  background: var(--kindstep-peach);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.control-btn:hover {
  background: var(--kindstep-navy);
}

.slider-indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: var(--kindstep-peach);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-40%);
  }

  to {
    opacity: 1;
    transform: translateY(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .kindstep-slider {
    height: 400px;
  }

  .slide-content {
    right: 50%;
    transform: translate(50%, -50%);
    max-width: 80%;
    text-align: center;
  }

  .slide-content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .kindstep-slider {
    height: 350px;
  }

  .slide-content {
    padding: 1rem;
    max-width: 85%;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }
}

/* Separator  */
.section-divider {
  padding: 0.2rem 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.divider-design {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(to right, transparent, #8247dd, transparent);
}

.divider-icon {
  margin: 0 1rem;
  font-size: 1.5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .divider-icon {
    font-size: 1.25rem;
    margin: 0 0.75rem;
  }
}
.header-section .header-bg{
  margin:0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-bg {
  background: var(--kindstep-lavender);
  border-radius:60px;
  padding: 3px;
  text-align: center;
  display: flex;
  justify-content: center;   /* center horizontally */
  align-items: center;  
  width: 160px;
}
.header-section h1{
  color: var(--kindstep-black) !important;
  font-weight: 600;
  font-size: 40px;
  padding: 5px;
  text-align: center;
  
}
/* .header-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 100%; */
/* background: linear-gradient(45deg, #fbf3fb 0%, #ffcba4 100%); */
/* clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0); */
/* z-index: 1; */
/* } */

.header-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  text-align: center;
}

/* .header-content h2{
  color: #4f46ba;
  font-weight: 500;
  padding-top: 1rem;
} */
.asymmetric-header h2 {
  font-size: 2rem;
  color: rgb(255, 255, 255);
  margin-bottom: 0.5rem;
  font-weight: 500;
  text-align: center;
}

.asymmetric-header p {
  font-size: 1.2rem;
  color: rgba(6, 6, 6, 0.9);
  max-width: 500px;
  text-align: center;

}

/* Responsive version for mobile */
@media (max-width: 768px) {
  /* .header-bg-shape {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  } */

  .header-content {
    text-align: center;
    padding-left: 0;
  }
}

/* more on body section */
.kindstep-content {
  padding: 4rem 2rem;
  background: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Mission & Vision */
.mission-vision {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mission h2,
.vision h2 {
  color: var(--kindstep-gray) !important;
  margin-bottom: 1rem;
  font-size: 2rem;
  text-transform: capitalize !important;
}

.mission p,
.vision p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Programs */
.programs {
  margin-bottom: 4rem;
}

.programs h2 {
  text-align: center;
  color: #4f46ba;
  margin-bottom: 2.5rem;
  font-size: 2rem;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.program-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* .program-card h3 {
  color: var(--kindstep-peach);
  margin-bottom: 1rem;
  font-size: 1.4rem;
} */

.program-card p {
  color: #555;
  line-height: 1.6;
}

/* Get Involved */
.get-involved {
  margin-bottom: 4rem;
}

.get-involved h2 {
  text-align: center;
  text-transform: uppercase;
  color: #4f46ba;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.involvement-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.involvement-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* .involvement-card h3 {
  color: #4f46ba;
  margin-bottom: 1rem;
  font-size: 1.4rem;
} */

.involvement-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.involve-btn {
  background: transparent;
  color: var(--kindstep-peach);
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--kindstep-peach);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.involve-btn:hover {
  background: var(--kindstep-peach);
  color: var(--kindstep-white);
}

/* Founders */
.founders {
  margin-bottom: 4rem;
}

.founders h2 {
  text-align: center;
  color: #4f46ba;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.founder-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.founder-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

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

.founder-card h3 {
  color: #4f46ba;
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.founder-card p {
  color: #777;
}

/* Contact Info */
.contact-info h2 {
  text-align: center;
  color: #4f46ba;
  margin-bottom: 2.5rem;
  font-size: 2.2rem;
}

.contact-details {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
  min-width: 30px;
  text-align: center;
}

.contact-item p {
  color: #555;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-vision {
    flex-direction: column;
  }

  .programs-grid,
  .involvement-options {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

/* Animated separator */
/* .fullscreen-separator {
  position: relative;
  width: 100vw;
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
} */

/* .separator-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
} */

/* .moving-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2000&q=80'); */
/* background-size: cover;
  background-position: center 100%;
  animation: slideBackground 40s linear infinite; */
/* }  */

/* .moving-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background: linear-gradient(45deg, #fbf3fb 0%, #ffcba4 100%);
   clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
  z-index: 1;
    
} */

.separator-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 2rem;
  /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4); */
}

.separator-content h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
}

@keyframes slideBackground {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .fullscreen-separator {
    height: 150px;
  }

  .separator-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .fullscreen-separator {
    height: 130px;
  }

  .separator-content h2 {
    font-size: 1.75rem;
  }
}

/* Programs Section Styling */
.programs_section {
  width: 100%;
  float: left;
  background-color: var(--kindstep-white);
}

.programs_taital {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: var(--kindstep-navy);
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;

}

.programs_text {
  width: 100%;
  float: left;
  font-size: 16px;
  color: var(--kindstep-gray);
  margin: 0px;
  font-family: 'Rubik', sans-serif;
}

.programs_section_2 {
  width: 100%;
  float: left;
  padding-top: 40px;
}

/* Mentorship Section Styling */
.mentorship_section {
  width: 100%;
  float: left;
  padding-bottom: 90px;
  background-color: var(--kindstep-light-gray);
}

.mentorship_taital {
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
  color: var(--kindstep-navy);
  text-transform: uppercase;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
}

.mentorship_text {
  width: 100%;
  text-align: center;
  font-size: 16px;
  color: var(--kindstep-gray);
  margin: 0px;
  font-family: 'Rubik', sans-serif;
}

.mentorship_section_2 {
  width: 100%;
  float: left;
  padding-top: 30px;
}

/* Programs Header Section */
.programs_header_section {
  width: 100%;
  float: left;
  padding: 60px 0 30px 0;
  background: linear-gradient(135deg,
      var(--kindstep-lavender) 0%,
      var(--kindstep-peach-light) 100%);
}

.programs_main_taital {
  width: 100%;
  float: left;
  font-size: 40px;
  color: var(--kindstep-navy);
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  font-family: 'Rubik', sans-serif;
}

.programs_main_text {
  width: 80%;
  float: left;
  font-size: 16px;
  color: var(--kindstep-navy-dark);
  margin: 0 auto;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  padding-top: 20px;
}

/* =========== Programs Section Styling End =========== */
.programs-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.programs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #4f46ba;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  justify-content: center;
}

.program-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 186, 0.15);
}

.program-card.featured {
  border: 2px solid #4f46ba;
  transform: scale(1.02);
}

.program-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #4f46ba;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.program-icon {
  width: 70px;
  height: 70px;
  background: var(--kindstep-peach-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--kindstep-peach);
  margin: 0 auto 20px auto;
}

.program-icon svg {
  width: 32px;
  height: 32px;
  color: #4f46ba;
}

.program-card h3 {
  font-size: 1.5rem;
  color: var(--kindstep-gray-dark) !important;
  margin-bottom: 1rem;
  font-weight: 400;
}

.program-description {
  color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-details {
  margin-bottom: 2rem;
}

.program-details h4 {
  font-size: 1.1rem;
  color: #4f46ba;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.program-details ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.program-details li {
  padding: 0.4rem 0;
  color: #555;
  position: relative;
  padding-left: 1.5rem;
}

.program-details li:before {
  content: "•";
  color: #4f46ba;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.impact-stats {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}




.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 0.3rem;
}

.program-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.btn-primary {
  background: #4f46ba;
  color: white;
}

.btn-primary:hover {
  background: #3a328a;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #4f46ba;
  border: 1px solid #4f46ba;
}

.btn-secondary:hover {
  background: rgba(79, 70, 186, 0.1);
  transform: translateY(-2px);
}

.impact-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.impact-item {
  text-align: center;
  padding: 1rem;
}

.impact-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4f46ba;
  margin-bottom: 0.5rem;
}

.impact-text {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    padding: 2rem;
  }

  .impact-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .program-actions {
    flex-direction: column;
  }

  .impact-summary {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .impact-summary {
    grid-template-columns: 1fr;
  }

  .impact-number {
    font-size: 2rem;
  }
}

/* ===========================================================================
=======================Get Involved Section Styling End ======================= 
============================================================================*/
.get-involved-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--kindstep-lavender) 0%, var(--kindstep-peach-light) 100%);
}

.get-involved-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--kindstep-navy);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--kindstep-navy-dark);
  max-width: 700px;
  margin: 0 auto;
}

.involvement-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.involvement-card {
  background: var(--kindstep-white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--kindstep-peach);
}

.involvement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(79, 70, 186, 0.15);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(79, 70, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--kindstep-peach);
  font-size: 1.8rem;
}

.involvement-card h3 {
  font-size: 1.5rem;
  color: var(--kindstep-gray-dark) !important;
  margin-bottom: 1rem;
  font-weight: 400;
}

.involvement-card>p {
  color: var(--kindstep-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.impact-details {
  margin-bottom: 2rem;
}

.impact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: var(--kindstep-light-gray);
  border-radius: 6px;
}

.impact-number {
  font-weight: 700;
  color: var(--kindstep-purple);
  margin-right: 1rem;
  font-size: 1.2rem;
  min-width: 60px;
}

.impact-text {
  color: var(--kindstep-gray);
  font-size: 0.95rem;
}

.opportunity-list {
  margin-bottom: 2rem;
}

.opportunity-list h4 {
  color: var(--kindstep-navy);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.opportunity-list ul {
  list-style-type: none;
  padding: 0;
}

.opportunity-list li {
  padding: 0.5rem 0;
  color: var(--kindstep-gray);
  display: flex;
  align-items: center;
}

.opportunity-list li i {
  color: var(--kindstep-purple);
  margin-right: 0.8rem;
  font-size: 0.9rem;
}

.partnership-types {
  margin-bottom: 2rem;
}

.partnership-item {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--kindstep-light-gray);
}

.partnership-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.partnership-item h4 {
  color: var(--kindstep-navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.partnership-item p {
  color: var(--kindstep-gray);
  font-size: 0.95rem;
}

.card-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  flex: 1;
  min-width: 120px;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--kindstep-purple);
  color: var(--kindstep-white);
}

.btn-primary:hover {
  background: var(--kindstep-purple-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--kindstep-purple);
  border: 1px solid var(--kindstep-purple);
}

.btn-secondary:hover {
  background: rgba(79, 70, 186, 0.1);
  transform: translateY(-2px);
}

.additional-support {
  background: var(--kindstep-white);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 4rem;
}

.additional-support h3 {
  text-align: center;
  color: var(--kindstep-navy);
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-item {
  text-align: center;
  padding: 1.5rem;
}

.support-icon {
  width: 60px;
  height: 60px;
  background: rgba(79, 70, 186, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--kindstep-purple);
  font-size: 1.5rem;
}

.support-item h4 {
  color: var(--kindstep-navy);
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.support-item p {
  color: var(--kindstep-gray);
  font-size: 0.95rem;
}

.impact-counter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  background: var(--kindstep-navy);
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.counter-item {
  text-align: center;
  padding: 1rem;
}

.counter-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--kindstep-peach);
  margin-bottom: 0.5rem;
}

.counter-label {
  display: block;
  font-size: 1rem;
  color: var(--kindstep-white);
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .involvement-options {
    grid-template-columns: 1fr;
  }

  .involvement-card {
    padding: 2rem;
  }

  .card-actions {
    flex-direction: column;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .impact-counter {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 2rem;
  }

  .impact-counter {
    grid-template-columns: 1fr;
  }

  .counter-number {
    font-size: 2rem;
  }
}

/* =================== blog =================== */
.blog-section {
  padding: 100px 0 60px;
  min-height: 80vh;
}

.page-header {
  text-align: center;
  margin-bottom: 40px;
}

.page-header h1 {
  color: var(--kindstep-navy);
  margin-bottom: 10px;
}

.blog-filters {
  background: var(--kindstep-lavender);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.filter-group {
  margin-bottom: 15px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  color: var(--kindstep-navy);
}

/* Category Tabs should be dynamic and center aligned */
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.category-tab {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--kindstep-lavender-dark);
}

.category-tab:hover,
.category-tab.active {
  background: var(--kindstep-navy);
  color: var(--kindstep-white);
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: var(--kindstep-white);
  color: var(--kindstep-navy);
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid var(--kindstep-lavender-dark);
}

.tag:hover,
.tag.active {
  background: var(--kindstep-navy);
  color: var(--kindstep-white);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.article-card {
  background: var(--kindstep-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--kindstep-peach);
  color: var(--kindstep-navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.article-content {
  padding: 20px;
}

.article-title {
  margin: 0 0 15px 0;
  font-size: 1.25rem;
  line-height: 1.4;
}

.article-title a {
  color: var(--kindstep-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-title a:hover {
  color: var(--kindstep-purple);
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--kindstep-gray);
}

.article-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-excerpt {
  margin-bottom: 15px;
  color: var(--kindstep-gray);
  line-height: 1.6;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}

.read-more {
  color: var(--kindstep-purple);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: var(--kindstep-purple-dark);
}

.no-articles {
  text-align: center;
  padding: 60px 20px;
  color: var(--kindstep-gray);
}

.no-articles i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--kindstep-lavender-dark);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination-list {
  display: flex;
  list-style: none;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 15px;
  border: 1px solid var(--kindstep-lavender-dark);
  border-radius: 5px;
  color: var(--kindstep-navy);
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-link:hover,
.page-link.active {
  background: var(--kindstep-navy);
  color: var(--kindstep-white);
  border-color: var(--kindstep-navy);
}

@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .pagination-list {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =================== article =================== */
.article-section {
  padding: 100px 0 60px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--kindstep-gray);
}

.breadcrumb a {
  color: var(--kindstep-purple);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.divider {
  margin: 0 10px;
}

.article-header {
  margin-bottom: 40px;
}

.article-hero-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.category-badge {
  display: inline-block;
  background: var(--kindstep-peach);
  color: var(--kindstep-navy);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.article-title {
  font-size: 2.5rem;
  color: var(--kindstep-navy);
  margin: 0 0 20px 0;
  line-height: 1.3;
}

.meta-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.author-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: var(--kindstep-gray);
}

.author-details span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.article-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars .fa-star {
  color: #ddd;
  font-size: 14px;
}

.stars .fa-star.active {
  color: #ffc107;
}

.rating-text {
  font-size: 14px;
  color: var(--kindstep-gray);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags .tag {
  background: var(--kindstep-lavender);
  color: var(--kindstep-navy);
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.article-tags .tag:hover {
  background: var(--kindstep-navy);
  color: var(--kindstep-white);
}

.article-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--kindstep-gray-dark);
  margin-bottom: 50px;
}

.article-content h2 {
  color: var(--kindstep-navy);
  margin: 40px 0 20px 0;
}

.article-content h3 {
  color: var(--kindstep-navy);
  margin: 30px 0 15px 0;
}

.article-content p {
  margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content blockquote {
  border-left: 4px solid var(--kindstep-purple);
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: var(--kindstep-gray);
}

.article-footer {
  border-top: 1px solid var(--kindstep-lavender-dark);
  border-bottom: 1px solid var(--kindstep-lavender-dark);
  padding: 30px 0;
  margin-bottom: 50px;
}

.share-article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.share-article span {
  font-weight: 600;
  color: var(--kindstep-navy);
}

.social-share {
  display: flex;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px);
}

.social-link.facebook {
  background: #3b5998;
}

.social-link.twitter {
  background: #1da1f2;
}

.social-link.linkedin {
  background: #0077b5;
}

.social-link.email {
  background: var(--kindstep-gray);
}

.comments-section {
  margin-bottom: 60px;
}

.comments-section h2 {
  color: var(--kindstep-navy);
  margin-bottom: 30px;
}

.comments-section h3 {
  color: var(--kindstep-navy);
  margin-bottom: 20px;
}

.alert {
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.alert-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.comment-form {
  background: var(--kindstep-lavender-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--kindstep-navy);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--kindstep-lavender-dark);
  border-radius: 5px;
  font-family: inherit;
  font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--kindstep-purple);
  box-shadow: 0 0 0 3px rgba(106, 82, 255, 0.1);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.star-rating input {
  display: none;
}

.star-rating label {
  cursor: pointer;
  width: 30px;
  height: 30px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ddd"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center;
  background-size: contain;
  transition: all 0.2s ease;
}

.star-rating input:checked~label,
.star-rating label:hover,
.star-rating label:hover~label {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffc107"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center;
  background-size: contain;
}

.star-rating input:checked+label {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffc107"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center;
  background-size: contain;
}

.btn-primary {
  background: var(--kindstep-purple);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background: var(--kindstep-purple-dark);
}

.comments-list {
  margin-top: 40px;
}

.no-comments {
  text-align: center;
  padding: 40px;
  color: var(--kindstep-gray);
  font-style: italic;
}

.comment {
  background: white;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--kindstep-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.comment-meta {
  display: flex;
  flex-direction: column;
}

.comment-author-name {
  font-weight: 600;
  color: var(--kindstep-navy);
}

.comment-date {
  font-size: 14px;
  color: var(--kindstep-gray);
}

.comment-rating {
  display: flex;
  gap: 2px;
}

.comment-rating .fa-star {
  color: #ffc107;
  font-size: 14px;
}

.comment-content {
  line-height: 1.6;
  color: var(--kindstep-gray-dark);
}

.related-articles {
  margin-top: 60px;
}

.related-articles h2 {
  color: var(--kindstep-navy);
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.related-article {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.related-image {
  height: 180px;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-article:hover .related-image img {
  transform: scale(1.05);
}

.related-content {
  padding: 20px;
}

.related-content h3 {
  margin: 0 0 15px 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.related-content h3 a {
  color: var(--kindstep-navy);
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-content h3 a:hover {
  color: var(--kindstep-purple);
}

.related-meta {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: var(--kindstep-gray);
}

@media (max-width: 768px) {
  .article-title {
    font-size: 2rem;
  }

  .meta-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .share-article {
    flex-direction: column;
    gap: 15px;
  }

  .comment-header {
    flex-direction: column;
    gap: 15px;
  }

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

/* =================== support =================== */
.forms-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--kindstep-lavender) 0%, var(--kindstep-peach-light) 100%);
}

.form-tabs {
  background: var(--kindstep-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tab-nav {
  display: flex;
  background: var(--kindstep-navy);
}

.tab-link {
  flex: 1;
  padding: 20px;
  text-align: center;
  color: var(--kindstep-white);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-link:hover {
  background: var(--kindstep-navy-dark);
}

.tab-link.active {
  background: var(--kindstep-navy-dark);
  border-bottom: 3px solid var(--kindstep-peach);
}

.tab-content {
  padding: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--kindstep-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--kindstep-lavender);
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--kindstep-peach);
  outline: none;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 6px;
  font-weight: 500;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.btn-primary {
  background: var(--kindstep-purple);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--kindstep-purple-dark);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .tab-nav {
    flex-direction: column;
  }

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

/* =================== notification =================== */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  max-width: 350px;
  animation: slideIn 0.5s ease;
}

.notification-alert {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-left: 4px solid var(--kindstep-peach);
}

.notification-content {
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.notification-icon {
  background: var(--kindstep-lavender);
  color: var(--kindstep-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.notification-text h4 {
  margin: 0 0 5px 0;
  color: var(--kindstep-navy);
  font-size: 16px;
}

.notification-text p {
  margin: 0;
  color: var(--kindstep-gray);
  font-size: 14px;
}

.notification-close {
  background: none;
  border: none;
  color: var(--kindstep-gray);
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}

.notification-actions {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px 20px;
}

.notification-actions .btn {
  padding: 8px 15px;
  font-size: 14px;
  flex: 1;
  text-align: center;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification-hide {
  animation: slideOut 0.5s ease forwards;
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}