:root {
  --primary-color: #03221b;
  --secondary-color: #fafafa;
  --text-color: #727272;
  --accent-color: #0f8cf6;
  --accent-secondary-color: #2a9341;
  --white-color: #ffffff;
  --divider-color: #03221b1a;
  --dark-divider-color: #ffffff25;
  --error-color: rgb(230, 87, 87);
  --default-font: "DM Sans", sans-serif;
  --accent-font: "Rajdhani", sans-serif;
}

.ap-focus-section {
  background: #f0f1f3;
  padding: 70px 0;
}

/* Heading */

.ap-subtitle {
  color: #0b7c73;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.ap-title {
  font-size: 28px;
  font-weight: 700;
  color: #07183d;
  margin: 15px 0 18px;
}

.ap-description {
  max-width: 720px;
  margin: auto;
  color: #5d6982;
  line-height: 1.4;
  font-size: 14px;
}

/* Card */

.ap-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid #edf1f5;

  box-shadow:
    0 2px 5px rgba(0, 0, 0, 0.03),
    0 12px 30px rgba(0, 0, 0, 0.06);

  transition: 0.35s;
}

.ap-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */

.ap-icon {
  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 28px;
}

.ap-icon i {
  font-size: 25px;
}

/* Colors */

.blue {
  background: #edf4ff;
  color: #2a9341;
}

.green {
  background: #edf4ff;
  color: #2a9341;
}

.pink {
  background: #edf4ff;
  color: #2a9341;
}

.orange {
  background: #edf4ff;
  color: #2a9341;
}

/* Content */

.ap-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #081d46;
  margin-bottom: 16px;
}

.ap-card p {
  color: #5f6d84;
  line-height: 1.4;
  margin-bottom: 28px;
  font-size: 16px;
}

.ap-card a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.ap-card a i {
  transition: 0.3s;
}

.ap-card:hover a i {
  transform: translateX(5px);
}

/* Responsive */

@media (max-width: 991px) {
  .ap-focus-section {
    padding: 70px 0;
  }

  .ap-title {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .ap-title {
    font-size: 32px;
  }

  .ap-description {
    font-size: 16px;
  }

  .ap-card {
    padding: 25px;
  }

  .ap-card h4 {
    font-size: 24px;
  }
}

/*==================================
        Partner Section
===================================*/

.partner-section {
  position: relative;
  padding: 70px 0;
  overflow: hidden;

  background-image: url("../images/partner.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Dark Overlay */

.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #111c33a3;
}

.partner-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */

.partner-title {
  color: #ffffff;

  font-size: 28px;
  font-weight: 800;
  line-height: 1.05;

  max-width: 980px;
  margin: auto auto 30px;
}

/* Paragraph */

.partner-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.4;
  max-width: 900px;
  margin: auto auto 25px;
}

/* Button Group */

.partner-btn-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* Common Button */

.partner-btn {
  width: max-content;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 62px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.35s ease;
  text-transform: uppercase;
  padding: 0px 30px;
}

/* Gold Button */

.partner-btn-primary {
  background: var(--accent-color);
  color: #ffffff;
}

.partner-btn-primary:hover {
  background: var(--accent-secondary-color);
  color: #ffffff;

  transform: translateY(-4px);
}

/* Outline Button */

.partner-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.85);

  color: #ffffff;
  background: transparent;
}

.partner-btn-outline:hover {
  background: var(--accent-secondary-color);
  color: var(--white-color);

  transform: translateY(-4px);
}

/* ******************************************************** */
.program-section {
  background: #f7fafb;
  padding: 70px 0;
}

.program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.program-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.program-img {
  position: relative;
  overflow: hidden;
}

.program-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: 100% 0%;
  transition: 0.6s;
}

.program-card:hover .program-img img {
  transform: scale(1.12);
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.1),
    transparent
  );
}

.program-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  padding: 10px 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.program-content {
  padding: 20px;
}

.program-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #102542;
}

.program-content p {
  color: #5c6b73;
  line-height: 1.4;
  margin-bottom: 0px;
}

.program-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  border: 2px solid #2a9341;
  color: #2a9341;
  padding: 10px;
  border-radius: 50px;
  font-weight: 700;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

.program-btn::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2a9341;
  transition: 0.4s;
  z-index: 0;
}

.program-btn span {
  position: relative;
  z-index: 2;
}

.program-btn:hover {
  color: #fff;
}

.program-btn:hover::before {
  left: 0;
}

.program-btn {
  position: relative;
  z-index: 1;
}

.program-btn {
  color: #2a9341;
}

.program-btn:hover {
  color: #fff;
}

.program-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 85%;
  text-transform: uppercase;
  bottom: 25px;
  font-size: 14px;
}

.program-btn {
  isolation: isolate;
}

.program-btn::before {
  z-index: -1;
}

/* ******************************************************** */
/* ******************************************************** */
/* ******************************************************** */
/* ******************************************************** */
/* ******************************************************** */
/* ******************************************************** */
/*==========================
        Responsive
===========================*/

@media (max-width: 1199px) {
  .partner-title {
    font-size: 56px;
  }

  .partner-description {
    font-size: 21px;
  }
  .program-content h3 {
    font-size: 24px;
  }

  .program-img img {
    height: 240px;
  }
}

@media (max-width: 991px) {
  .partner-section {
    padding: 100px 0;
  }

  .partner-title {
    font-size: 46px;
  }

  .partner-description {
    font-size: 19px;
  }

  .partner-btn {
    min-width: 240px;
    height: 64px;

    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .partner-section {
    padding: 80px 0;
  }

  .partner-title {
    font-size: 36px;

    line-height: 1.2;
  }

  .partner-description {
    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 40px;
  }

  .partner-btn-group {
    flex-direction: column;
  }

  .partner-btn {
    width: 100%;
    min-width: 100%;
  }
  .program-card {
    margin-bottom: 10px;
  }

  .program-content {
    padding: 25px;
  }

  .program-content h3 {
    font-size: 22px;
  }

  .program-img img {
    height: 220px;
  }

  .program-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
}

@media (max-width: 575px) {
  .partner-title {
    font-size: 30px;
  }

  .partner-description {
    font-size: 16px;
  }

  .partner-btn {
    height: 58px;
    font-size: 18px;
  }
}
/*=========================================
Mission Vision
==========================================*/

.mav-mission-section {
  background: #ffffff;
  padding: 70px 0;
}

.mav-mission-wrapper {
  background: #fcfdf8;
  border-radius: 20px;
  padding: 45px;
  border: 1px solid #eef3e6;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
}

.mav-mission-wrapper::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(140, 198, 63, 0.1), transparent 70%);
}

.mav-box {
  gap: 22px;
  position: relative;
  z-index: 2;
}

.mav-icon {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #eff8e7;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mav-icon i {
  font-size: 34px;
  color: #2a9341;
}

.mav-subtitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #2f7d32;
  margin-bottom: 12px;
}

.mav-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.mav-divider {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 90px;
  background: #2a9341;
  opacity: 0.35;
}

/*==========================
Responsive
===========================*/

@media (max-width: 991px) {
  .mav-mission-wrapper {
    padding: 35px 25px;
  }

  .mav-box {
    gap: 18px;
  }

  .mav-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .mav-icon i {
    font-size: 28px;
  }

  .mav-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .mav-mission-wrapper {
    padding: 25px 20px;
    border-radius: 16px;
  }

  .mav-box {
    flex-direction: column;
    text-align: center;
    align-items: center !important;
  }

  .mav-icon {
    margin-bottom: 10px;
  }

  .mav-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .mav-subtitle {
    font-size: 13px;
  }
}
.eve-section {
  background: #eeeeee;
  padding: 70px 0;
}

.eve-card {
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  transition: 0.3s;
}

.eve-card:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.eve-title {
  display: inline-flex;
  align-items: center;
  background: #2f7d32;
  color: #fff;
  border-radius: 50px;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.eve-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: #2f7d32;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 15px;
}

.eve-title h4 {
  margin: 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.eve-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.eve-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.eve-list li:last-child {
  margin-bottom: 0;
}

.eve-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: #2f7d32;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.15);
}

.eve-gallery {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.eve-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Tablet */
@media (max-width: 991px) {
  .eve-card {
    padding: 18px;
  }

  .eve-gallery {
    margin-top: 10px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .eve-title {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .form-group input,
  .form-group textarea {
    padding: 8px;
    font-size: 14px;
  }
  .amount-section {
    margin-bottom: 10px;
  }

  .eve-title h4 {
    font-size: 16px;
  }

  .eve-list li {
    font-size: 14px;
  }

  .eve-gallery img {
    height: 180px;
  }
}
.dris-story-section {
  background: #ffffff;
  padding: 70px 0;
}

.dris-story-card {
  background: #fff;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}

.dris-story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.dris-story-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #2a9341;
}

.dris-content {
  height: 100%;
}

.dris-heading {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.dris-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #2a9341;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 18px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(76, 140, 61, 0.3);
}

.dris-heading h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
}

.dris-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  position: relative;
}

.dris-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #2a9341;
  display: block;
  margin-top: 10px;
  border-radius: 30px;
}

.dris-content p {
  color: #555;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 18px;
}

.dris-image-box {
  width: 180px;
  height: 180px;
  margin: auto;
  border-radius: 50%;
  background: #2a9341;
  padding: 8px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dris-image-box::before {
  content: "";
  position: absolute;
  inset: -12px;
  border: 2px dashed rgba(76, 140, 61, 0.35);
  border-radius: 50%;
}

.dris-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #fff;
}

.dris-highlight {
  margin-top: 25px;
  padding: 18px;
  border-left: 5px solid #2a9341;
  background: #eef7ea;
  border-radius: 12px;
  color: #2d6a2e;
  font-weight: 600;
  line-height: 1.8;
}

.dris-story-card .col-lg-2 {
  position: relative;
}

.dris-story-card .col-lg-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ddd;
}

.dris-story-card .col-lg-2::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #ddd;
}

/* Tablet */

@media (max-width: 991px) {
  .dris-story-card {
    padding: 35px;
  }

  .dris-story-card .col-lg-2::before,
  .dris-story-card .col-lg-2::after {
    display: none;
  }

  .dris-image-box {
    margin: 35px auto;
  }

  .dris-heading {
    flex-direction: column;
    text-align: center;
  }

  .dris-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .dris-heading h3,
  .dris-title {
    text-align: center;
    font-size: 24px;
  }

  .dris-title::after {
    margin: 12px auto 0;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .dris-story-card {
    padding: 25px;
    border-radius: 18px;
  }

  .dris-image-box {
    width: 150px;
    height: 150px;
  }

  .dris-heading h3,
  .dris-title {
    font-size: 22px;
  }

  .dris-content p {
    text-align: center;
    font-size: 14px;
  }

  .dris-highlight {
    text-align: center;
    font-size: 14px;
  }
}
.eye-section {
  background: #eeeeee;
  padding: 70px 0;
}

.eye-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 30px;
  font-weight: 700;
  color: #2b2b2b;
}

.eye-heading i {
  color: #2a9341;
  font-size: 20px;
}

.eye-wrapper {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #ebebeb;
}

.eye-card {
  background: linear-gradient(180deg, #ffffff, #f7fbf3);
  border-radius: 18px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: 0.4s;
  border: 1px solid #e6e6e6;
}

.eye-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.eye-money-icon,
.eye-support-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #2a9341;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  color: #fff;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(108, 164, 59, 0.35);
}

.eye-left-card h6 {
  margin-top: 18px;
  color: #666;
  font-weight: 600;
}

.eye-left-card h1 {
  color: #2a9341;
  font-weight: 800;
  font-size: 42px;
  margin: 10px 0;
}

.eye-left-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}

.eye-center-content {
  padding: 0 20px;
}

.eye-top-text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.eye-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eye-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 18px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}

.eye-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: #2a9341;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: bold;
}

.eye-right-card h4 {
  margin-top: 18px;
  font-weight: 700;
  color: #2a9341;
}

.eye-right-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

/* Tablet */

@media (max-width: 991px) {
  .eye-wrapper {
    padding: 30px;
  }

  .eye-center-content {
    padding: 0;
  }

  .eye-card {
    margin-bottom: 20px;
  }
}

/* Mobile */

@media (max-width: 767px) {
  .eye-heading {
    font-size: 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .eye-wrapper {
    padding: 20px;
    border-radius: 18px;
  }

  .eye-left-card h1 {
    font-size: 34px;
  }

  .eye-center-content {
    text-align: center;
  }

  .eye-list {
    text-align: left;
    margin-top: 15px;
  }

  .eye-money-icon,
  .eye-support-icon {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
}
/* ---------- FOOTER WRAPPER ---------- */
.foote-wrapper {
  margin-top: auto;
  background: #0b1f3a;
  background: linear-gradient(145deg, #0b1f3a 0%, #112b4a 100%);
  color: #ffffff;
  padding: 3rem 0 0 0;
  font-family: "Poppins", sans-serif;
}

/* ---------- CONTAINER ---------- */
.foote-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- ROW (3 columns) ---------- */
.foote-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

/* ---------- COLUMNS ---------- */
.foote-column {
  display: flex;
  flex-direction: column;
}

/* --- Left Column --- */
.foote-column-left {
  gap: 0.75rem;
}

.foote-org-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.foote-org-name span {
  color: #2e8bff;
}

.foote-description {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 300;
  max-width: 420px;
  margin-top: 0.2rem;
}

/* --- Middle Column --- */
.foote-column-middle {
  gap: 1rem;
}

.foote-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin-bottom: 0.3rem;
}

.foote-title::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  background: #2e8bff;
  border-radius: 4px;
  margin-top: 0.4rem;
}

.foote-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 0.2rem;
}

.foote-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: transform 0.2s ease;
}

.foote-contact-item:hover {
  transform: translateX(4px);
}

.foote-icon-circle {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  background: #2e8bff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 14px;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  box-shadow: 0 4px 12px rgba(46, 139, 255, 0.25);
}

.foote-contact-item:hover .foote-icon-circle {
  transform: scale(1.12);
  background: #3d99ff;
}

.foote-contact-text {
  display: flex;
  flex-direction: column;
  font-size: 0.92rem;
  line-height: 1.5;
}

.foote-contact-label {
  color: #a8bddb;
  font-weight: 300;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.foote-contact-value {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foote-contact-value:hover {
  color: #2e8bff;
}

.foote-contact-value-link {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.foote-contact-value-link:hover {
  color: #2e8bff;
}

.foote-whatsapp-link {
  color: #ffffff;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.foote-whatsapp-link:hover {
  color: #2e8bff;
}

.foote-whatsapp-link i {
  font-size: 0.85rem;
  color: #25d366;
  transition: transform 0.3s ease;
}

.foote-whatsapp-link:hover i {
  transform: scale(1.15);
}

/* --- Right Column --- */
.foote-column-right {
  gap: 1rem;
}

.foote-card {
  background: rgba(46, 139, 255, 0.08);
  border: 1px solid rgba(46, 139, 255, 0.25);
  border-radius: 16px;
  padding: 1.5rem 1.4rem;
  backdrop-filter: blur(2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  margin-top: 0.2rem;
}

.foote-card:hover {
  border-color: rgba(46, 139, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.foote-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.foote-card-icon {
  color: #ffffff;
  font-size: 1.25rem;
  width: 36px;
  height: 36px;
  background: rgba(46, 139, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.foote-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.foote-card-text {
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  font-weight: 300;
  margin: 0;
}

.foote-card-text strong {
  color: #ffffff;
  font-weight: 500;
}

/* ---------- DIVIDER ---------- */
.foote-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.foote-divider-line {
  height: 1px;
  width: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(46, 139, 255, 0.3),
    transparent
  );
}

/* ---------- BOTTOM BAR ---------- */
.foote-bottom {
  padding: 10px 0;
}

.foote-bottom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.foote-copyright {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.6;
}

.foote-copyright strong {
  color: #ffffff;
  font-weight: 900;
}

.foote-copyright br {
  display: none;
}

.foote-social {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.foote-social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.foote-social-link:hover {
  background: #2e8bff;
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(46, 139, 255, 0.35);
  border-color: #2e8bff;
}

.foote-social-link:focus-visible {
  outline: 2px solid #2e8bff;
  outline-offset: 3px;
}

.displa-grid{
    display: grid;
    grid-template-columns: auto auto auto auto auto;
}

/* ---------- RESPONSIVE ---------- */

/* Tablets & small laptops */
@media (max-width: 1024px) {
  .foote-row {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .foote-column-left {
    grid-column: 1 / -1;
  }

  .foote-description {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .foote-wrapper {
    padding: 2rem 0 0 0;
  }

  .foote-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.8rem;
  }

  .foote-column-left {
    grid-column: auto;
  }

  .foote-org-name {
    font-size: 1.5rem;
  }

  .foote-description {
    font-size: 0.88rem;
  }

  .foote-title {
    font-size: 1.05rem;
  }

  .foote-contact-item {
    gap: 0.75rem;
  }

  .foote-icon-circle {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }

  .foote-contact-text {
    font-size: 0.85rem;
  }

  .foote-card {
    padding: 1.2rem 1rem;
  }

  .foote-card-text {
    font-size: 0.85rem;
  }

  .foote-bottom-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0px;
    padding: 0 1rem;
  }

  .foote-copyright {
    font-size: 0.8rem;
  }

  .foote-copyright br {
    display: inline;
  }

  .foote-social {
    gap: 0.5rem;
    /*justify-content:center;*/
  }

  .foote-social-link {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .foote-divider {
    padding: 0 1rem;
  }
}

/* Extra small */
@media (max-width: 380px) {
  .foote-container {
    padding: 0 1rem;
  }

  .foote-org-name {
    font-size: 1.3rem;
  }

  .foote-contact-item {
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .foote-icon-circle {
    width: 32px;
    height: 32px;
    font-size: 0.75rem;
  }

  .foote-contact-value,
  .foote-contact-value-link,
  .foote-whatsapp-link {
    font-size: 0.82rem;
    word-break: break-all;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.foote-contact-value-link:focus-visible,
.foote-whatsapp-link:focus-visible,
.foote-social-link:focus-visible {
  outline: 2px solid #2e8bff;
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-color-scheme: dark) {
  .foote-wrapper {
    background: #08182e;
    background: linear-gradient(145deg, #08182e 0%, #0b1f3a 100%);
  }
}
.contac-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@keyframes contacFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.contac-animate {
  animation: contacFadeIn 0.7s ease forwards;
}

.contac-delay-1 {
  animation-delay: 0.1s;
  opacity: 0;
}

.contac-delay-2 {
  animation-delay: 0.2s;
  opacity: 0;
}

.contac-delay-3 {
  animation-delay: 0.3s;
  opacity: 0;
}

.contac-delay-4 {
  animation-delay: 0.4s;
  opacity: 0;
}

.contac-delay-5 {
  animation-delay: 0.5s;
  opacity: 0;
}

.contac-main {
  background: #ffffff;
  padding: 4rem 0 3rem 0;
}

.contac-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contac-left {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.contac-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 1.8rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 110, 253, 0.08);
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.contac-card:hover {
  box-shadow: 0 12px 40px rgba(13, 110, 253, 0.1);
  transform: translateY(-2px);
}

.contac-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contac-card-title i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.contac-card-title::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(13, 110, 253, 0.2), transparent);
  margin-left: 0.5rem;
}

.contac-info {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contac-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
  cursor: default;
}

.contac-item:hover {
  background: rgba(13, 110, 253, 0.04);
  transform: translateX(4px);
}

.contac-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #ffffff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.contac-item:hover .contac-icon {
  transform: scale(1.08);
}

.contac-icon-email {
  background: var(--accent-secondary-color);
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.3);
}

.contac-icon-phone {
  background: var(--accent-secondary-color);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.contac-icon-web {
  background: var(--accent-secondary-color);
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.3);
}

.contac-icon-whatsapp {
  background: var(--accent-secondary-color);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.contac-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contac-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  font-weight: 500;
}

.contac-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #0b1f3a;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contac-value-link {
  color: #0b1f3a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contac-value-link:hover {
  color: var(--accent-color);
}

.contac-whatsapp-link {
  color: #0b1f3a;
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.3s ease;
}

.contac-whatsapp-link:hover {
  color: #25d366;
}

.contac-whatsapp-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.contac-whatsapp-link:hover i {
  transform: scale(1.15);
}

.contac-note {
  background: #f0f7ff;
  border-left: 5px solid var(--accent-color);
  border-radius: 12px;
  padding: 1.5rem 1.8rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}

.contac-note:hover {
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.1);
}

.contac-note-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(13, 110, 253, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.1rem;
}

.contac-note-content {
  flex: 1;
}

.contac-note-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0b1f3a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.contac-note-text {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.contac-note-text strong {
  color: #0b1f3a;
}

.contac-right {
  display: flex;
  flex-direction: column;
}

.contac-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.2rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(13, 110, 253, 0.08);
  transition: box-shadow 0.3s ease;
}

.contac-form-card:hover {
  box-shadow: 0 12px 40px rgba(13, 110, 253, 0.1);
}

.contac-form-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b1f3a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contac-form-title i {
  color: var(--accent-color);
}

.contac-form-group {
  margin-bottom: 1.2rem;
}

.contac-form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.35rem;
  display: block;
}

.contac-form-label i {
  color: var(--accent-color);
  margin-right: 0.4rem;
  font-size: 0.75rem;
}

.contac-form-control {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 0.92rem;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  background: #fafcff;
  color: #0b1f3a;
  outline: none;
}

.contac-form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.12);
  background: #ffffff;
}

.contac-form-control::placeholder {
  color: #a0aec0;
  font-weight: 300;
}

textarea.contac-form-control {
  min-height: 120px;
  resize: vertical;
}

.contac-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 2.2rem;
  background: linear-gradient(135deg, var(--accent-color), #0a58ca);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 4px 16px rgba(13, 110, 253, 0.3);
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.contac-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(13, 110, 253, 0.4);
}

.contac-btn i {
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.contac-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .contac-row {
    display: flex;
    flex-direction: column-reverse;
  }

  .contac-left {
    order: 2;
  }

  .contac-right {
    order: 1;
  }

  .contac-card {
    padding: 1.8rem 1.5rem;
  }

  .contac-form-card {
    padding: 1.8rem 1.5rem;
  }

  .contac-right {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .contac-main {
    padding: 2.5rem 0 1.5rem 0;
  }

  .contac-card {
    padding: 1.4rem 1rem;
  }

  .contac-form-card {
    padding: 1.4rem 1rem;
  }

  .contac-item {
    padding: 0.4rem 0.4rem;
    gap: 0.75rem;
  }

  .contac-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .contac-value {
    font-size: 0.85rem;
  }

  .contac-label {
    font-size: 0.6rem;
  }

  .contac-note {
    padding: 1.2rem 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }

  .contac-note-icon {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .contac-note-text {
    font-size: 0.85rem;
  }

  .contac-form-control {
    font-size: 0.85rem;
    padding: 0.6rem 0.85rem;
  }

  .contac-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
  }
}

@media (max-width: 380px) {
  .contac-card-title {
    font-size: 1rem;
  }

  .contac-form-title {
    font-size: 1rem;
  }

  .contac-item {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .contac-icon {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

.contac-form-control:focus-visible,
.contac-btn:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 2px;
}
/* **************************** */
.gallery-dropdown {
  width: 420px;
  position: relative;
  margin: 70px auto 0;
  font-family: inherit;
}

.gallery-dropdown-btn {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 0px 15px rgb(0 0 0 / 12%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-dropdown-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-dropdown-menu {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 400px;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  padding: 10px 0;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 999;
}

.gallery-dropdown.active .gallery-dropdown-menu {
  display: block;
}

.gallery-dropdown-menu li {
  padding: 8px 15px;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid #00000024;
}

.gallery-dropdown-menu li:hover {
  background: #16a34a;
  color: #fff;
}

.gallery-dropdown-menu li.active {
  background: #16a34a;
  color: #fff;
}

/* Scrollbar */

.gallery-dropdown-menu::-webkit-scrollbar {
  width: 8px;
}

.gallery-dropdown-menu::-webkit-scrollbar-thumb {
  background: #16a34a;
  border-radius: 20px;
}

.gallery-dropdown-menu::-webkit-scrollbar-track {
  background: #f5f5f5;
}
@media (max-width: 640px) {
    .gallery-dropdown {
        width: 95%;
        margin-left: 2.5%;
    }
}

