/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Base styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.hero-section {
  background-image: url("/static/images/Rectangle\ 116\ (9).png");
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.301);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 0;
  font-weight: 600;
  font-family: "Poppins";
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  font-family: "Poppins";
}

.about-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-container {
  position: relative;
}

.about-label {
  display: inline-block;
  color: #000;
  padding: 8px 16px;
  border: 2px solid #1d4ed8;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: "Roboto Mono";
  font-size: 14px;
  background: transparent;
}

.about-heading {
  font-size: 32px;
  color: #333;
  max-width: 800px;
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: bold;
  font-family: "Poppins";
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.about-image-container {
  width: 93vw;
  /* margin: 40px 0; */
  text-align: center;
  position: relative;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(#7e42ed31, #e57e3544);
  width: 100%;
  height: 98.5%;
}

.about-image {
  width: 100%;
  max-width: 93vw;
  height: 100%;
  /* border-radius: 8px; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.about-text-content {
  max-width: 800px;
  text-align: center;
  font-family: "Lato";
  margin-top: 30px;
}

.about-paragraph {
  color: #666;
  line-height: 1.6;
  margin-bottom: 24px;
  font-size: 16px;
}

.about-paragraph:last-child {
  margin-bottom: 0;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
  background-color: #161618;
  width: 100%;
  padding: 60px 20px;
  font-family: "Inter", sans-serif;
  position: relative;
  overflow: hidden;
}

.leadership-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Header Section */
.leadership-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.leadership-title-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.leadership-label {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

.leadership-heading {
  font-weight: 700;
  font-size: 40px;
  color: #ffffff;
  margin: 0;
}

.leadership-subtitle {
  font-weight: 700;
  font-size: 14px;
  color: #ffffffb2;
  margin: 0;
  text-align: center;
  max-width: 624px;
}

/* Leadership Grid */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 30px;
  width: 100%;
  justify-items: center;
  align-items: start;
}

/* Member Card */
.leadership-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 241px;
}

/* Member Image */
.member-image-wrapper {
  width: 220px; /* increased */
  height: 240px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2; /* bring image above blue box */
  margin-bottom: -60px; /* overlap the blue box */
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

/* Info Box */
.member-info-box {
  background-color: #117396;
  width: 130%;
  border-radius: 5px;
  padding: 60px 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1; /* behind image */
}

/* LinkedIn Button */
.linkedin-button {
  width: 54px;
  height: 44px;
  border-radius: 15px;
  background-color: #0077B5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  position: relative;
  z-index: 2;
}

.linkedin-button:hover {
  background-color: #ffffff;
  transform: scale(1.1);
}

.linkedin-icon {
  width: 26px;
  height:16px;
  object-fit: contain;
  color: #ffffff;
}

.member-name {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
  margin: 0;
}

.member-designation {
  font-weight: 500;
  font-size: 16px;
  color: #ffffffb2;
  margin: 0;
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 1024px) {
  .leadership-grid {
    gap: 50px 25px;
  }
  .member-image-wrapper {
    width: 160px;
    height: 160px;
    margin-bottom: -35px;
  }
}

@media screen and (max-width: 768px) {
  .leadership-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 20px;
  }
  .member-image-wrapper {
    width: 140px;
    height: 140px;
    margin-bottom: -30px;
  }
}

@media screen and (max-width: 600px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .member-image-wrapper {
    width: 120px;
    height: 120px;
    margin-bottom: -25px;
  }
}

.statistics-section {
  background-color: #0e0f10;
  padding: 60px 20px;
  font-family: "Poppins";
  position: relative;
  overflow: hidden;
}

.statistics-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  color: #ffffff;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.stat-line {
  width: 120px;
  height: 2px;
  background-color: #ffffff34;
  margin: 10px auto;
}

.stat-label {
  font-size: 18px;
  margin: 0;
}

.statistics-container-design {
  position: absolute;
  width: 110px;
  top: -3%;
  right: 0;
}

.solutions-section {
  padding: 80px 20px;
}

.solutions-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: center;
}

.solutions-content {
  flex: 1;
  min-width: 300px;
  margin-bottom: 120px;
}

.section-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.indicator-dot-empty {
  min-width: 20px;
  height: 20px;
  border: 1.5px solid rgb(0, 0, 0);
  border-radius: 50%;
  position: relative;
}

.indicator-dot-filled {
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: rgb(0, 0, 0);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.indicator-line {
  height: 1.5px;
  width: 727px;
  background-color: #000;
  margin-left: 5px;
}

.section-label {
  font-size: 16px;
  color: black;
  margin: 0 0 15px 0;
  font-family: "Roboto Mono";
}

.solutions-heading {
  font-size: 36px;
  color: #000;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.2;
  font-family: "Poppins";
}

.solutions-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  font-family: "Lato";
}

.solutions-image {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.solutions-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(#7e42ed31, #e57e3544);
  width: 100%;
  height: 98.5%;
}

.solutions-image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .statistics-container {
    gap: 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .solutions-heading {
    font-size: 32px;
  }
}

@media screen and (max-width: 768px) {
  .statistics-container {
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 calc(50% - 20px);
  }

  .solutions-container {
    flex-direction: column;
  }

  .solutions-content,
  .solutions-image {
    width: 100%;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 480px) {
  .stat-item {
    flex: 0 0 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .solutions-heading {
    font-size: 28px;
  }
}

/* testimonial start */
.reviews__wrapper {
  background: linear-gradient(to bottom, #000000 0%, #0a1b2a 50%, #0d2233 75%, #002244 100%);
  width: 100%;
  min-height: 976px;
  opacity: 1;
  font-family: Arial, sans-serif;
  position: relative;
  padding: 80px 0;
}

.reviews__container {
  max-width: 1932px;
  margin: 0 auto;
  padding: 0 141px;
  position: relative;
  color: #ffffff;
}

.reviews__header {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.reviews__line {
  width: 590px;
  height: 3px;
  background: #ffffff;
}

.reviews__title-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviews__circle-empty {
  width: 20px;
  height: 20px;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.reviews__circle-filled {
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.reviews__label {
  font-size: 18px;
  color: #ffffff;
  font-family: "Roboto Mono", monospace;
}

.reviews__content {
  max-width: 830px;
  margin-bottom: 80px;
}

.reviews__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 24px;
}

.reviews__subheading {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: #ffffff;
  max-width: 618px;
}

.testimonials__grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: nowrap; /* Keep all cards in one line */
}

.testimonial__card {
  flex: 1; /* Equal width distribution */
  max-width: 450px; /* Maximum width per card */
  min-width: 300px; /* Minimum width per card */
  height: 370px;
  border-radius: 8px;
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.testimonial__card:hover {
  transform: translateY(-5px);
}

/* Gradient backgrounds */
.testimonial__card--silver {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(200, 200, 200, 0.1));
}

.testimonial__card--gold {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(255, 193, 7, 0.1));
}

.testimonial__card--copper {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(205, 127, 50, 0.1));
}

.testimonial__image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  overflow: hidden;
}

.testimonial__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.testimonial__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 30px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
}

.testimonial__quote {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 12px;
}

.testimonial__text {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  color: #ffffff;
}

.reviews__decorative-image {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1600px) {
  .reviews__container {
    padding: 0 60px;
    max-width: 1400px;
  }

  .reviews__line {
    width: 400px;
  }

  .testimonials__grid {
    gap: 18px;
  }

  .testimonial__card {
    max-width: 400px;
    min-width: 280px;
    height: 350px;
  }

  .reviews__heading {
    font-size: 40px;
  }

  .reviews__subheading {
    font-size: 20px;
  }

  .reviews__decorative-image {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 1200px) {
  .reviews__container {
    padding: 0 40px;
  }

  .reviews__line {
    width: 300px;
  }

  .testimonials__grid {
    gap: 15px;
  }

  .testimonial__card {
    max-width: 350px;
    min-width: 250px;
    height: 320px;
  }

  .reviews__heading {
    font-size: 36px;
  }

  .reviews__subheading {
    font-size: 18px;
  }

  .testimonial__content {
    padding: 25px;
  }

  .testimonial__quote {
    font-size: 20px;
  }

  .testimonial__text {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .testimonials__grid {
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 25px;
  }

  .testimonial__card {
    flex: none; /* Remove flex growth on smaller screens */
    width: 400px;
    max-width: 400px;
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .reviews__wrapper {
    padding: 60px 0;
    min-height: auto;
  }

  .reviews__container {
    padding: 0 20px;
  }

  .reviews__header {
    margin-bottom: 40px;
  }

  .reviews__line {
    width: 200px;
  }

  .reviews__content {
    margin-bottom: 60px;
  }

  .reviews__heading {
    font-size: 32px;
    line-height: 1.2;
  }

  .reviews__subheading {
    font-size: 16px;
    line-height: 1.4;
  }

  .testimonials__grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .testimonial__card {
    width: 100%;
    max-width: 400px;
    min-width: auto;
    height: 300px;
  }

  .testimonial__content {
    padding: 20px;
  }

  .testimonial__quote {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .testimonial__text {
    font-size: 15px;
    line-height: 1.3;
  }

  .reviews__decorative-image {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .reviews__wrapper {
    padding: 40px 0;
  }

  .reviews__container {
    padding: 0 15px;
  }

  .reviews__line {
    width: 150px;
    height: 2px;
  }

  .reviews__label {
    font-size: 16px;
  }

  .reviews__heading {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .reviews__subheading {
    font-size: 15px;
  }

  .testimonials__grid {
    gap: 25px;
  }

  .testimonial__card {
    max-width: 350px;
    height: 280px;
  }

  .testimonial__content {
    padding: 18px;
  }

  .testimonial__quote {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .testimonial__text {
    font-size: 14px;
    line-height: 1.3;
  }

  .reviews__decorative-image {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 360px) {
  .testimonial__card {
    max-width: 320px;
    height: 260px;
  }

  .testimonial__content {
    padding: 15px;
  }

  .testimonial__quote {
    font-size: 16px;
  }

  .testimonial__text {
    font-size: 13px;
  }

  .reviews__heading {
    font-size: 26px;
  }
}

/* form section start */
.contact-container {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .contact-content {
    width: 100%;
  }
  
  .contact-heading {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    
    font-family: 'Poppins';
  }
  
  .contact-description {
    font-size: 16px;
    line-height: 1.3;
    color: #4a4a4a;
    margin-bottom: 40px;
    font-family: 'Lato';
  }
  
  .contact-form {
    width: 100%;
   
  }
  
  .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
  }
  
  .form-left,
  .form-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: none;
    border-radius: 4px;
    background-color: #f1f1f1;
    font-size: 16px;
    color: #333;
  }
  
  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #232A3F;
    font-family: 'Poppins';
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  .form-submit {
    margin-top: 20px;
  }
  
  .submit-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 1.5px solid #0470D2;
    border-radius: 4px;
    color: #0470D2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .submit-button:hover {
    background-color: rgba(0, 123, 255, 0.1);
  }
  
  .alert-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4caf50;
    color: white;
    padding: 16px 24px;
    border-radius: 4px;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .alert-content {
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .contact-container {
      padding: 40px 20px;
    }
  
    .form-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }
  
    .contact-heading {
      font-size: 28px;
    }
  
    .contact-description br {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .contact-container {
      padding: 30px 15px;
    }
  
    .contact-heading {
      font-size: 24px;
    }
  
    .form-group input,
    .form-group textarea {
      padding: 10px 14px;
      font-size: 14px;
    }
  }

/* form section end */