/* Reset Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.10s ease-in-out;
}

.slide {
  min-width: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Ensures all slider images have the same width and height */
.slide img {
  width: 100%;
  height: 100vh; /* Fixed height for all images */
  object-fit: cover; /* Ensures images cover the entire area without distortion */
  display: block;
}
/* Slider Buttons */
button.prev, button.next {
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

button.prev {
  left: 10px;
}

button.next {
  right: 10px;
}

@media (max-width: 768px) {
  .slide img {
    height: 50vh; /* Reduce height on smaller devices to ensure full visibility */
  }
}

@media (max-width: 480px) {
  .slide img {
    height: 25vh; /* Further reduce height on very small mobile screens */
  }
}

/* Workspace Section */
.workspace-section {
  display: flex;
  justify-content: space-around;
  padding: 20px;
  background-color: #f9f9f9;
}

.workspace-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  width: 300px; /* Default width for larger screens */
  transition: transform 0.3s, box-shadow 0.3s;
  margin: 15px;
}

.workspace-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.workspace-title {
  color: #4CAF50; /* Green color matching the logo */
  margin-bottom: 10px;
}

.workspace-description {
  color: #555;
  margin-bottom: 20px;
}

.workspace-button {
  background-color: #FF9800; /* Orange color for buttons */
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.workspace-button:hover {
  background-color: #e68a00;
}

/* Responsive Workspace Section */
@media (max-width: 1024px) {
  .workspace-card {
    width: 45%; /* Two cards per row */
  }
}

@media (max-width: 740px) {
  .workspace-card {
    width: 48%; /* Adjusted width for mobile screens to fit two cards */
  }
}

@media (max-width: 360px) {
  .workspace-card {
    width: 100%; /* Full width on very small screens */
  }

  .workspace-card:nth-child(2) {
    display: none; /* Hide second card on small screens */
  }

  .workspace-section {
    flex-direction: column; /* Stack cards vertically on very small screens */
    align-items: center; /* Center align cards */
  }
}

#experts {
  padding: 8px;
  text-align: center;
}

#experts .expert_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 1rem;
  margin-top: 50px;
}
.profile img {
  border-radius: 55%;
  padding: 0px;
  border: 13px solid white;
  height: 240px;
  width: 240px;
  background-size: cover;
  background-position: center;
}

.Pro_link i:hover {
  background: rgb(21, 21, 100);
  color: #fff;
  border: 1 px solid rgb(21, 21, 100);
  cursor: pointer;
}

.Pro_link {
  margin-top: 10px;
}

.Pro_link i {
  padding: 10px 13px;
  border: 1px solid rgb(21, 21, 100);
  cursor: pointer;
  transition: 0.3s ease;
}

#experts .expert_box .profile {
  background-color: #e9e9dc;
  padding: 30px 10px;
}


@media(max-width:769px) {
  #experts {
      padding: 8vw 8vw 4vw 8vw;
      text-align: center;
  }
}


/* About Us Section Styles */
.about-us {
  display: flex;
  background: #f0f0f0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  gap: 20px;
  align-items: flex-start;
  max-width: 100%;
  margin: 0 auto;
}

.about-logo img {
  width: 150px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #333;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1.5px;
  border-bottom: 2px solid #004d00;
  display: inline-block;
  padding-bottom: 5px;
}

.about-content p {
text-align: justify;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif; /* Modern font family */
  line-height: 2.1;
  color: #555;
  margin-bottom: 20px;
}

.address h3 {
  font-size: 1.2em;
  color: #004d00;
  margin-bottom: 8px;
}

.address p {
  margin: 0;
  font-size: 1em;
  color: #444;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  .about-logo img {
      width: 120px;
  }
}


/* General styling for the Initiative section */
.Initiative {
  padding: 50px 20px;
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
}

/* Section title styling */
.Initiative .mission-vision-title h3 {
  font-size: 2.5rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

/* Mission and Vision container styling */
.Initiative .content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

/* Content text styling */
.Initiative .content-text {
  flex: 1;
  padding: 20px;
}

.Initiative .content-text h4 {
  font-size: 1.8rem;
  color: #0056b3;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.Initiative .content-text p {
  text-align: justify;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Content image styling */
.Initiative .content-image {
  flex: 1;
  text-align: center;
}

.Initiative .content-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive styling for smaller devices */
@media (max-width: 768px) {
  .Initiative .content-container {
    flex-direction: column;
  }

  .Initiative .content-text,
  .Initiative .content-image {
    text-align: justify;
  }

  .Initiative .content-text h4 {
    margin-top: 20px;
  }
}

/* Main body styling through class */
.main-body {
  font-family: 'Noto Sans SC', sans-serif; /* Modern font */
  background-color: #f0f4f8;
  display: flex;
  justify-content: center;
}

/* Page Container */
.page-container {
  background-color: #ffffff;
  padding: 30px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}
.page-container:hover {
  box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.2); /* Subtle shadow animation on hover */
}

/* Title */
.initiative-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #3c40c6; /* Vibrant color */
  margin-bottom: 20px;
  position: relative;
  animation: fadeIn 1s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Description */
.initiative-description {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
  font-family: 'Arial', sans-serif;
}

/* Section for each Image and Text block */
.initiative-section {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 10px;
  background: #f9f9ff;
  border-radius: 8px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.initiative-section:hover {
  transform: scale(1.03);
}

/* Image */
.initiative-image {
  width: 300px;
  height: auto;
  margin-right: 15px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.initiative-image:hover {
  transform: scale(1.05); /* Slight zoom-in effect on hover */
}

/* Text within section */
.initiative-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
/* Title */
.initiative-title {
  font-size: 32px; /* Larger font for emphasis */
  font-weight: bold;
  text-align: center;
  background: linear-gradient(45deg, #4e54c8, #8e2de2, #ff6b6b, #ffca28);
  background-size: 200% 200%; /* Make gradient span across a larger area */
   background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #4e54c8; /* Fallback color */
  animation: gradientAnimation 5s ease infinite;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* Shadow for depth */
  transition: transform 0.3s ease;
  cursor: pointer; /* Pointer for interactive feel */
}

/* Gradient Animation */
@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover Effect */
.initiative-title:hover {
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Media Query for responsiveness */
@media (max-width: 768px) {
  .initiative-image {
    width: 200px; /* Adjusted for smaller screens */
  }

  .initiative-title {
    font-size: 24px;
  }

  .initiative-description,
  .initiative-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .initiative-image {
    width: 100%;
  }

  .initiative-title {
    font-size: 20px;
  }

  .initiative-description,
  .initiative-text {
    font-size: 14px;
  }

  .initiative-section {
    flex-direction: column;
    align-items: center;
  }
}

/* Footer Styles */
.footer {
  background: #4CAF50; /* Solid Green Background */
  color: #fff;
  padding: 40px 50px; /* Increased padding for wider layout */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-top: 4px solid #fff;
}

.footer-column {
  text-decoration: none;
  flex: 1;
  margin: 5px;
  padding: 5px;
  border-radius: 8px;
}

.footer-column h3 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #FFEB3B;
  font-weight: bold;
  text-align: center;
}

.footer-column p, .footer-column ul {
   text-decoration: none;
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
}

.footer-column a{
  color: white;
  text-decoration: none;
}

.footer-column ul {
  padding: 0;
  list-style-type: none;
  text-align: center;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

.footer-column ul li a:hover {
  color: #FFEB3B;
}

.footer-column iframe {
  width: 100%;
  height: 150px; /* Adjusted height for better visibility */
  border-radius: 8px;
  border: none;
}

.footer-bottom {
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 0.9em;
  color: #ddd;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
  margin: 0;
  font-style: italic;
}

.footer-bottom a {
  text-decoration: none;
  color: #FFD700;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .footer-column {
    flex: 0 0 100%;
    margin-bottom: 20px;
    text-align: center;
  }

  .footer-column iframe {
    width: 100%;
    height: 300px;
  }

  .footer-column ul li {
    display: block;
    margin-right: 0;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 20px 10px;
  }

  .footer-column h3 {
    font-size: 1.3em;
  }

  .footer-column p, .footer-column ul {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .footer-column iframe {
    height: 250px;
  }

  .footer-bottom {
    font-size: 0.8em;
  }
}



.donated-banner {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.donated_container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.donated-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

.donated-text {
  font-size: 24px;
  color: #2c3e50; /* Dark blue color */
  font-family: 'Comic Sans MS', cursive, sans-serif;
  margin: 0;
  flex: 1 1 auto;
  text-align: center;
}

.donated-button {
  background-color: #28a745; /* Green background */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  margin-top: 10px;
  white-space: nowrap;
}

.donated-button:hover {
  background-color: #218838;
}

/* Responsive Design */
@media (max-width: 768px) {
  .donated-content {
    flex-direction: column;
    text-align: center;
  }

  .donated-button {
    margin-top: 15px;
  }
}


.why-choose-us {
  background: #12ef19;
  color: #fff;
  padding: 60px 0;
  position: relative;
  text-align: center;
}

.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay */
  z-index: 1;
}

.whycontainer {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.heading-section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-family: 'Comic Sans MS', cursive, sans-serif;
}

.heading-section p {
  font-size: 18px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

.feature-number {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
  padding: 10px;
  display: inline-block;
  margin-bottom: 15px;
  text-align: center;
}

.feature-box h3 {
  color: #FFC107;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-box p {
  text-align: justify;
  word-spacing: normal;
  line-height: 1.6;
  font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .heading-section h2 {
    font-size: 28px;
  }

  .heading-section p {
    font-size: 16px;
  }

  .feature-number {
    font-size: 20px;
  }
}
.ChooseUs{

  text-decoration: none;
  color: white;
}
.mission-vision-title {
  font-family: 'Arial', sans-serif;
  font-size: 24px;
  color: black;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 20px auto;
  border-bottom: 2px solid #AED6F1;
  padding-bottom: 10px;
  letter-spacing: 1px;
  width: fit-content;
}

/* Terms and Conditions Section */
.terms-conditions {
  background: #fff;
  padding: 50px 20px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Container */
.terms-conditions .container {
  width: 100%;
}

/* Headings */
.terms-conditions h1 {
  text-align: center;
  color: #4CAF50;
  font-size: 2em;
}

.terms-conditions h2 {
  color: #333;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  margin-top: 20px;
}

/* Paragraphs */
.terms-conditions p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* List Styles */
.terms-conditions ul {
  list-style: none;
  padding: 0;
}

.terms-conditions ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

/* Checkmark Icon for List Items */
.terms-conditions ul li::before {
  content: '✔';
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Links */
.terms-conditions a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

.terms-conditions a:hover {
  text-decoration: underline;
}

/* Contact Information */
.terms-conditions .contact-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-conditions {
      padding: 30px 15px;
  }

  .terms-conditions h1 {
      font-size: 1.8em;
  }

  .terms-conditions h2 {
      font-size: 1.4em;
  }

  .terms-conditions p, 
  .terms-conditions ul li {
      font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .terms-conditions {
      padding: 20px 10px;
  }

  .terms-conditions h1 {
      font-size: 1.6em;
  }

  .terms-conditions h2 {
      font-size: 1.2em;
  }

  .terms-conditions p, 
  .terms-conditions ul li {
      font-size: 0.9em;
  }
}


.center-text {
  text-align: center;
  font-family: 'Comic Sans MS', cursive, sans-serif;
 margin-bottom: 10px;
}
.LatestProjects {
  padding: 40px 20px;
  background-color: #28a745; /* Green background */
  color: #fff;
}


.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card-link {
  text-decoration: none;
  color: inherit;
  flex: 1 1 calc(33.333% - 20px); /* Adjust based on layout */
}

.card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 15px;
}

.card h3 {
    font-weight: 600;
    text-align: center;
    font-size: 30px;
    margin: 0;
    color: #333;
}



.card-link {
  flex: 1 1 calc(33.333% - 20px);
}

/* Tablets: 2 cards in a row */
@media (max-width: 992px) {
  .card-link {
    flex: 1 1 calc(50% - 20px);
  }
}

/* Mobile: 1 card in a row */
@media (max-width: 600px) {
  .cards {
    flex-direction: column;
    gap: 16px;
  }

  .card-link {
    flex: 1 1 100%;
  }

  .card {
    padding: 15px;
  }

  .card h3 {
    font-size: 16px;
  }
}



/* Refund and Returns Policy Section */
.refund-policy {
  background: #fff;
  padding: 50px 20px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Container */
.refund-policy .container {
  width: 100%;
}

/* Headings */
.refund-policy h1 {
  text-align: center;
  color: #4CAF50;
  font-size: 2em;
}

.refund-policy h2 {
  color: #333;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  margin-top: 20px;
}

/* Paragraphs */
.refund-policy p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* List Styles */
.refund-policy ul {
  list-style: none;
  padding: 0;
}

.refund-policy ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

/* Checkmark Icon for List Items */
.refund-policy ul li::before {
  content: '✔';
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Links */
.refund-policy a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

.refund-policy a:hover {
  text-decoration: underline;
}

/* Thank You Message */
.refund-policy .thank-you {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .refund-policy {
      padding: 30px 15px;
  }

  .refund-policy h1 {
      font-size: 1.8em;
  }

  .refund-policy h2 {
      font-size: 1.4em;
  }

  .refund-policy p, 
  .refund-policy ul li {
      font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .refund-policy {
      padding: 20px 10px;
  }

  .refund-policy h1 {
      font-size: 1.6em;
  }

  .refund-policy h2 {
      font-size: 1.2em;
  }

  .refund-policy p, 
  .refund-policy ul li {
      font-size: 0.9em;
  }
}
/* Privacy Policy Section */
.privacy-policy {
  background: #fff;
  padding: 50px 20px;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

/* Container */
.privacy-policy .container {
  width: 100%;
}

/* Headings */
.privacy-policy h1 {
  text-align: center;
  color: #4CAF50;
  font-size: 2em;
}

.privacy-policy h2 {
  color: #333;
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  margin-top: 20px;
}

/* Paragraphs */
.privacy-policy p {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* List Styles */
.privacy-policy ul {
  list-style: none;
  padding: 0;
}

.privacy-policy ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}

/* Checkmark Icon for List Items */
.privacy-policy ul li::before {
  content: '✔';
  color: #4CAF50;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Links */
.privacy-policy a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: bold;
}

.privacy-policy a:hover {
  text-decoration: underline;
}

/* Grievance Officer Details */
.privacy-policy .grievance-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

/* Thank You Message */
.privacy-policy .thank-you {
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-policy {
      padding: 30px 15px;
  }

  .privacy-policy h1 {
      font-size: 1.8em;
  }

  .privacy-policy h2 {
      font-size: 1.4em;
  }

  .privacy-policy p, 
  .privacy-policy ul li {
      font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .privacy-policy {
      padding: 20px 10px;
  }

  .privacy-policy h1 {
      font-size: 1.6em;
  }

  .privacy-policy h2 {
      font-size: 1.2em;
  }

  .privacy-policy p, 
  .privacy-policy ul li {
      font-size: 0.9em;
  }
}

.donation-container {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

.donation-title {
  font-size: 1.8rem;
  color: #ff6600;
  margin-bottom: 15px;
  text-align: center;
}

.donation-description {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 20px;
}

.donation-info {
  margin-top: 20px;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 10px;
}

.account-details h2, .ifsc-code h2 {
  font-size: 1.2rem;
  color: #0056b3;
}

.account-details p, .ifsc-code p {
  font-size: 1rem;
  margin: 5px 0;
  font-weight: bold;
}

.donate-button {
  display: block;
  width: 100%;
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  margin-top: 15px;
}

.donate-button:hover {
  background: #e65c00;
}

/* Right Column Styles */
.donation-form-container {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
}

.donation-form-container h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #0056b3;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-sizing: border-box;
}

.form-group textarea {
  resize: none;
  height: 80px;
}

.submit-button {
  display: block;
  width: 100%;
  background: #0056b3;
  color: #fff;
  border: none;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.submit-button:hover {
  background: #004099;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .row {
      flex-direction: column;
      gap: 30px;
  }

  .donation-title {
      font-size: 1.5rem;
  }

  .donation-description {
      font-size: 0.9rem;
  }

  .donate-button, .submit-button {
      font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .donation-title {
      font-size: 1.3rem;
  }

  .donation-description {
      font-size: 0.85rem;
  }
}

@media (max-width: 576px) {
  .donation-title {
      font-size: 1.2rem;
      text-align: left;
  }

  .donation-description {
      font-size: 0.8rem;
      text-align: left;
  }

  .donate-button, .submit-button {
      font-size: 0.9rem;
      padding: 10px 0;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.action-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px;
  font-family: 'Poppins', sans-serif;
}

.action-card {
      background-color: #d29c2d;
      color: white;
      flex: 1 1 300px;
      padding: 10px;
      text-align: center;
      max-width: 400px;
    }

.action-card:nth-child(2) {
  background-color: #056f36;
}

.icon-circle {
  background: white;
  color: #056f36;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.action-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.action-card p {
  font-size: 15px;
  margin-bottom: 15px;
}

.action-card a {
  font-weight: 700;
  text-decoration: none;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
}

.action-card a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .action-section {
    flex-direction: column;
    align-items: center;
  }
}
