:root {
  --main-color: #3795bd;
  /* Green color */
  --contact-color: #ff2d11;
  --social-media: #1b8bf4;
  --nav-bg: #ffffff;
  --button: #4e31aa;
  --button-hover: #3a1078;
  --main-bg: rgba(245, 222, 179, 0.547);
  --black: black;
}

/* General styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* HEADER */
header {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 40px;
  margin-top: 65px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 100%;
}

.contact-info > a {
  color: black;
  text-decoration: none;
}

.contact-info > a > i {
  color: var(--contact-color);
}

.social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.social-media > a {
  text-decoration: none;
  font-size: 24px;
}

.fa-facebook {
  color: #1877f2;
}

.fa-youtube {
  color: #ff0000;
}

.fa-instagram {
  color: #f33a6a;
}

.fa-whatsapp {
  color: #25d366;
}

/* Course section */
.vertex-care .logo {
  display: block;
  margin: 0 auto 10px auto;
  max-width: 300px;
  height: auto;
}

.vertex-care {
  text-align: center;
  padding: 50px 20px;
  background-color: #ffffff;
}

.vertex-care .container {
  max-width: 800px;
  margin: 0 auto;
}

.vertex-care .title {
  font-size: 56px;
  font-weight: 700;
  margin: 15px 0;
  color: #000;
}

.vertex-care .description {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Achievement section */
.achievements-section {
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.gallery-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery-content {
  padding: 15px 20px;
  text-align: left;
}

.gallery-content h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #333;
}

.gallery-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}


/* Donation */
.donation-section {
  padding: 40px 20px;
  background-color: #ffffff;
}

.donation-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.donation-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.donation-description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #555;
}

.donate-button {
  padding: 12px 25px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.donate-button:hover {
  background-color: #0056b3;
}
.qr-image {
  display: block;
  margin: 20px auto 10px;
  width: 200px;
  height: auto;
}

.donation-details {
  display: none;
  margin-top: 20px;
  text-align: center;
}

.upi-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  gap: 10px;
}

.upi-input {
  padding: 8px 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 200px;
}

.copy-button {
  padding: 8px 14px;
  background-color: #28a745;
  color: #fff;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-button:hover {
  background-color: #218838;
}

/* Footer section */

.site-footer {
  background-color: var(--main-color);
  color: #fff;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  margin: 0;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #007bff;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 14px;
}

.social-media-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-media-links .social-icon {
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.social-media-links .social-icon:hover {
  color: #007bff;
  /* Change to your preferred hover color */
  transform: scale(1.2);
  /* Slight scaling effect on hover */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid #444;
  font-size: 14px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--button-hover);
}

.designer {
  text-decoration: none;
  color: white;
}

.designer:hover {
  color: rgb(255, 0, 0);
}
