html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header */
header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  overflow: visible;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: row;
  padding: 10px 0;
  position: relative;
}

.logo-group {
  display: flex;
  flex-direction: column;
}


.support-button {
  display: inline-block;
  padding: 15px 15px;
  background: #c7d210;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 25px;
  margin-right: 10px;
  font-size: 1.5rem;
  position: relative;
  overflow: visible;
  z-index: 1001;
  border: 2px solid transparent;
  border-radius: 40px;
}

.support-button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(199, 210, 16, 0.4);
}
.privacy-link {
  color: #2E86AB;
  text-decoration: none;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.privacy-link:hover {
  color: #1B4F72; 
  text-decoration: underline;
}


/* .support-button::before {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border: 2px dashed #c7d210;
  border-radius: 40px;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  animation: dashFlow 3s linear infinite;
  border-image: repeating-linear-gradient(
    45deg,
    #c7d210 0px,
    #c7d210 10px,
    transparent 10px,
    transparent 20px
  );
  border-image-slice: 1;
}

@keyframes dashFlow {
  0% {
    border-image-source: repeating-linear-gradient(
      45deg,
      #c7d210 0px,
      #c7d210 10px,
      transparent 10px,
      transparent 20px
    );
  }
  25% {
    border-image-source: repeating-linear-gradient(
      135deg,
      #c7d210 0px,
      #c7d210 10px,
      transparent 10px,
      transparent 20px
    );
  }
  50% {
    border-image-source: repeating-linear-gradient(
      225deg,
      #c7d210 0px,
      #c7d210 10px,
      transparent 10px,
      transparent 20px
    );
  }
  75% {
    border-image-source: repeating-linear-gradient(
      315deg,
      #c7d210 0px,
      #c7d210 10px,
      transparent 10px,
      transparent 20px
    );
  }
  100% {
    border-image-source: repeating-linear-gradient(
      405deg,
      #c7d210 0px,
      #c7d210 10px,
      transparent 10px,
      transparent 20px
    );
  }
}

/* Optional: Pause animation on hover */
/* .support-button:hover::before {
  animation-play-state: paused;
} */


.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-top: -1.5rem;
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .header-content {
    flex-wrap: nowrap;
    align-items: flex-start;
    padding: 10px 0 20px 0;
  }

  .logo img {
    height: 70px;
  }

  .subtitle {
    font-size: 0.9rem;
    margin-top: -1.2rem;
    margin-left: 0.8rem;
  }

  .support-button {
    padding: 15px 15px;
    font-size: 0.9rem;
    margin-left: 10px;
    margin-top: 25px;
  }
}
/* Hero Section */
.hero {
  padding: 0;
  margin-top: 70px;
  background: #99cbe6;
  min-height: 600px;
  overflow: hidden;
}

.hero .container {
  max-width: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: 600px;
  max-width: none;
  margin: 0;
}

.hero-image {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  height: 100%;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

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

.hero-text {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #99cbe6;
}

.hero-text h1 {
  font-size: 4rem;
  font-weight: 700;
  color: #0064aa;
  line-height: 1.2;
  text-align: center;
}
.hero-text h1 span {
  color: #008cdc;
}

#typed-text .ti-cursor {
  color: #99cbe6 !important;
}

/* Floating Circle
.circle-float {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #c7d210;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: absolute;
  right: 5%;
  transform: translateY(-50%);
  z-index: 100;
  top: -96px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.circle-float:hover {
  transform: translateY(-50%) scale(1.05);
}

.circle-float::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed #c7d210;
  border-radius: 50%;
  z-index: -1;
  animation: rotate 20s linear infinite;
}

.circle-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
/* Make circle clickable */
/* .circle-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
} */ */

/* Update support card styles */
.support-card {
  position: relative;
  cursor: pointer;
}

.support-cta {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background: #88c999;
  color: white;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.support-cta:hover {
  background: #6bb082;
}
.circle-text {
  line-height: 1.2;
}

.action-text {
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
}

.arrow-container {
  display: inline-block;
  margin-right: 8px;
  animation: bounce 2s infinite;
}

.circle-arrow {
  width: 20px;
  height: 20px;
}

/* @keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(3px);
  }
} */

/* Text Sections */
.text-section {
  padding: 80px 0;
  position: relative;
}

.first-section {
  padding: 40px;
}

.text-section:nth-child(odd) {
  background: #dcdcdc33;
}

.text-section:nth-child(even) {
  background: white;
}

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

.text-content h2 {
  font-size: 2rem;
  color: #2e86ab;
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  text-align: center;
  padding-bottom: 27px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .circle-float {
    right: 50%;
    transform: translate(50%, -50%);
  }
  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .text-content h2 {
    font-size: 1.6rem;
  }

  .circle-float {
    width: 150px;
    height: 150px;
    font-size: 0.95rem;
    padding: 15px;
  }

  .circle-float::before {
    width: 170px;
    height: 170px;
  }

  .circle-arrow {
    width: 16px;
    height: 16px;
  }

  .text-section {
    padding-bottom: 1px;
  }

  .action-text {
    margin-top: 3px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .text-content h2 {
    font-size: 1.6rem;
  }

  .circle-float {
    transform: none !important;
    top: auto !important;
    bottom: 300px;
    right: 50%;
    transform: translateX(50%) !important;
  }

  .circle-float::before {
    width: 160px;
    height: 160px;
  }

  .circle-arrow svg {
    width: 18px;
    height: 18px;
  }

  .text-section {
    padding-bottom: 1px;
  }
}
@media (max-width: 480px) {
  .circle-float {
    width: 130px;
    height: 130px;
    font-size: 0.85rem;
    padding: 12px;
  }

  .circle-float::before {
    width: 150px;
    height: 150px;
  }

  .circle-arrow {
    width: 14px;
    height: 14px;
  }

  .arrow-container {
    margin-right: 5px;
  }
}

/* partners */
.partners {
  background: #f8f9fa;
  text-align: center;
}

.partners-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-container {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 0;
}

.partners-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 2rem;
  padding: 10px 0;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.partners-carousel::-webkit-scrollbar {
  display: none;
}

.partner-logo {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 200px;
  padding: 10px;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

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

.carousel-button {
  position: absolute;
  top: calc(50% + 10px);
  transform: translateY(-50%);
  background: rgba(46, 134, 171, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 10;
  transition: background-color 0.3s, transform 0.3s;
}

.carousel-button:hover {
  background: #2e86ab;
  transform: translateY(-50%) scale(1.1);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.partners .section-title {
  margin-bottom: 0rem;
}
@media (max-width: 768px) {
  .carousel-container {
    max-width: 90%;
  }

  .partners-carousel {
    gap: 1rem;
  }

  .partner-logo {
    width: 150px;
    height: 60px;
  }

  .carousel-button {
    font-size: 1.4rem;
    padding: 8px 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-button.prev {
    left: 5px;
  }
  .carousel-button.next {
    right: 5px;
  }
}
@media (max-width: 480px) {
  .carousel-container {
    padding: 20px 0;
  }

  .partners-carousel {
    gap: 0.5rem;
  }

  .partner-logo {
    width: 120px;
    height: 50px;
    padding: 5px;
  }

  .carousel-button {
    font-size: 1.2rem;
    padding: 6px 10px;
  }
}

/* What We Achieve Section */
.achievements {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #2e86ab;
  margin-bottom: 3rem;
  font-weight: 700;
}

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

.achievement-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.achievement-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.achievement-card h3 {
  font-size: 1.3rem;
  color: #2e86ab;
  margin-bottom: 1rem;
}

.achievement-card p {
  color: #333;
  line-height: 1.6;
}

/* Projects Showcase */
.projects {
  padding: 80px 0;
  background: #f8f9fa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  /* New: Make the grid a flex container for height consistency */
  align-items: stretch;
}

.project-card-link {
  text-decoration: none;
  color: inherit;
}

.project-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  height: 100%; /* New: Ensure the card takes the full height of the grid cell */
  display: flex; /* New: Make the card a flex container */
  flex-direction: column; /* New: Stack the children vertically */
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
  height: 200px;
  overflow: hidden;
  background: linear-gradient(45deg, #2e86ab, #88c999);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.project-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.project-content h3 {
  color: #2e86ab;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  text-align: center;
}

.project-content p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}
/* Statistics Section */
.statistics {
  background: #dcdcdc33;
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
  text-align: left;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  line-height: 1;
  background: linear-gradient(to right, #a8d8ea, #c7d210);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text {
  font-size: 1rem;
  color: #004aad;
  line-height: 1.4;
}
.bold-text {
  font-weight: bold;
}

.black-text {
  color: black;
}

.asterisk {
  color: #c7d210;
  font-weight: bold;
}

.source-note {
  text-align: right;
  color: #333;
  margin: 2rem 0 0;
  padding: 0 15px;
  font-size: 1rem;
}

.source-note::before {
  content: "* ";
  color: #c7d210;
  font-weight: bold;
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 2rem;
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .stat-number {
    margin-bottom: 1rem;
  }

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

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .source-note {
    text-align: center;
    margin: 2rem auto 0;
    max-width: 80%;
  }

  .source-note br {
    display: none;
  }
}

@media (max-width: 480px) {
  .statistics {
    padding: 40px 0;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .stat-number {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
  position: relative;
  margin: 0 3rem;
}

.testimonial-card.left-image {
  margin-left: 6rem;
}

.testimonial-card.right-image {
  margin-right: 6rem;
}

.testimonial-card::before {
  content: '"';
  font-size: 4rem;
  color: #c7d210;
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  line-height: 1.6;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: flex-end;
  /* Align author info to the right */
  padding-right: 80px;
}

.author-avatar {
  width: 120px;
  height: 120px;
  background: #c7d210;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  /* Adjust this value to move the avatar left or right */
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-card.left-image .author-avatar {
  left: -60px;
  top: 332px;
}

.testimonial-card.right-image .author-avatar {
  right: -60px;
  top: 332px;
}

.author-info h4 {
  color: #2e86ab;
  font-size: 1.1rem;
  text-align: right;
}

.author-info p {
  color: #333;
  font-size: 1rem;
  text-align: right;
  /* Align text to right */
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
/* Responsive Testimonials for Mobile */
@media (max-width: 768px) {
  .testimonials {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .testimonial-card {
    margin: 0;
    padding: 1.5rem;
  }

  .testimonial-card.left-image,
  .testimonial-card.right-image {
    margin: 0;
  }

  .testimonial-text {
    padding-top: 0;
    margin-bottom: 2rem;
  }

  .testimonial-author {
    justify-content: flex-start;
    padding-right: 0;
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .author-avatar {
    position: static;
    transform: none;
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    margin-right: 1rem;
  }

  .testimonial-card.left-image .author-avatar,
  .testimonial-card.right-image .author-avatar {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }

  .author-info {
    text-align: left;
  }

  .author-info h4,
  .author-info p {
    text-align: left;
  }
}

/* Support Options */
.support {
  padding: 40px 0;
  background: #f8f9fa;
}

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

.support-card {
  background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
  text-align: left;
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid #ddd;
  padding: 1.5rem;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.support-card h3 {
  color: #2e86ab;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.support-card p {
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.support-cta {
  background: #2e86ab;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.support-cta:hover {
  background: #1976d2;
  transform: translateY(-2px);
}

.support-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

/* NEW: Checkbox group styling to handle the new structure */
.form-group.form-checkbox p {
  font-weight: 600;
  color: #2e86ab;
  margin-bottom: 0.5rem;
}

.form-group.form-checkbox input[type="checkbox"] {
  display: inline-block;
  width: auto;
  margin-right: 10px;
}

.form-group.form-checkbox label {
  display: inline;
  font-weight: normal;
  color: #333;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2e86ab;
  font-weight: 600;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #88c999;
}

.form-submit {
  background: #2e86ab;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
}

.form-submit:hover {
  background: #1976d2;
  transform: translateY(-2px);
}

.contact-person {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-avatar {
  width: 180px;
  height: 180px;
  background: #88c999;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  overflow: hidden;
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-person h3 {
  color: #2e86ab;
  margin-bottom: 0.5rem;
}

.contact-person p {
  color: #333;
  margin-bottom: 1rem;
}

.contact-info {
  text-align: center;
  margin-top: 1.5rem;
}

.contact-info a {
  color: #2e86ab;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
/* Footer */
footer {
  background: #2e86ab;
  color: white;
  padding: 40px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}
/* Single quote mark styling */
.quote-mark {
  position: absolute;
  width: 60px;
  height: 40px;
  top: 2px;
  right: 7px;
  z-index: 1;
}

.quote-mark svg {
  transition: transform 0.3s ease;
  opacity: 0.9;
}

.testimonial-card:hover .quote-mark svg {
  transform: scale(1.1);
  opacity: 1;
}

/* Remove old quote mark if still present */
.testimonial-card::before {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .quote-mark {
    width: 40px;
    height: 30px;
    top: 10px;
    left: 15px;
  }
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

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

  .testimonial-card {
    margin: 0 1rem !important;
  }

  .author-avatar {
    position: static !important;
    transform: none !important;
    margin: 0 auto 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .container {
    padding: 15px 15px;
  }
  .quote-mark {
    width: 40px;
    height: 30px;
    top: 10px;
    left: 15px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .achievements-grid,
  .projects-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

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

  .stat-item {
    justify-content: center;
    text-align: center;
  }
}

/* Awards Section */
.awards-section {
  background-color: #99cbe6;
  padding: 50px 0;
  color: white;
}
.awards-section .section-title {
  color: #0b4f8d;
}
.awards-title {
  color: #0b4f8d;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.awards-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.award-logo {
  width: 180px;
  height: 180px;
  object-fit: contain;
  margin-bottom: 10px;
}

.award-text {
  font-size: 0.9rem;
  line-height: 1.3;
  color: #333;
}
.award-logo-large {
  width: 240px;
  height: auto;
}
@media (max-width: 768px) {
  .awards-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .awards-grid {
    justify-content: center;
    gap: 15px;
  }

  .award-logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .awards-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .awards-grid {
    gap: 10px;
  }

  .award-logo {
    width: 100px;
    height: 100px;
  }
}
/* Widget Overlay */
.widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
  padding: 20px;
  box-sizing: border-box;
}

.widget-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 40px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.3s ease-out;
}

.iframe-container {
  width: 100%;
  min-height: 320px;
}

.iframe-container iframe {
  width: 100%;
  height: 320px;
  border: none;
  border-radius: 8px;
  display: block;
}

.close-widget {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: all 0.3s ease;
  padding: 0;
  background-color: #bad304;
}

.close-widget:hover {
  background: #e0e0e0;
  color: #333;
  transform: rotate(90deg);
}

.close-widget svg {
  width: 20px;
  height: 20px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.success-message {
  display: none;
  background: linear-gradient(135deg, #e8f5e8, #f0fff0);
  border: 3px solid #4caf50;
  color: #2d7a2d;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 550px;
  margin: 1em auto;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.success-message.show {
  display: block;
  opacity: 1;
  transform: scale(1);
  animation: slideInUp 0.8s ease;
}

.checkmark {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
  animation: bounceIn 0.8s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.success-message::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 2s ease-in-out;
}
@media (max-width: 768px) {
  video {
    width: 80%;
  }
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
