.about-history {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.history-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: #2b2b2b;
  color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.about-work {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.work-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  background: #2b2b2b;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.work-content:hover {
  transform: translateY(-5px);
}

/* Text Section */
.work-text-section {
  flex: 1 1 60%;
}

.work-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #007bff;
  font-weight: 600;
}

.work-text {
  font-size: 1.1rem;
  color: #040202;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Image Section */
.work-image-section {
  flex: 0 1 20%;
  text-align: center;
}
.work-image-section-1 {
  flex: 1 1 35%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(231, 114, 5, 0.1);  
}

.work-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(216, 123, 25, 0.1);
}

.work-image-section img:hover {
  transform: scale(1.05);
}

/* Text Section */
.history-text-section {
  flex: 1 1 60%;
  color: #000000;
}

.history-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #d16614;
  font-weight: 600;
}

.history-text {
  font-size: 1.1rem;
  color: #c4b4b4;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Image Section */
.history-image-section {
  flex: 1 1 35%;
  text-align: center;
  box-shadow: 0 8px 20px rgba(231, 114, 5, 0.1);
}

.history-image-section img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(216, 123, 25, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission, .vision {
    flex: 1 1 100%;
  }

  .work-content, .history-content {
    flex-direction: column;
  }

  .work-text-section, .history-text-section {
    flex: 1 1 100%;
  }

  .work-image-section, .history-image-section {
    flex: 1 1 100%;
  }

  .work-image-section img{
    max-width: 80%;
  }
  .history-image-section img {
    max-width: 105%;
  }
}

#about-gsc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header Section */
.about-header {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.about-title {
  font-size: 2.5rem;
  margin: 0;
}

/* Mission and Vision Section */
.about-mission-vision {
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.mission, .vision {
  flex: 1 1 calc(50% - 40px);
  background: #2b2b2b;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission:hover, .vision:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.mission::before, .vision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e8c24f, #d7a258);
}

.mission-title, .vision-title {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: #ff6f00;
  font-weight: 900;
  position: relative;
  padding-bottom: 15px;
}

.mission-title::after, .vision-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
}

.mission-text, .vision-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
}

/* History Section */
.about-history {
  margin: 0 auto;
  padding: 20px 20px;
  text-align: left;
}

.history-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff6f00;
}

.history-text {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Work Section */
.about-work {
  margin: 0 auto;
  padding: 20px 20px;
  text-align: left;
}

.work-title {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff6f00;
}

.work-text {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 10px;
  text-align: left;
}
.envoys-section {
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
}
.envoys-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.envoy-card {
    background-color: #2b2b2b;
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.envoy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(216, 123, 25, 0.15);
}
.envoy-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Responsive Design for Envoys */
@media (max-width: 992px) {
    .envoys-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .envoys-grid {
        grid-template-columns: 1fr;
    }
}
/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-mission-vision {
    flex-direction: column;
  }

  .mission, .vision {
    flex: 1 1 100%;
  }

  .about-header {
    padding: 20px;
  }

  .about-title {
    font-size: 2rem;
  }
  
  .intro-section h2 {
    font-size: 1.8em;
  }

  .intro-section p {
    font-size: 1em;
  }

  .cta-buttons a {
    font-size: 1em;
    padding: 0.6em 1.2em;
  }
  
  .intro-section p {
    padding: 5px 20px;
  }
  .membership-benefits {
    padding: 20px 20px;
  }    
  .benefit-section {
    margin-top: -19px;
    margin-bottom: -13px;
  }
}

/* General Styles */
.intro-section {
  text-align: left;
  padding: 2em 1em;
}

.intro-section h2 {
  font-size: 2.9em;
  /* margin-bottom: 1em; */
  color: #ff6f00;
}

.intro-section h3{
  font-size: 1.9;
  margin: 1em;
  color: #ff6f00;
}


.intro-section p {
  margin: 1em 0;
  font-size: 1.2em;
  max-width: 100%;
  padding: 5px 50px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.cta-buttons {
  margin-top: 1.5em;
}

.cta-buttons a {
  display: inline-block;
  text-decoration: none;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  font-size: 1.1em;
  margin: 0 0.5em;
  color: #fff;
}

.btn-primary {
  background: linear-gradient(90deg, #f9d423, #ff4e50);
}

.btn-secondary {
  background: linear-gradient(90deg, #18c5ff, #00a1c7);
}

.btn-primary:hover, .btn-secondary:hover {
  opacity: 0.9;
}

/* Membership Benefits Section */
.membership-benefits {
  padding: 2em 1em;
  text-align: left;
  background-color: #111;
  padding: 0px 70px;
}

.membership-benefits h2 {
  font-size: 2.5em;
  margin-bottom: 1.5em;
  color: #ff6f00;
}

/* Benefit Section */
.benefit-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -100px;
  margin-bottom: -50px;
}

.benefit-section:last-child {
  border-bottom: none;
}

.content {
  flex: 1 1 45%;
  padding: 1em;
  text-align: left;
}

.content .icon {
  max-width: 80px;
  margin-bottom: 1em;
}

.content h3 {
  font-size: 1.8em;
  margin-bottom: 0.8em;
  color: #fff;
}

.content p {
  font-size: 1.2em;
  margin-bottom: 1em;
}

.quote {
  flex: 0 1 40%;
}

.quote p {
  font-style: italic;
  margin-bottom: 0.5em;
  color: #fff;
}

.quote h4 {
  font-weight: bold;
  color: #0073a8;
}

/* Button Styles */
.btn-primary {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(90deg, #ffa726, #ff7043);
  color: #fff;
  padding: 0.8em 1.5em;
  border-radius: 25px;
  font-size: 1em;
}

.btn-primary:hover {
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefit-section {
    flex-direction: column;
  }

  .content, .quote {
    flex: 1 1 100%;
    text-align: center;
  }

  .content h3, .content p {
    padding: 10px 3px;
    font-size: 1rem;
    line-height: 1.9;
    text-align: left;
  }
}

/* Section Styling */
.members-section {
  padding: 19px 40px;
  text-align: left;
}

.members-intro {
  text-align: center;
}

.members-intro h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.members-intro p {
  max-width: 600px;
  margin: 0 auto 20px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.btn {
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.learn-more {
  background: #007bff;
}

.contact-us {
  background: linear-gradient(45deg, #f39c12, #f1c40f);
}

.btn:hover {
  opacity: 0.8;
}

.logos img {
  display: block;
  max-width: 100%;
  margin: 20px auto;
}

/* Membership Section */
.membership-form-section {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 20px;
}

.form-container {
  flex: 1;
  max-width: 50%;
  background-color: #333;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
}

.membership-form input,
.membership-form label,
.membership-form button {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  font-size: 1rem;
}

.membership-form input {
  padding: 10px;
  border: none;
  border-radius: 5px;
}

.membership-form label {
  display: flex;
  align-items: center;
}

.membership-form label input {
  margin-right: 10px;
}

.submit-btn {
  background: linear-gradient(45deg, #f39c12, #f1c40f);
  color: #333;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
}

.membership-info h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.membership-info p {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.membership-info a {
  color: #007bff;
  text-decoration: none;
}

.membership-info a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .membership-form-section {
    flex-direction: column;
  }

  .form-container,
  .membership-info {
    max-width: 100%;
  }
}

/* General Styling for the Section */
.alliance-members {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #2b2b2b;
  border-radius: 20px;
}

.members-content {
  text-align: center;
  margin-bottom: 40px;
}

.members-title {
  font-size: 2.5rem;
  text-align: center;
  margin: 60px 0 40px;
  color: #ff6f00;
  font-weight: 700;
  position: relative;
  padding-bottom: 20px;
}

.members-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  
}

.members-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ffffff;
  max-width: 800px;
  margin: 0 auto;
}

.members-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  padding: 20px;
}

.members-images img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  padding: 20px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.members-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Read More Button */
.read-more-btn {
  background: linear-gradient(90deg, #007bff, #00c6ff);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.read-more-btn:hover {
  background: linear-gradient(90deg, #00c6ff, #007bff);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .members-images {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
  }
  
  .members-title {
    font-size: 1.8rem;
    color: #ff6f00;
  }
  
  .members-description {
    font-size: 1rem;
    padding: 0 20px;
  }
}

/* Animation Effects */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mission, .vision, .history-content, .work-content, .alliance-members {
  animation: fadeIn 0.8s ease-out;
}


















 





