* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #fcf7ff;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5em 2em;
  background-color: #faf3f0;
}

header nav .hamburger {
  display: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #068d9d;
}

header nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav .logo img {
  width: 100px;
  height: 80px;
}

header nav .nav-links .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
}

header nav .nav-links .nav-menu li a {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  color: #068d9d;
  transition: all 0.4s ease;
}

header nav .nav-links .nav-menu li a:hover {
  font-weight: 500;
  transform: scale(1.04);
  color: #102542;
}

/* Navbar Ends */

/* Home Page Starts */

.main-content {
  flex: 1;
}

.main-content .home-section-1 {
  padding: 4em 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  background-color: #068d9d;
  width: 100%;
}

.main-content .home-section-1 .left {
  align-self: flex-start;
  width: 50%;
}

.main-content .home-section-1 .left h1 {
  font-family: 'Playball', cursive;
  font-size: 6vw;
  margin-bottom: 30px;
  color: #102542;
}

.main-content .home-section-1 .left p {
  padding-right: 3em;
  color: white;
  font-size: 1.5vw;
  margin-bottom: 2.5em;
}

.main-content .home-section-1 .left h4 {
  display: flex;
  justify-content: space-between;
  color: #102542;
  background-color: white;
  border-radius: 10px;
  width: 330px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-content .home-section-1 .left h4 span,
.main-content .home-section-1 .left h4 a {
  padding: 10px 20px;
}

.main-content .home-section-1 .left h4 a {
  background-color: #102542;
  color: white;
  text-decoration: none;
  border-radius: 0 10px 10px 0;
}

.main-content .home-section-1 .right {
  width: 50%;
  display: flex;
}

.main-content .home-section-1 .right img {
  width: 90%;
  transform: rotate(5deg);
  border-radius: 4em;
  border: 3px dashed white;
  margin: auto;
}

.main-content .home-section-2 {
  padding: 4em 3em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 2em;
}

.main-content .home-section-2 .section-2-left,
.main-content .home-section-2 .section-2-right {
  padding: 2em;
  border: 4px dashed #068d9d;
  border-radius: 2em;
}

.main-content .home-section-2 .section-2-left h1,
.main-content .home-section-2 .section-2-right h1 {
  font-family: 'Playball', cursive;
  font-size: 4vw;
  margin-bottom: 30px;
  color: #068d9d;
}

.main-content .home-section-2 .section-2-left p,
.main-content .home-section-2 .section-2-right p {
  font-size: 1.2vw;
  font-weight: 500;
  color: #102542;
}

.main-content .home-section-2 .section-2-left .buttons,
.main-content .home-section-2 .section-2-right .buttons {
  margin-top: 1em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
}

.main-content .home-section-2 .section-2-left .buttons a,
.main-content .home-section-2 .section-2-right .buttons a {
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  padding: 10px 20px;
  width: 150px;
  color: white;
  border-radius: 8px;
  border: 2px solid #102542;
  background-color: #102542;
  transition: all 0.4s ease;
}

.main-content .home-section-2 .section-2-left .buttons a:hover,
.main-content .home-section-2 .section-2-right .buttons a:hover {
  background-color: white;
  color: #102542;
  transform: scale(1.01);
}

.main-content .home-section-3 {
  padding: 4em 3em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2em;
  background-color: #068d9d;
}

.main-content .home-section-3 .container {
  width: 500px;
  height: 35vw;
  padding: 2em;
  color: #102542;
  border: 4px dashed #102542;
  border-radius: 2em;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.main-content .home-section-3 .container h2 {
  color: #102542;
  text-align: center;
  font-size: 3.5vw;
  font-family: 'Playball', cursive;
  margin-bottom: 30px;
}

.main-content .home-section-3 .container p {
  font-size: 1.5vw;
  font-weight: 600;
  text-align: center;
}

/* Home Page Ends */

/* About Page Starts */

.main-content .about-section-1 {
  padding: 3em;
  background-color: #068d9d;
}

.main-content .about-section-1 h1 {
  font-family: 'Playball', cursive;
  font-size: 6vw;
  margin-bottom: 30px;
  color: #102542;
}

.main-content .about-section-1 .about-section-1-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  width: 100%;
}

.main-content .about-section-1 .about-section-1-container .left {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 50%;
}

.main-content .about-section-1 .about-section-1-container .left p {
  padding-right: 2em;
  font-size: 1.4vw;
  color: white;
}

.main-content .about-section-1 .about-section-1-container .right {
  align-self: flex-start;
  width: 50%;
}

.main-content .about-section-1 .about-section-1-container .right img {
  width: 100%;
  border-radius: 3em 0 3em 0;
  border: 3px dashed white;
}

.main-content .about-section-2 {
  padding: 0 3em 4em 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2em;
  width: 100%;
  background-color: #068d9d;
}

.main-content .about-section-2 .left,
.main-content .about-section-2 .right {
  width: 50%;
}

.main-content .about-section-2 .left img {
  width: 100%;
  border: 3.5px dashed #fcf7ff;
  border-radius: 0 3em 0 3em;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-content .about-section-2 .right {
  align-self: flex-start;
}

.main-content .about-section-2 .right h2 {
  font-family: 'Playball', cursive;
  font-size: 6vw;
  margin-bottom: 30px;
  color: #102542;
}

.main-content .about-section-2 .right p {
  font-size: 1.5vw;
  font-weight: 500;
  color: #fcf7ff;
}

.main-content .about-section-3 {
  padding: 4em 3em;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content .about-section-3 h2,
.main-content .about-section-4 h2 {
  font-family: 'Playball', cursive;
  font-size: 6vw;
  margin-bottom: 1em;
  color: #102542;
}

.main-content .about-section-3 .team-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 2em 1em;
  max-width: 1400px;
  width: 100%;
}

.main-content .about-section-3 .team-container .member,
.main-content .about-section-4 .team-container .member {
  width: 100%;
  padding: 1.3em;
  border: 4px dashed #068d9d;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  max-width: 300px;
}

.main-content .about-section-3 .team-container .member img,
.main-content .about-section-4 .team-container .member img {
  width: 100%;
  height: 220px;
  border-radius: 1em;
  margin-bottom: 20px;
}

.main-content .about-section-3 .team-container .member div,
.main-content .about-section-4 .team-container .member div {
  color: #102542;
  font-weight: 500;
  font-size: 1.6vw;
}

.main-content .about-section-3 .team-container .member div .designation,
.main-content .about-section-4 .team-container .member div .designation {
  font-size: 1.3vw;
  margin-top: 10px;
  color: #068d9d;
}

.main-content .about-section-4 {
  padding: 0 3em 4em 3em;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-content .about-section-4 .team-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2em 1em;
  max-width: 1400px;
  width: 100%;
}

.main-content .about-section-4 .team-container .member {
  max-width: 300px;
}

.main-content .about-section-5 {
  padding: 4em 3em;
  background-color: #068d9d;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-items: center;
  text-align: center;
  gap: 3em 1em;
}

.main-content .about-section-5 .elements h3 {
  font-family: 'Playball', cursive;
  font-size: 3.5vw;
  margin-bottom: 0.8em;
  color: #102542;
}

.main-content .about-section-5 .elements .advisor-container .advisor {
  margin-bottom: 1.5em;
}

.main-content .about-section-5 .elements .advisor-container .advisor h4,
.main-content .about-section-5 .elements div h4 {
  font-size: 1.8vw;
  font-weight: 600;
  color: #102542;
}

.main-content .about-section-5 .elements .advisor-container .advisor p,
.main-content .about-section-5 .elements div p,
.main-content .about-section-5 .elements p {
  font-weight: 500;
  font-size: 1.3vw;
}

/* About Page Ends */

/* Causes Page Starts */

.main-content .causes-section-1 {
  padding: 1em 3em 4em 3em;
}

.main-content .causes-section-1 h1 {
  font-family: 'Playball', cursive;
  font-size: 6vw;
  margin-bottom: 30px;
  color: #102542;
}

.main-content .causes-section-1 .causes-section-1-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 1em;
  margin: auto;
  max-width: 1500px;
  width: 100%;
}

.main-content .causes-section-1 .causes-section-1-container .campaign {
  padding: 1em;
  background-color: #068d9d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign img {
  width: 100%;
  height: 200px;
  margin-bottom: 1.5em;
  border-radius: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign h4 {
  font-family: 'Playball', cursive;
  font-size: 1.8vw;
  margin-bottom: 0.5em;
  color: #102542;
}

.main-content .causes-section-1 .causes-section-1-container .campaign p {
  font-size: 1.3vw;
  font-weight: 500;
  margin-bottom: 2em;
  text-align: center;
}

.main-content .causes-section-1 .causes-section-1-container .campaign .btn {
  display: block;
  color: #102542;
  background-color: #fcf7ff;
  padding: 10px 20px;
  width: 150px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border: 3px solid white;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 1em;
}

.main-content .causes-section-1 .causes-section-1-container .campaign .btn:hover {
  color: #fcf7ff;
  background-color: #068d9d;
}

/* Causes Page Ends */

/* Contact Page Starts */

.main-content .contact-section-1 {
  padding: 4em 3em;
  background-color: #068d9d;
}

.main-content .contact-section-1 h1 {
  text-align: center;
  font-family: 'Playball', cursive;
  font-size: 5vw;
  margin-bottom: 30px;
  color: #102542;
}

.main-content .contact-section-1 .contact-section-1-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2em;
  max-width: 1400px;
  width: 100%;
  margin: auto;
}

.main-content .contact-section-1 .contact-section-1-container .box {
  max-width: 700px;
  width: 100%;
  color: #fcf7ff;
  background-color: #102542;
  padding: 3em;
  border-radius: 1em;
}

.main-content .contact-section-1 .contact-section-1-container .box h2 {
  font-size: 3vw;
  font-weight: 500;
  margin-bottom: 30px;
}

.main-content .contact-section-1 .contact-section-1-container .box p {
  margin-bottom: 1.5em;
  font-size: 1.3vw;
}

.main-content .contact-section-1 .contact-section-1-container .box .buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-content .contact-section-1 .contact-section-1-container .box .contact-btn,
.main-content .contact-section-1 .contact-section-1-container .box .buttons .contact-btn {
  display: block;
  color: #102542;
  background-color: #fcf7ff;
  padding: 10px 20px;
  width: 130px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border: 3px solid white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.main-content .contact-section-1 .contact-section-1-container .box .contact-btn:hover,
.main-content .contact-section-1 .contact-section-1-container .box .buttons .contact-btn:hover {
  color: #fcf7ff;
  background-color: #102542;
}

.main-content .contact-section-2 {
  padding: 4em 3em;
}

.main-content .contact-section-2 .contact-section-2-container {
  width: 100%;
  padding: 2em;
  border: 4px dashed #068d9d;
  border-radius: 1em;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: 2em;
}

.main-content .contact-section-2 .contact-section-2-container .form {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  align-self: flex-start;
  justify-self: flex-start;
  width: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .form h2 {
  font-size: 4vw;
  font-family: 'Playball', cursive;
  margin-bottom: 20px;
  color: #068d9d;
}

.main-content .contact-section-2 .contact-section-2-container .form form {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .form form input,
.main-content .contact-section-2 .contact-section-2-container .form form textarea {
  padding: 20px;
  border: none;
  outline: none;
  border-radius: 10px;
  font-size: 1.2rem;
  width: 100%;
  color: #fcf7ff;
  background-color: #068d9d;
  resize: none;
}

.main-content .contact-section-2 .contact-section-2-container .form form input[type='submit'] {
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.main-content .contact-section-2 .contact-section-2-container .form form input[type='submit']:hover {
  background-color: #007e8b;
}

.main-content .contact-section-2 .contact-section-2-container .form form input:focus,
.main-content .contact-section-2 .contact-section-2-container .form form textarea:focus {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-content .contact-section-2 .contact-section-2-container .form form input::placeholder,
.main-content .contact-section-2 .contact-section-2-container .form form textarea::placeholder {
  color: #fcf7ff;
}

.main-content .contact-section-2 .contact-section-2-container .map {
  width: 100%;
  height: 100%;
}

.main-content .contact-section-2 .contact-section-2-container .map iframe {
  width: 100%;
  height: 100%;
  border-radius: 1em;
}

/* Contact Page Ends */

/* Gallery Page Starts */

.main-content .gallery-section-hero {
  padding: 3em 3em 2em 3em;
  background-color: #068d9d;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 0 0 2em 2em;
  box-shadow: rgba(100, 100, 111, 0.15) 0px 8px 20px 0px;
}

.main-content .gallery-section-hero h1 {
  font-family: 'Playball', cursive;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  margin-bottom: 0.5em;
  color: #102542;
}

.main-content .gallery-section-hero__lead {
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.6;
  color: #fcf7ff;
  max-width: 42em;
  margin: 0 auto;
}

.main-content .gallery-section-hero .gallery-inline-code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.88em;
  background-color: rgba(16, 37, 66, 0.35);
  color: #fcf7ff;
  padding: 0.12em 0.45em;
  border-radius: 6px;
  word-break: break-all;
}

.main-content .gallery-section-grid-wrap {
  padding: 3em 3em 4em 3em;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
}

.main-content .gallery-msg {
  text-align: center;
  color: #102542;
  font-weight: 500;
  margin-bottom: 1em;
}

.main-content .gallery-msg--error {
  color: #8b1538;
}

.main-content .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
  justify-items: center;
  gap: 2em 1.25em;
  width: 100%;
}

.main-content .gallery-card {
  position: relative;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background-color: #faf3f0;
  border: 4px dashed #068d9d;
  border-radius: 1.25em;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  overflow: hidden;
}

.main-content .gallery-card__trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: #102542;
  cursor: zoom-in;
  line-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.main-content .gallery-card__trigger:hover,
.main-content .gallery-card__trigger:focus-visible {
  transform: scale(1.01);
  box-shadow: rgba(6, 141, 157, 0.35) 0 0 0 3px;
  outline: none;
}

.main-content .gallery-card__trigger img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
}

.main-content .gallery-card__trigger video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  vertical-align: bottom;
  background: #102542;
}

.main-content .gallery-card__media-badge {
  position: absolute;
  top: 0.75em;
  right: 0.75em;
  z-index: 2;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #fcf7ff;
  background: rgba(16, 37, 66, 0.9);
  border: 1px solid #fcf7ff;
  border-radius: 999px;
  padding: 0.25em 0.7em;
  pointer-events: none;
}

.main-content .gallery-card__caption {
  padding: 1em 1.15em 1.25em;
  font-size: 1rem;
  font-weight: 500;
  color: #102542;
  text-align: center;
  line-height: 1.45;
  flex: 1;
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(16, 37, 66, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  cursor: zoom-out;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox__inner {
  max-width: min(100%, 1000px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75em;
  cursor: default;
}

.gallery-lightbox__inner img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75em;
  border: 3px dashed #fcf7ff;
  box-shadow: rgba(0, 0, 0, 0.35) 0 12px 40px;
}

.gallery-lightbox__inner video {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 0.75em;
  border: 3px dashed #fcf7ff;
  background: #000;
  box-shadow: rgba(0, 0, 0, 0.35) 0 12px 40px;
}

.gallery-lightbox__caption {
  color: #fcf7ff;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  max-width: 40em;
  line-height: 1.45;
}

.gallery-lightbox__close {
  position: fixed;
  top: 0.75em;
  right: 0.75em;
  z-index: 1001;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 8px;
  background-color: #068d9d;
  color: #fcf7ff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background-color: #102542;
  outline: 2px solid #fcf7ff;
  transform: scale(1.05);
}

/* Gallery Page Ends */

/* Footer Starts */

footer .trust-content {
  background-color: #faf3f0;
  padding: 4em 3em 2em 3em;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  justify-items: center;
  gap: 2em 1em;
}

footer .trust-content .div-1 p,
footer .trust-content .div-2 p {
  font-size: 1.3vw;
  font-weight: 500;
}

footer .trust-content .div-1 .socials {
  margin-top: 1.5em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

footer .trust-content .div-1 .socials a {
  text-decoration: none;
}

footer .trust-content .div-1 .socials a i {
  font-size: 1.5vw;
  color: #fcf7ff;
  background-color: #102542;
  padding: 12px;
  border-radius: 8px;
  transition: all 0.5s ease;
}

footer .trust-content .div-1 .socials a i:hover {
  transform: scale(1.1);
}

footer .trust-content .div-1 h2,
footer .div-2 h2,
footer .div-3 h2 {
  color: #102542;
  font-size: 2.5vw;
  font-family: 'Playball', cursive;
  margin-bottom: 20px;
}

footer .trust-content .div-3 ul {
  list-style: none;
}

footer .trust-content .div-3 ul li {
  margin-bottom: 8px;
}

footer .trust-content .div-3 ul li a {
  display: block;
  color: #102542;
  font-size: 1.4vw;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer .trust-content .div-3 ul li a:hover {
  transform: translateX(2px);
}

footer .copyright {
  padding: 10px;
  font-size: 1.5vw;
  text-align: center;
  color: #faf3f0;
  background-color: #102542;
}

/* Footer Ends */

/* Responsive CSS Styles */

@media (max-width: 1130px) {
  .main-content .contact-section-1 .contact-section-1-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .gallery-section-hero {
    max-width: none;
    border-radius: 0;
  }
}

@media (max-width: 1025px) {
  .main-content .home-section-1 .left h1 {
    font-size: 4rem;
  }

  .main-content .home-section-1 .left p {
    font-size: 1.1rem;
  }

  .main-content .home-section-1 .right img {
    width: 100%;
  }

  .main-content .home-section-2 .section-2-left h1,
  .main-content .home-section-2 .section-2-right h1 {
    font-size: 3rem;
  }

  .main-content .home-section-2 .section-2-left p,
  .main-content .home-section-2 .section-2-right p {
    font-size: 1rem;
  }

  .main-content .home-section-3 {
    gap: 1em;
  }

  .main-content .home-section-3 .container {
    height: fit-content;
    padding: 1em;
  }

  .main-content .home-section-2 .section-2-left p,
  .main-content .home-section-2 .section-2-right p {
    text-align: center;
  }

  .main-content .home-section-3 .container p {
    font-size: 1.1rem;
  }

  .main-content .about-section-1 h1 {
    font-size: 4rem;
  }

  .main-content .about-section-1 .about-section-1-container {
    flex-direction: column;
    gap: 3em;
  }

  .main-content .about-section-1 .about-section-1-container .left,
  .main-content .about-section-1 .about-section-1-container .right {
    width: 100%;
    display: flex;
  }

  .main-content .about-section-1 .about-section-1-container .left p,
  .main-content .about-section-2 .right p {
    padding-right: 0;
    font-size: 1.1rem;
  }

  .main-content .about-section-1 .about-section-1-container .right img {
    margin: auto;
    width: 70%;
    border-radius: 3em 0 3em 0;
  }

  .main-content .about-section-2 {
    flex-direction: column;
    gap: 3em;
  }

  .main-content .about-section-2 .left {
    width: 100%;
    display: flex;
    order: 1;
  }

  .main-content .about-section-2 .right {
    width: 100%;
  }

  .main-content .about-section-2 .left img {
    margin: auto;
    width: 70%;
  }

  .main-content .about-section-2 .right {
    align-self: flex-start;
  }

  .main-content .about-section-2 .right h2 {
    font-size: 3rem;
    text-align: center;
  }

  .main-content .about-section-3 .team-container .member img,
  .main-content .about-section-4 .team-container .member img {
    width: 100%;
    height: 220px;
    border-radius: 1em;
    margin-bottom: 20px;
  }

  .main-content .about-section-3 .team-container .member div,
  .main-content .about-section-4 .team-container .member div {
    font-size: 1.6rem;
  }

  .main-content .about-section-3 .team-container .member div .designation,
  .main-content .about-section-4 .team-container .member div .designation {
    font-size: 1.3rem;
  }

  .main-content .about-section-5 .elements h3 {
    font-size: 2.5rem;
  }

  .main-content .about-section-5 .elements .advisor-container .advisor h4,
  .main-content .about-section-5 .elements div h4 {
    font-size: 1.4rem;
  }

  .main-content .about-section-5 .elements .advisor-container .advisor p,
  .main-content .about-section-5 .elements div p,
  .main-content .about-section-5 .elements p {
    font-size: 1rem;
  }

  .main-content .about-section-3 .team-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .main-content .home-section-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .causes-section-1 h1 {
    font-size: 3rem;
  }

  .main-content .causes-section-1 .causes-section-1-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-content .causes-section-1 .causes-section-1-container .campaign h4 {
    font-size: 2rem;
  }

  .main-content .causes-section-1 .causes-section-1-container .campaign p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  header nav .hamburger {
    display: block;
  }

  header nav .nav-links {
    display: none;
    position: absolute;
    text-align: center;
    right: 0;
    left: 0;
    top: 90px;
    background-color: #faf3f0;
    z-index: 9;
  }

  header nav .nav-links .nav-menu {
    display: block;
  }

  header nav .nav-links .nav-menu li {
    padding: 0.5em;
  }

  header nav .nav-links.mobile-view {
    display: block;
  }

  .main-content .home-section-1 {
    flex-direction: column;
    gap: 3em;
  }

  .main-content .home-section-1 .left,
  .main-content .home-section-1 .right {
    width: 100%;
  }

  .main-content .home-section-1 .left p {
    padding-right: 0;
  }

  .main-content .home-section-1 .left h4 {
    margin: auto;
  }

  .main-content .home-section-1 .right img {
    transform: rotate(0deg);
    width: 100%;
    border-radius: 1em;
  }

  .main-content .home-section-3 {
    flex-direction: column;
  }

  .main-content .home-section-3 .container {
    margin: auto;
  }

  .main-content .home-section-3 .container {
    width: fit-content;
    height: fit-content;
  }

  .main-content .about-section-1 .about-section-1-container .right img,
  .main-content .about-section-2 .left img {
    width: 100%;
    border-radius: 10px;
  }

  .main-content .about-section-3 .team-container,
  .main-content .about-section-4 .team-container,
  .main-content .about-section-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-content .about-section-3 h2,
  .main-content .about-section-4 h2 {
    font-size: 3rem;
    text-align: center;
  }

  .main-content .contact-section-2 .contact-section-2-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .contact-section-2 .contact-section-2-container .map iframe {
    height: 60vw;
  }

  .main-content .contact-section-1 h1 {
    font-size: 4rem;
    text-align: center;
  }

  .main-content .contact-section-1 .contact-section-1-container .box h2,
  .main-content .contact-section-2 .contact-section-2-container .form h2 {
    font-size: 3rem;
  }

  .main-content .contact-section-1 .contact-section-1-container .box p {
    font-size: 1.3rem;
  }

  footer .trust-content {
    padding: 2em;
    grid-template-columns: repeat(2, 1fr);
    justify-items: flex-start;
  }

  footer .trust-content .div-1 h2,
  footer .div-2 h2,
  footer .div-3 h2 {
    font-size: 2.2rem;
  }

  footer .trust-content .div-1 p,
  footer .trust-content .div-2 p {
    font-size: 1rem;
  }

  footer .trust-content .div-1 .socials a i {
    font-size: 1rem;
  }

  footer .trust-content .div-3 ul li a {
    font-size: 1rem;
  }

  footer .copyright {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .main-content .home-section-1 .left h1 {
    text-align: center;
    font-size: 3.5rem;
  }

  .main-content .causes-section-1,
  .main-content .about-section-3,
  .main-content .about-section-4,
  .main-content .about-section-5 {
    padding: 2em;
  }

  footer .trust-content {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    text-align: center;
  }

  footer .trust-content .div-1 .socials {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .main-content .home-section-1,
  .main-content .home-section-2,
  .main-content .home-section-3 {
    padding: 2em;
  }

  .main-content .home-section-2 .section-2-left,
  .main-content .home-section-2 .section-2-right {
    padding: 1em;
  }

  .main-content .home-section-3 .container h2 {
    font-size: 2rem;
    text-align: center;
  }

  .main-content .about-section-3 .team-container,
  .main-content .about-section-4 .team-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .causes-section-1 h1 {
    text-align: center;
  }

  .main-content .causes-section-1 .causes-section-1-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .gallery-section-hero,
  .main-content .gallery-section-grid-wrap {
    padding: 2em 1.25em 2.5em;
  }

  .main-content .gallery-grid {
    gap: 1.5em 1em;
  }

  .main-content .contact-section-1,
  .main-content .contact-section-2 {
    padding: 2em;
  }

  .main-content .contact-section-1 h1 {
    font-size: 3rem;
  }

  .main-content .contact-section-1 .contact-section-1-container .box {
    padding: 2em;
  }

  .main-content .contact-section-1 .contact-section-1-container .box .contact-btn {
    margin: 0 auto;
  }

  .main-content .contact-section-1 .contact-section-1-container .box .buttons {
    flex-direction: column;
    gap: 1em;
  }

  .main-content .contact-section-2 .contact-section-2-container {
    padding: 1.5em;
  }

  .main-content .contact-section-2 .contact-section-2-container .form h2 {
    text-align: center;
  }

  .main-content .contact-section-2 .contact-section-2-container .map iframe {
    height: 70vw;
  }
}

@media (max-width: 426px) {
  header nav {
    padding: 0.5em 1em;
  }

  .main-content .home-section-1 .left h1 {
    font-size: 2.3rem;
  }

  .main-content .home-section-1 .left h4 {
    width: 250px;
    font-size: 1rem;
    text-align: center;
    align-items: center;
  }

  .main-content .home-section-1 .left h4 a {
    padding: 1.5em 1em;
  }

  .main-content .home-section-2 .section-2-left h1,
  .main-content .home-section-2 .section-2-right h1 {
    font-size: 2rem;
    text-align: center;
  }

  .main-content .home-section-2 .section-2-left .buttons,
  .main-content .home-section-2 .section-2-right .buttons {
    flex-direction: column;
    margin-bottom: 10px;
  }

  .main-content .about-section-1,
  .main-content .about-section-2 {
    padding: 2em;
  }

  .main-content .about-section-1 h1 {
    font-size: 3rem;
    text-align: center;
  }

  .main-content .about-section-1 .about-section-1-container .left p,
  .main-content .about-section-2 .right p {
    font-size: 1rem;
  }

  .main-content .about-section-2 .right h2 {
    font-size: 2.5rem;
  }

  .main-content .about-section-5 {
    grid-template-columns: repeat(1, 1fr);
  }

  .main-content .about-section-5 .elements h3 {
    margin-bottom: 10px;
  }

  .main-content .contact-section-2,
  .main-content .contact-section-1,
  .main-content .causes-section-1 {
    padding: 2em 1em;
  }

  .main-content .contact-section-1 h1 {
    font-size: 3rem;
  }

  .main-content .contact-section-1 .contact-section-1-container .box {
    padding: 1em;
  }

  .main-content .contact-section-2 .contact-section-2-container {
    padding: 1em;
  }

  .main-content .contact-section-1 .contact-section-1-container .box h2,
  .main-content .contact-section-2 .contact-section-2-container .form h2 {
    font-size: 2rem;
    text-align: center;
  }
}
