:root {
  --main-color: #3795bd;
  --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%;
}

/* 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: 15px;
  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;
}


/* Main container */
main {
  padding: 20px;
}

/* Gallery heading */

.gallery-heading {
  /* background-color: var(--main-bg); */
  background: linear-gradient(135deg, #1d3557, #457b9d);
  padding: 20px 20px 0;
  border-radius: 24px;
  height: 300px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-heading > h1 {
  font-size: 5rem;
  line-height: 55px;
  font-weight: 700;
  margin-bottom: 10px;
  color: white;
}

@media screen and (max-width: 380px) {
  .gallery-heading > h1 {
    font-size: 3rem;
    line-height: 55px;
  }
}

/* Achievement section */

.hidden {
  display: none !important;
}

.achievements-section {
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.achievements-section h1 {
  font-size: 44px;
  font-weight: bolder;
  font-family: Arial, sans-serif;
  color: var(--black);
  margin-bottom: 10px;
}

.achievements-section h2 {
  font-size: 22px;
  color: #555;
  margin-bottom: 30px;
}

.achievements-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.achievements-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px #0000001a;
  max-width: 550px;
  max-height: 300px;
  padding: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Ensures no overflow */
}

.achievements-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.achievements-card img {
  width: 550px;
  height: 300px;
  object-fit: cover; /* or use contain based on your needs */
}

.achievements-show-more button {
  background-color: #4e31aa;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  margin-top: 20px;
  transition: 0.3s;
}

.achievements-show-more button:hover {
  background-color: #3a1078;
}

/* 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);
}
