* {
  margin: 0;
  padding: 0px 0%;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

body {
  background: radial-gradient(circle, #0e357e 0%, #0c1931 100%);
  background-size: cover;
}

/*Landing*/
.header {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0px 4%;
  min-height: 95vh;
  background: radial-gradient(circle, #0e357e 0%, #0c1931 100%);
  position: relative;   z-index: 1; }

.topic {
  text-align: center;
  font-size: 80px;
  font-weight: 600;
}

.text {
  text-align: center;
  font-size: 20px;
  padding: 90px;
  line-height: normal;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: side;
}

.box {
  display: grid;
  width: 100px;
  height: 100px;
  background-color: #d9d9d9;
  transition: transform 0.2s;
  opacity: 1;
  border-radius: 5px;
  position: absolute;
}
.box img {
  width: 100px;
  height: 100px;
  border-radius: 5px;
}

.box:hover {
  transform: scale(1.1);
}

.box:nth-child(1) {
  top: 25%;
  left: 12%;
}

.box:nth-child(2) {
  top: 25%;
  right: 12%;
}

.box:nth-child(3) {
  top: 48%;
  left: 20%;
}

.box:nth-child(4) {
  bottom: 10%;
  left: 10%;
}

.box:nth-child(5) {
  bottom: 5%;
  right: 30%;
}

.box:nth-child(6) {
  bottom: 8%;
  right: 12%;
}

.box:nth-child(7) {
  bottom: 2%;
  left: 32%;
}

.box:nth-child(8) {
  top: 53%;
  right: 20%;
}

/*About Us | Who are we*/
.who-are-we {
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 50%, #f4c512 100%);
  text-align: center;
  min-height: 100vh;
  padding: 60px 0;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.who-are-we::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
    }

@keyframes shimmer {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.who-are-we-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  padding: 0 5%;
}

.who-are-we-badge {
  display: inline-block;
  background: #0c1931;
  color: #f4c512;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.who-are-we h2 {
  font-size: clamp(40px, 8vw, 70px);
  color: white;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}

.who-are-we-underline {
  width: 120px;
  height: 5px;
  background: #0c1931;
  margin: 0 auto 40px;
  border-radius: 3px;
}

.content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin: 0 auto;
}

.image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.image-frame {
  background: white;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.image-frame:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.image-frame.secondary:hover {
  transform: translateY(-10px) rotate(-2deg);
}

.who-are-we-main_logo {
  width: 300px;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 300px;
  background: white;
}

.who-are-we-main_logo[alt=""],
.who-are-we-main_logo:not([src]) {
    content: "";
}

.who-are-we-cover {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.who-are-we-text-container {
  text-align: left;
  max-width: 550px;
  flex: 1;
}

.who-are-we-text-wrapper {
  position: relative;
}

.who-are-we-text {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
  text-align: justify;
}

.who-are-we-text-expanded {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease-out,
    opacity 0.3s ease;
  opacity: 0;
}

.who-are-we-text-expanded.show {
  max-height: 500px;
  opacity: 1;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0c1931;
  color: #f4c512;
  border: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.read-more-btn:hover {
  background: #0e357e;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(12, 25, 49, 0.3);
}

.read-more-icon {
  transition: transform 0.3s ease;
}

.read-more-btn.active .read-more-icon {
  transform: rotate(180deg);
}

.who-are-we-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(12, 25, 49, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #0c1931;
}

.stat-label {
  font-size: 14px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*Presidental Theme*/
.presidential-theme {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  min-height: 80vh;
  padding: 80px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.presidential-theme::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #0c1931, #f4c512, #0c1931);
}

.presidential-theme-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.theme-badge {
  display: inline-block;
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  color: #0c1931;
  padding: 10px 30px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(244, 197, 18, 0.4);
}

.presidential-theme h3 {
  text-align: center;
  font-size: clamp(32px, 5vw, 50px);
  color: #0c1931;
  margin-bottom: 10px;
}

.theme-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #0c1931);
  margin: 0 auto 50px;
  border-radius: 2px;
}

.theme-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
}

.written_things {
  flex: 1;
  max-width: 600px;
  text-align: left;
  position: relative;
}

.theme-quote-icon {
  font-size: 50px;
  color: #f4c512;
  opacity: 0.5;
  margin-bottom: 10px;
}

.Written_Theme {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #0c1931;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.theme-divider {
  width: 60px;
  height: 3px;
  background: #f4c512;
  margin-bottom: 25px;
}

.Theme_Description {
  text-align: justify;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.8;
  color: #444;
}

.theme-logo-container {
  position: relative;
  flex-shrink: 0;
}

.presidential-theme-logo {
  width: 280px;
  height: 280px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.presidential-theme-logo:hover {
  transform: scale(1.05);
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.8;
  }
}

.presidential-theme-logo {
  height: 280px;
  width: 280px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

.presidential-theme-logo:hover {
  transform: scale(1.05) rotate(5deg);
}

/*Our Purpose | Vision , Mission*/
.vision-mission {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 50%, #0c1931 100%);
  min-height: 90vh;
  padding: 80px 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.vm-heading {
  font-size: clamp(36px, 6vw, 55px);
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.vm-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #f5a623);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.vm-subheading {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
}

.vm-cards {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.vm-card {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  background: white;
  border-radius: 25px;
  padding: 40px 35px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.vm-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.vision-card {
  border-top: 5px solid #f4c512;
}

.mission-card {
  border-top: 5px solid #0e357e;
}

.vm-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  transition: transform 0.3s ease;
}

.vm-card:hover .vm-card-icon {
  transform: scale(1.1) rotate(10deg);
}

.vision-card .vm-card-icon {
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  color: #0c1931;
  box-shadow: 0 10px 30px rgba(244, 197, 18, 0.4);
}

.mission-card .vm-card-icon {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(12, 25, 49, 0.4);
}

.vm-card-content h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 15px;
  color: #0c1931;
}

.vision-card .vm-card-content h3 {
  color: #0c1931;
}

.mission-card .vm-card-content h3 {
  color: #0e357e;
}

.vm-card-content p {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

.vm-list {
  list-style: none;
  padding: 0;
}

.vm-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: clamp(13px, 1.6vw, 15px);
  color: #444;
  border-bottom: 1px solid #eee;
}

.vm-list li:last-child {
  border-bottom: none;
}

.vision-card .vm-list li i {
  color: #f4c512;
  font-size: 16px;
}

.mission-card .vm-list li i {
  color: #0e357e;
  font-size: 16px;
}

.vm-card-decoration {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  opacity: 0.1;
}

.vision-card .vm-card-decoration {
  background: #f4c512;
}

.mission-card .vm-card-decoration {
  background: #0e357e;
}

/*Activities | What we do*/
.what-we-do {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 80px 20px;
  width: 100%;
  position: relative;
}

.what-we-do::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4c512, #0c1931, #f4c512);
}

.wwd-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wwd-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  color: white;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.wwd-heading {
  font-size: clamp(32px, 5vw, 50px);
  color: #0c1931;
  margin-bottom: 10px;
}

.wwd-underline {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #0c1931);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.wwd-subheading {
  font-size: clamp(16px, 2vw, 18px);
  color: #666;
  margin-bottom: 50px;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.wwd-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.wwd-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #0c1931);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.wwd-card:hover::before {
  transform: scaleX(1);
}

.wwd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.wwd-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 32px;
  color: #0c1931;
  transition: all 0.4s ease;
}

.wwd-card:hover .wwd-icon {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  color: #f4c512;
  transform: scale(1.1) rotate(10deg);
}

.wwd-card h3 {
  font-size: 22px;
  color: #0c1931;
  margin-bottom: 15px;
}

.wwd-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/*Core Values | Our Values*/
.our-values {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  color: #fff;
  padding: 80px 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.our-values::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  animation: shimmer 15s infinite linear;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.values-badge {
  display: inline-block;
  background: #f4c512;
  color: #0c1931;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.values-heading {
  font-size: clamp(32px, 5vw, 50px);
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
}

.values-underline {
  width: 100px;
  height: 4px;
  background: #f4c512;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.values-subheading {
  font-size: clamp(16px, 2vw, 18px);
  color: #fff;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.value-item {
  background: white;
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateX(10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.value-number {
  font-size: 48px;
  font-weight: 800;
  color: #f4c512;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(12, 25, 49, 0.1);
  flex-shrink: 0;
}

.value-content h3 {
  font-size: 20px;
  color: #0c1931;
  margin-bottom: 10px;
}

.value-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .wwd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .what-we-do {
    padding: 60px 15px;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .wwd-card {
    padding: 30px 20px;
  }

  .wwd-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .our-values {
    padding: 60px 15px;
  }

  .value-item {
    padding: 25px 20px;
    gap: 15px;
  }

  .value-number {
    font-size: 36px;
  }

  .value-content h3 {
    font-size: 18px;
  }
}

/*Team*/
.team {
  background: linear-gradient(135deg, #fcdc5e 0%, #f4c512 50%, #fcdc5e 100%);
  padding: 80px 20px;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0c1931, #f4c512, #0c1931);
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}

.team-badge {
  display: inline-block;
  background: #0c1931;
  color: #f4c512;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.team_heading {
  font-size: clamp(28px, 5vw, 50px);
  text-align: center;
  color: #0c1931;
  margin-bottom: 10px;
}

.team-underline {
  width: 100px;
  height: 4px;
  background: #0c1931;
  margin: 0 auto 15px;
  border-radius: 2px;
}

.team_subheading {
  text-align: center;
  font-size: clamp(16px, 2.5vw, 20px);
  color: #333;
  margin-bottom: 40px;
}

.bod-and-general {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 20px 35px;
  border-radius: 15px;
  font-size: 16px;
  text-align: center;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  background: white;
  color: #0c1931;
  font-weight: 600;
  min-width: 200px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn i {
  font-size: 28px;
  margin-bottom: 5px;
  color: #0c1931;
  transition: all 0.3s ease;
}

.tab-btn span {
  font-size: 16px;
  font-weight: 700;
}

.tab-btn small {
  font-size: 12px;
  font-weight: 400;
  color: #666;
}

.tab-btn.active {
  background: #0c1931;
  color: #f4c512;
  border-color: #0c1931;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(12, 25, 49, 0.4);
}

.tab-btn.active i {
  color: #f4c512;
}

.tab-btn.active small {
  color: rgba(244, 197, 18, 0.8);
}

.tab-btn:not(.active):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #0c1931;
}

.tab-content {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.bod-grid-unified {
  display: grid;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
}

.grid-container-3 {
  display: grid;
  gap: 20px;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
}

.president-card {
  grid-column: span 2;
  grid-row: span 2;
}

.president-card .Small_Name {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-top: 15px;
}

.president-card .small_post {
  font-size: clamp(16px, 2vw, 18px);
}

.grid-item {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #0c1931);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.grid-item:hover::before {
  transform: scaleX(1);
}

.grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.grid-item:hover .small {
  transform: scale(1.05);
}

.small {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.Small_Name {
  margin-top: 15px;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 700;
  color: #0c1931;
}

.small_post {
  margin-top: 5px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 500;
  color: #666;
  background: rgba(244, 197, 18, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
}

.member-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 25, 49, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.member-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.member-popup-content {
  background: white;
  border-radius: 25px;
  max-width: 450px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.member-popup-overlay.active .member-popup-content {
  transform: scale(1) translateY(0);
}

.popup-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f4c512;
  color: #0c1931;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-close-btn:hover {
  background: #0c1931;
  color: #f4c512;
  transform: rotate(90deg);
}

.popup-header {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  padding: 30px;
  text-align: center;
  border-radius: 25px 25px 0 0;
}

.popup-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #f4c512;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.popup-header-info h2 {
  color: white;
  font-size: 24px;
  margin-bottom: 5px;
}

.popup-header-info p {
  color: #f4c512;
  font-size: 16px;
  font-weight: 600;
  background: rgba(244, 197, 18, 0.2);
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
}

.popup-body {
  padding: 30px;
}

.popup-message {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  text-align: center;
  font-style: italic;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  border-left: 4px solid #f4c512;
}

.popup-email-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  border-radius: 12px;
}

.popup-email-section i {
  color: #f4c512;
  font-size: 18px;
}

.popup-email-section a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.popup-email-section a:hover {
  color: #f4c512;
}

.popup-extra {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.6;
}

.popup-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f4c512;
  color: #0c1931;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: #0c1931;
  color: #f4c512;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-link.hidden {
  display: none;
}

@media (max-width: 1200px) {
  .bod-grid-unified {
    grid-template-columns: repeat(4, 1fr);
  }

  .grid-container-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .team {
    padding: 40px 15px;
  }

  .tab-btn {
    padding: 15px 25px;
    min-width: 160px;
  }

  .tab-btn i {
    font-size: 22px;
  }

  .tab-btn span {
    font-size: 14px;
  }

  .bod-grid-unified {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .grid-container-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

    .president-card {
    grid-column: span 2;
    grid-row: span 2;
  }

    .member-popup-content {
    max-width: 95%;
    border-radius: 20px;
  }

  .popup-header {
    padding: 25px 20px;
  }

  .popup-photo {
    width: 120px;
    height: 120px;
  }

  .popup-header-info h2 {
    font-size: 20px;
  }

  .popup-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .team {
    padding: 20px 10px;
  }

  .bod-grid-unified,
  .grid-container-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .grid-item {
    padding: 10px;
  }

    .president-card {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bod-and-general {
    gap: 10px;
  }

  .tab-btn {
    padding: 10px 20px;
  }
}

@media (max-width: 992px) {
  .content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .who-are-we-text-container {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }

  .who-are-we-text {
    text-align: center;
  }

  .image {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .who-are-we-main_logo {
    width: 180px;
  }

  .who-are-we-cover {
    width: 180px;
    height: 140px;
  }

  .read-more-btn {
    margin: 10px auto 0;
    display: flex;
  }
}

@media (max-width: 600px) {
  .who-are-we {
    padding: 40px 0;
  }

  .image {
    flex-direction: column;
    align-items: center;
  }

  .image-frame {
    padding: 10px;
  }

  .who-are-we-main_logo {
    width: 180px;
  }

  .who-are-we-cover {
    width: 220px;
    height: 150px;
  }
}

@media (max-width: 992px) {
  .theme-content {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .written_things {
    text-align: center;
    max-width: 100%;
  }

  .theme-quote-icon {
    margin: 0 auto 10px;
  }

  .theme-divider {
    margin: 0 auto 25px;
  }

  .Theme_Description {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .presidential-theme {
    padding: 60px 0;
  }

  .presidential-theme-logo {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 992px) {
  .vm-cards {
    flex-direction: column;
    align-items: center;
  }

  .vm-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 600px) {
  .vision-mission {
    padding: 60px 0;
  }

  .vm-card {
    padding: 30px 25px;
    min-width: auto;
  }

  .vm-card-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/*Testimonials and Member Experiences*/
.Testimonials {
  background: white;
  padding: 0px 0%;
  width: 100%;
  min-height: auto;
}

.Testimonials_heading {
  padding-top: 3%;
  font-size: 45px;
  text-align: center;
  font-weight: 700;
}

.Testimonials_subheading {
  text-align: center;
  font-size: 21px;
  margin-top: -5px;
}

.carousel-container {
  padding: 3% 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.testimonial-item {
  flex: 0 0 70%;
  margin: 0 15%;
  display: flex;
  background-color: #25316e;
  color: white;
  border-radius: 50px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-item.active {
  opacity: 1;
}

.messagecontent {
  width: calc(100% - 330px);
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.person_photo {
  width: 300px;
  height: 300px;
  border-radius: 20px;
  margin: 20px;
}

.person_message {
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  word-wrap: break-word;
  padding-top: 5%;
}

.person_name {
  font-size: 24px;
  font-weight: 500;
  padding-top: 5%;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(37, 49, 110, 0.8);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev {
  left: 5%;
}
.next {
  right: 5%;
}

.past-presidents {
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 50%, #0c1931 100%);
  padding: 80px 20px;
  width: 100%;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.past-presidents::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f4c512, #0c1931, #f4c512);
}

.past-presidents-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.past-presidents-badge {
  display: inline-block;
  background: #f4c512;
  color: #0c1931;
  padding: 8px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.past-presidents-heading {
  font-size: clamp(32px, 5vw, 50px);
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.past-presidents-underline {
  width: 100px;
  height: 4px;
  background: #f4c512;
  margin: 0 auto 20px;
  border-radius: 2px;
}

.past-presidents-subheading {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
}

.past-presidents-grid {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 20px 10px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.past-presidents-grid::-webkit-scrollbar {
  height: 10px;
}

.past-presidents-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.past-presidents-grid::-webkit-scrollbar-thumb {
  background: #f4c512;
  border-radius: 5px;
}

.past-presidents-grid::-webkit-scrollbar-thumb:hover {
  background: #f5a623;
}

.past-president-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  min-width: 300px;
  max-width: 300px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.past-president-card.current-president {
  border: 3px solid #f4c512;
  box-shadow: 0 15px 40px rgba(244, 197, 18, 0.4);
  position: relative;
}

.past-president-card.current-president::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f4c512, #f5a623, #f4c512);
  z-index: 1;
}

.past-president-card.current-president:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(244, 197, 18, 0.5);
}

.past-president-card.current-president .pp-card-info h3 {
  color: #0e357e;
  font-weight: 700;
}

.past-president-card.current-president .pp-role {
  color: #f4c512;
  font-weight: 700;
}

.past-president-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.pp-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.pp-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.past-president-card:hover .pp-card-image img {
  transform: scale(1.1);
}

.pp-tenure-badge {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  color: #0c1931;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.pp-card-info {
  padding: 25px 20px;
  text-align: center;
}

.pp-card-info h3 {
  font-size: 20px;
  color: #0c1931;
  margin-bottom: 5px;
}

.pp-role {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.pp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(12, 25, 49, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.pp-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.pp-popup-content {
  background: white;
  border-radius: 25px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: transform 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.pp-popup-overlay.active .pp-popup-content {
  transform: scale(1) translateY(0);
}

.pp-popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #0c1931;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pp-popup-close:hover {
  background: #f4c512;
  transform: rotate(90deg);
}

.pp-popup-header {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.pp-popup-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pp-popup-body {
  padding: 30px;
  text-align: center;
}

.pp-popup-body h2 {
  font-size: 28px;
  color: #0c1931;
  margin-bottom: 5px;
}

.pp-popup-tenure {
  display: inline-block;
  background: linear-gradient(135deg, #f4c512 0%, #f5a623 100%);
  color: #0c1931;
  padding: 8px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 25px;
}

.pp-popup-farewell {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  position: relative;
  border-left: 4px solid #f4c512;
}

.pp-quote-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  color: #f4c512;
  opacity: 0.5;
}

.pp-popup-farewell p {
  font-size: 16px;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  padding-left: 30px;
}

.pp-popup-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.pp-social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0c1931 0%, #0e357e 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.pp-social-link:hover {
  background: #f4c512;
  color: #0c1931;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(244, 197, 18, 0.4);
}

.pp-social-link.hidden {
  display: none;
}

@media (max-width: 768px) {
  .past-presidents {
    padding: 60px 15px;
  }

  .past-presidents-grid {
    gap: 20px;
    padding: 20px 5px;
  }

  .past-president-card {
    min-width: 260px;
    max-width: 260px;
  }

  .pp-card-image {
    height: 240px;
  }

  .pp-popup-header {
    height: 250px;
  }

  .pp-popup-body {
    padding: 25px 20px;
  }

  .pp-popup-body h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .past-president-card {
    min-width: 240px;
    max-width: 240px;
  }

  .pp-popup-header {
    height: 200px;
  }
}

.terminal-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  padding: 80px 20px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.terminal-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(244, 197, 18, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(14, 53, 126, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.terminal-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.terminal-window {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 25px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: "Monaco", "Menlo", "Ubuntu Mono", "Consolas", monospace;
}

.terminal-header {
  background: linear-gradient(180deg, #3d3d3d 0%, #2d2d2d 100%);
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #1a1a1a;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.terminal-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.terminal-btn:hover {
  opacity: 0.8;
}

.terminal-btn.red {
  background: linear-gradient(180deg, #ff5f57 0%, #e0443e 100%);
  box-shadow: 0 0 0 1px #b5352d;
}

.terminal-btn.yellow {
  background: linear-gradient(180deg, #febc2e 0%, #e5a51c 100%);
  box-shadow: 0 0 0 1px #c08a13;
}

.terminal-btn.green {
  background: linear-gradient(180deg, #28c840 0%, #1aab2e 100%);
  box-shadow: 0 0 0 1px #128820;
}

.terminal-title {
  color: #8b8b8b;
  font-size: 13px;
  font-weight: 500;
}

.terminal-actions {
  display: flex;
  gap: 10px;
}

.copy-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #8b8b8b;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.copy-btn:hover {
  background: #f4c512;
  color: #1e1e1e;
}

.copy-btn.copied {
  background: #28c840;
  color: white;
}

.terminal-body {
  padding: 20px;
  min-height: 200px;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.terminal-prompt {
  color: #28c840;
  font-weight: bold;
  font-size: 16px;
}

.terminal-command {
  color: #f4c512;
  font-size: 15px;
}

.terminal-output {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 20px;
  margin: 15px 0;
  border-left: 3px solid #f4c512;
}

.output-line {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 2;
  display: flex;
  flex-wrap: wrap;
}

.output-label {
  color: #64b5f6;
  margin-right: 10px;
  min-width: 120px;
}

.terminal-cursor {
  color: #f4c512;
  animation: blink 1s step-end infinite;
  font-weight: bold;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.terminal-message {
  text-align: center;
  margin-top: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.terminal-message i {
  color: #f4c512;
  margin: 0 5px;
}

@media (max-width: 600px) {
  .terminal-section {
    padding: 60px 15px;
  }

  .terminal-window {
    border-radius: 10px;
  }

  .terminal-header {
    padding: 10px 12px;
  }

  .terminal-title {
    font-size: 11px;
  }

  .terminal-body {
    padding: 15px;
  }

  .terminal-output {
    padding: 15px;
  }

  .output-line {
    font-size: 12px;
    flex-direction: column;
  }

  .output-label {
    min-width: auto;
    margin-bottom: 2px;
  }
}

/* ==========================================
   ABOUT PAGE - LANDING/HEADER RESPONSIVE
   ========================================== */

@media screen and (max-width: 1200px) {
  .header {
    min-height: 85vh;
    padding: 100px 4% 60px;
  }

  .topic {
    font-size: 60px;
  }

  .text {
    font-size: 18px;
    padding: 50px 20px;
  }

  .box {
    width: 80px;
    height: 80px;
  }

  .box img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    min-height: auto;
    padding: 120px 5% 60px;
  }

  .topic {
    font-size: 50px;
  }

  .text {
    font-size: 16px;
    padding: 30px 15px;
    line-height: 1.6;
  }

  .text br {
    display: none;
  }

    .grid,
  .box {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .header {
    padding: 100px 4% 50px;
  }

  .topic {
    font-size: 40px;
  }

  .text {
    font-size: 15px;
    padding: 25px 10px;
  }
}

@media screen and (max-width: 576px) {
  .header {
    padding: 90px 4% 40px;
  }

  .topic {
    font-size: 32px;
  }

  .text {
    font-size: 14px;
    padding: 20px 5px;
    line-height: 1.7;
  }
}

@media screen and (max-width: 400px) {
  .header {
    padding: 85px 3% 35px;
  }

  .topic {
    font-size: 26px;
  }

  .text {
    font-size: 13px;
    padding: 15px 5px;
  }
}

/* ==========================================
   TESTIMONIALS SECTION - RESPONSIVE
   ========================================== */

@media screen and (max-width: 1200px) {
  .Testimonials_heading {
    font-size: 38px;
    padding: 30px 20px 0;
  }

  .Testimonials_subheading {
    font-size: 18px;
    padding: 0 20px;
  }

  .testimonial-item {
    flex: 0 0 80%;
    margin: 0 10%;
    padding: 15px;
  }

  .person_photo {
    width: 250px;
    height: 250px;
  }

  .messagecontent {
    width: calc(100% - 280px);
  }

  .person_message {
    font-size: 18px;
  }

  .person_name {
    font-size: 22px;
  }
}

@media screen and (max-width: 1024px) {
  .Testimonials_heading {
    font-size: 32px;
  }

  .Testimonials_subheading {
    font-size: 16px;
  }

  .Testimonials_subheading br {
    display: none;
  }

  .testimonial-item {
    flex: 0 0 85%;
    margin: 0 7.5%;
    border-radius: 30px;
  }

  .person_photo {
    width: 200px;
    height: 200px;
    margin: 15px;
  }

  .messagecontent {
    width: calc(100% - 230px);
    padding: 15px;
  }

  .person_message {
    font-size: 16px;
    padding-top: 3%;
  }

  .person_name {
    font-size: 20px;
  }

  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }

  .prev {
    left: 2%;
  }

  .next {
    right: 2%;
  }
}

@media screen and (max-width: 768px) {
  .Testimonials {
    padding: 40px 0;
  }

  .Testimonials_heading {
    font-size: 28px;
    padding: 0 15px;
  }

  .Testimonials_subheading {
    font-size: 14px;
    padding: 0 15px;
    margin-top: 10px;
  }

  .testimonial-item {
    flex: 0 0 90%;
    margin: 0 5%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 25px;
    padding: 25px 20px;
  }

  .person_photo {
    width: 150px;
    height: 150px;
    margin: 0 0 15px 0;
    border-radius: 50%;
  }

  .messagecontent {
    width: 100%;
    padding: 10px 0;
  }

  .person_message {
    font-size: 15px;
    padding-top: 0;
  }

  .person_name {
    font-size: 18px;
    padding-top: 15px;
  }

  .carousel-arrow {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .prev {
    left: 1%;
  }

  .next {
    right: 1%;
  }
}

@media screen and (max-width: 576px) {
  .Testimonials {
    padding: 30px 0;
  }

  .Testimonials_heading {
    font-size: 24px;
  }

  .Testimonials_subheading {
    font-size: 13px;
  }

  .testimonial-item {
    flex: 0 0 92%;
    margin: 0 4%;
    border-radius: 20px;
    padding: 20px 15px;
  }

  .person_photo {
    width: 120px;
    height: 120px;
  }

  .person_message {
    font-size: 14px;
    line-height: 1.6;
  }

  .person_name {
    font-size: 16px;
    padding-top: 12px;
  }

  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {
  .Testimonials_heading {
    font-size: 20px;
  }

  .Testimonials_subheading {
    font-size: 12px;
  }

  .testimonial-item {
    flex: 0 0 94%;
    margin: 0 3%;
    padding: 15px 12px;
    border-radius: 15px;
  }

  .person_photo {
    width: 100px;
    height: 100px;
  }

  .person_message {
    font-size: 13px;
  }

  .person_name {
    font-size: 15px;
    padding-top: 10px;
  }

  .carousel-arrow {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}
