/* General Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

.section {
  padding: 60px 0;
}

.section-title, .about2-title, .stats-title, .skills-title, .mission-title, .values-title, .team-title, .founder-title, .partners-title, .video-title, .testimonials-title, .careers-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-title::after, .about2-title::after, .stats-title::after, .skills-title::after, .mission-title::after, .values-title::after, .team-title::after, .founder-title::after, .partners-title::after, .video-title::after, .testimonials-title::after, .careers-title::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f26c21, #f39c12);
  display: block;
  margin: 10px auto;
  border-radius: 2px;
}

.lead-text, .about2-lead, .stats-lead, .skills-lead, .mission-lead, .values-lead, .team-lead, .founder-lead, .partners-lead, .video-lead, .testimonials-lead, .careers-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about2-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.about2-img img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about2-section .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.about2-section .nav-link.active {
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
}

.about2-section .tab-pane h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a1a;
}

.about2-section .tab-pane p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.stats-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.stats-item span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #f26c21;
}

.stats-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
}

/* Skills Section */
.skills-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.skills-progress {
  margin-bottom: 20px;
  width: 100%;
}

.skills-progress .skill {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1a1a1a;
  display: flex;
  justify-content: space-between;
}

.skills-progress .progress-bar-wrap {
  background: #e6e7e8;
  border-radius: 8px;
  overflow: hidden;
}

.skills-progress .progress-bar {
  background: linear-gradient(45deg, #f26c21, #f39c12);
  height: 10px;
  transition: width 1s ease-in-out;
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.mission-hero {
  position: relative;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
  text-align: center;
  overflow: hidden;
}

.mission-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  opacity: 0.3;
}

.mission-hero h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.mission-hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.mission-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.mission-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, #f26c21, #f39c12);
  transform: translateX(-50%);
}

.mission-timeline-item {
  position: relative;
  margin: 40px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mission-timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.mission-timeline-content {
  width: 45%;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(242, 108, 33, 0.3);
}

.mission-timeline-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.mission-timeline-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.mission-details-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.mission-details-link:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 108, 33, 0.4);
}

.mission-timeline-marker {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 4px solid #f26c21;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  transition: transform 0.3s ease;
}

.mission-timeline-item:hover .mission-timeline-marker {
  transform: translateX(-50%) scale(1.3);
  background: #f26c21;
  border-color: #fff;
}

.mission-timeline-connector {
  position: absolute;
  width: 100px;
  height: 2px;
  background: #f26c21;
  top: 50%;
  transform: translateY(-50%);
}

.mission-timeline-item:nth-child(odd) .mission-timeline-connector {
  right: 50%;
  margin-right: 30px;
}

.mission-timeline-item:nth-child(even) .mission-timeline-connector {
  left: 50%;
  margin-left: 30px;
}

/* Values Section Styles */
.values-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.values-hero {
  text-align: center;
  margin-bottom: 40px;
}

.values-hero h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.values-hero p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.values-orbit {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* Adds 10px spacing between cards */
}

.values-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin-bottom: 15px; /* Additional vertical spacing */
  flex: 1 1 calc(33.333% - 20px); /* Adjusts card width with gap consideration */
  max-width: calc(33.333% - 20px); /* Ensures proper spacing */
}

.values-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.values-card h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #f26c21; /* Updated to logo color */
  margin-bottom: 15px;
}

.values-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.values-details-link {
  background-color: #f39c12; /* Updated to logo color */
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.values-details-link:hover {
  background-color: #e08e0b; /* Slightly darker shade of #f39c12 for hover */
}

@media (max-width: 768px) {
  .values-card {
    flex: 1 1 calc(50% - 15px); /* Adjust for smaller screens */
    max-width: calc(50% - 15px);
    margin-bottom: 15px;
  }

  .values-hero h2 {
    font-size: 2rem;
  }

  .values-hero p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .values-card {
    flex: 1 1 100%; /* Full width on very small screens */
    max-width: 100%;
  }
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.team-hero {
  position: relative;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
  background: #fff;
}

.team-hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  z-index: 0;
}

.team-hero-banner-item {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: slide 15s infinite;
}

.team-hero-banner-item:nth-child(1) {
  background: linear-gradient(45deg, rgba(242, 108, 33, 0.8), rgba(243, 156, 18, 0.8)), url('assets/img/team/team-1.jpg');
}

.team-hero-banner-item:nth-child(2) {
  background: linear-gradient(45deg, rgba(242, 108, 33, 0.8), rgba(243, 156, 18, 0.8)), url('assets/img/team/team-2.jpg');
}

.team-hero-banner-item:nth-child(3) {
  background: linear-gradient(45deg, rgba(242, 108, 33, 0.8), rgba(243, 156, 18, 0.8)), url('assets/img/team/team-3.jpg');
}

@keyframes slide {
  0%, 25% { transform: translateX(0); }
  33.33%, 58.33% { transform: translateX(-100%); }
  66.66%, 91.66% { transform: translateX(-200%); }
  100% { transform: translateX(0); }
}

.team-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.team-hero-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.team-hero-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-size: cover;
}

.team-quote {
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-quote p {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 10px;
}

.team-quote cite {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f26c21;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-member {
  perspective: 1000px;
  height: 400px;
  position: relative;
}

.team-member-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.team-member:hover .team-member-inner {
  transform: rotateY(180deg);
}

.team-member-front, .team-member-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: #fff;
}

.team-member-front {
  text-align: center;
}

.team-member-front img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 3px solid #f26c21;
}

.team-member-front h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.team-member-front p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
}

.team-member-back {
  transform: rotateY(180deg);
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  text-align: center;
}

.team-member-back h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.team-member-back p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.team-social-links {
  display: flex;
  gap: 10px;
}

.team-social-links a {
  color: #fff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.team-social-links a:hover {
  color: #000;
}

/* Founder Section */
.founder-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.founder-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #fff;
  max-width: 350px;
  margin: 0 auto;
}

.founder-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.founder-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  border-bottom: 4px solid #f26c21;
}

.founder-card-body {
  padding: 15px;
  text-align: center;
  background: #fff;
}

.founder-card h4 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a3c5e;
  margin-bottom: 5px;
}

.founder-card p {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 0;
}

.founder-quote {
  border-left: 6px solid #f26c21;
  padding: 20px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  color: #34495e;
  position: relative;
  margin: 40px 0;
  transition: all 0.3s ease;
}

.founder-quote:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.founder-quote-footer {
  font-size: 1.1rem;
  color: #2c3e50;
}

.founder-swiper {
  position: relative;
  padding: 20px 0;
}

.founder-swiper .swiper-wrapper {
  align-items: center;
}

.founder-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
  height: 400px;
}

.founder-swiper .swiper-slide img,
.founder-swiper .swiper-slide iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

.founder-swiper .swiper-slide .ratio {
  width: 100%;
  height: 100%;
}

.founder-swiper .swiper-slide .ratio iframe {
  border-radius: 15px;
}

.founder-swiper .swiper-button-prev,
.founder-swiper .swiper-button-next {
  color: #f26c21;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

.founder-swiper .swiper-button-prev:hover,
.founder-swiper .swiper-button-next:hover {
  background: #f26c21;
  color: #fff;
}

.founder-swiper .swiper-pagination-bullet {
  background: #ccc;
  opacity: 0.7;
}

.founder-swiper .swiper-pagination-bullet-active {
  background: #f39c12;
  opacity: 1;
}

.founder-btn-primary {
  background: linear-gradient(45deg, #f26c21, #f39c12);
  border: none;
  padding: 12px 30px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
}

.founder-btn-primary:hover {
  background: linear-gradient(45deg, #f39c12, #e67e22);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.founder-btn-outline {
  border: 2px solid #f26c21;
  color: #f26c21;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 50px;
  padding: 10px 28px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.founder-btn-outline:hover {
  background: #f26c21;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.founder-contact {
  background: #f8f9fa;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.founder-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.founder-icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.founder-icon-list li:hover {
  transform: translateX(5px);
}

.founder-icon-list i {
  color: #f26c21;
  font-size: 1.3rem;
  margin-top: 3px;
}

/* Partners Section */
.partners-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  position: relative;
}

.partners-hero {
  position: relative;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
  overflow: hidden;
  background: #fff;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partners-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.partners-particle {
  position: absolute;
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(242, 108, 33, 0.3), rgba(243, 156, 18, 0.1));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  animation: float 20s infinite ease-in-out;
  opacity: 0.5;
}

.partners-particle:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.partners-particle:nth-child(2) { top: 30%; left: 60%; animation-delay: -5s; }
.partners-particle:nth-child(3) { top: 50%; left: 10%; animation-delay: -10s; }
.partners-particle:nth-child(4) { top: 70%; left: 80%; animation-delay: -15s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-50px) rotate(180deg); }
}

.partners-orb {
  position: relative;
  z-index: 1;
  background: radial-gradient(circle, rgba(242, 108, 33, 0.9), rgba(243, 156, 18, 0.7));
  border-radius: 50%;
  width: 600px;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 30px rgba(242, 108, 33, 0.5);
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.05); opacity: 1; }
}

.partners-orb h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}

.partners-orb p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #fff;
  max-width: 500px;
  line-height: 1.6;
}

.partners-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 280px); /* Fixed width for each column */
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.partners-tile {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid transparent;
  background-clip: padding-box;
  width: 280px; /* Fixed width */
  height: 360px; /* Fixed height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  box-sizing: border-box;
}

.partners-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(242, 108, 33, 0.3);
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(45deg, #f26c21, #f39c12) border-box;
}

.partners-tile-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.partners-tile-content img {
  max-width: 100px;
  max-height: 60px;
  object-fit: contain;
  margin: 0 auto 15px;
}

.partners-tile-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #333;
  margin-bottom: 10px;
}

.partners-tile-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #666;
  flex-grow: 1;
  margin-bottom: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-clamp: 3; /* Limit text to 3 lines */
  -webkit-box-orient: vertical;
}

.partners-tile-content a {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.partners-tile-content a:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
}

.partners-stats {
  margin-top: 40px;
  text-align: center;
}

.partners-stats-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.partners-stats-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.partners-call-to-action {
  margin-top: 40px;
}

.partners-call-to-action h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.partners-call-to-action p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.partners-call-to-action a {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.partners-call-to-action a:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 108, 33, 0.4);
}

/* Modal Styling */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.15); /* Juda engil orqa fon */
  z-index: 1000; /* Orqa fondan pastroq */
  overflow-y: auto;
  display: none; /* Bootstrap tomonidan boshqariladi */
}

.modal-backdrop {
  z-index: 990; /* Modal contentdan pastroq */
}

.modal-dialog {
  max-width: 800px;
  margin: 1.75rem auto;
  position: relative;
  z-index: 1010; /* Orqa fondan yuqori */
}

.modal-content {
  background: #ffffff; /* Toza oq fon */
  border-radius: 15px;
  border: 1px solid #e0e0e0; /* Engil chegara */
  box-shadow: none; /* Soya olib tashlandi */
  position: relative;
  font-family: 'Montserrat', sans-serif;
  z-index: 1020; /* Eng yuqori qatlam */
  opacity: 1; /* Xiralikni oldini olish */
  overflow: hidden;
}

.modal-header {
  padding: 20px 25px;
  border-bottom: 2px solid #f26c21; /* Apelsin chegara */
  background: #ffffff; /* Toza oq fon */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a; /* Qorong'i, aniq matn */
  line-height: 1.4;
  margin: 0;
}

.btn-close {
  background: #f26c21; /* Orange background */
  color: #ffffff; /* White icon */
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem; /* Larger icon */
  border: none;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1080; /* Above all modal elements */
  position: relative;
}

.btn-close:hover {
  background: #f39c12; /* Lighter orange */
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.btn-close::before {
  content: '\00d7'; /* Unicode for × */
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #ffffff;
}

.modal-body {
  padding: 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #1a1a1a; /* Qorong'i, aniq matn */
  line-height: 1.8;
  background: #ffffff; /* Toza oq fon */
  max-height: 60vh;
  overflow-y: auto;
}

.modal-body p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.modal-body h1, .modal-body h2, .modal-body h3, .modal-body h4, .modal-body h5, .modal-body h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.modal-body h1 { font-size: 2.2rem; }
.modal-body h2 { font-size: 2rem; }
.modal-body h3 { font-size: 1.8rem; }
.modal-body h4 { font-size: 1.6rem; }
.modal-body h5 { font-size: 1.4rem; }
.modal-body h6 { font-size: 1.2rem; }

.modal-body a {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  pointer-events: auto;
}

.modal-body a:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Intro Video Section */
.video-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #e8ecef 100%);
  position: relative;
  overflow: hidden;
  min-height: auto;
}

/* Video Title and Lead */
.video-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-title i {
  font-size: 2rem;
  color: #f26c21;
  margin-right: 10px;
}

.video-lead {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #4a4a4a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Video Intro */
.video-intro {
  position: relative;
  height: 80vh;
  max-height: 600px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 40px;
}

.video-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65);
}

.video-intro-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 20px 30px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  text-align: center;
  max-width: 80%;
}

.video-intro-overlay h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.video-intro-overlay p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  margin-bottom: 20px;
}

.video-play-button {
  background: linear-gradient(45deg, #f26c21, #f39c12);
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-button i {
  font-size: 1.2rem;
  margin-right: 8px;
}

.video-play-button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #f39c12, #f26c21);
}

/* Video Play Section */
.video-play {
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.video-play h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.video-play p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

/* Video Background */
.video-background {
  position: relative;
  height: 350px;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

.video-background .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 20px;
  text-align: center;
}

.video-background .video-overlay h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.video-background .video-overlay p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  max-width: 600px;
}

/* Video Carousel */
.video-carousel {
  max-width: 1000px;
  margin: 0 auto 40px;
}

.video-carousel h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.video-carousel p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  text-align: center;
  margin-bottom: 20px;
}

.video-carousel .swiper {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.video-carousel .swiper-slide {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-carousel .swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-carousel .swiper-button-next,
.video-carousel .swiper-button-prev {
  color: #fff;
  background: #f26c21;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-carousel .swiper-button-next:hover,
.video-carousel .swiper-button-prev:hover {
  background: #f39c12;
}

.video-carousel .swiper-pagination-bullet {
  background: #f26c21;
  opacity: 0.6;
}

.video-carousel .swiper-pagination-bullet-active {
  background: #f39c12;
  opacity: 1;
}

.video-carousel .video-caption {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: #4a4a4a;
  text-align: center;
  padding: 10px 0;
}

/* Video Embedded */
.video-embedded {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto 40px;
  max-width: 900px;
}

.video-embedded video {
  width: 45%;
  border-radius: 8px;
  max-height: 300px;
  object-fit: cover;
}

.video-embedded .video-content {
  flex: 1;
}

.video-embedded .video-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.video-embedded .video-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
}

.video-embedded.left-align {
  flex-direction: row;
}

.video-embedded.right-align {
  flex-direction: row-reverse;
}

.video-embedded.center-align {
  flex-direction: column;
  text-align: center;
}

.video-embedded.center-align video {
  width: 100%;
  max-width: 600px;
}

/* Video Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.video-modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
  border-radius: 10px;
  overflow: hidden;
}

.video-modal-content video {
  width: 100%;
  height: auto;
}

.video-close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f26c21;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-close-button:hover {
  background: #f26c21;
  color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 0;
  }

  .video-title {
    font-size: 2rem;
  }

  .video-lead {
    font-size: 1rem;
  }

  .video-intro {
    height: 60vh;
    max-height: 400px;
  }

  .video-intro-overlay h2 {
    font-size: 1.8rem;
  }

  .video-intro-overlay p {
    font-size: 0.9rem;
  }

  .video-play-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .video-background {
    height: 250px;
  }

  .video-background .video-overlay h3 {
    font-size: 1.4rem;
  }

  .video-background .video-overlay p {
    font-size: 0.85rem;
  }

  .video-carousel .swiper {
    height: 200px;
  }

  .video-embedded {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .video-embedded video {
    width: 100%;
    max-height: 200px;
  }

  .video-embedded .video-content h3 {
    font-size: 1.3rem;
  }

  .video-embedded .video-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .video-title {
    font-size: 1.8rem;
  }

  .video-title i {
    font-size: 1.5rem;
  }

  .video-intro {
    height: 50vh;
    max-height: 300px;
  }

  .video-intro-overlay {
    padding: 15px;
  }

  .video-intro-overlay h2 {
    font-size: 1.5rem;
  }

  .video-intro-overlay p {
    font-size: 0.85rem;
  }

  .video-play h3 {
    font-size: 1.5rem;
  }

  .video-play p {
    font-size: 0.9rem;
  }

  .video-carousel h3 {
    font-size: 1.5rem;
  }

  .video-carousel .swiper {
    height: 180px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
}

.testimonials-carousel .swiper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.testimonials-carousel .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-item {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 500px;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(242, 108, 33, 0.3);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #f26c21;
}

.testimonial-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.testimonial-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #f26c21;
  margin-bottom: 10px;
}

.testimonial-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
  line-height: 1.6;
}

.testimonials-carousel .swiper-pagination-bullet {
  background: #f26c21;
  opacity: 0.7;
}

.testimonials-carousel .swiper-pagination-bullet-active {
  background: #f39c12;
  opacity: 1;
}

/* Careers Section */
.careers-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.careers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.careers-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.careers-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(242, 108, 33, 0.3);
}

.careers-item-content h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.careers-item-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.careers-item-content a {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.careers-item-content a:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
}

.careers-cta {
  margin-top: 40px;
  text-align: center;
}

.careers-cta h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.careers-cta p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin-bottom: 20px;
}

.careers-cta a {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.careers-cta a:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(242, 108, 33, 0.4);
}



/* Scroll Top Button */
.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, #f26c21, #f39c12);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}

.scroll-top:hover {
  background: linear-gradient(45deg, #f39c12, #f26c21);
  transform: scale(1.1);
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#preloader::before {
  content: '';
  width: 40px;
  height: 40px;
  border: 4px solid #f26c21;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-Width: 991px) {
  .founder-card {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .founder-card img {
    height: 300px;
  }
  .founder-swiper .swiper-slide {
    height: 250px;
  }
  .founder-contact {
    padding: 30px;
  }

  .values-section {
    padding: 60px 0;
  }
  .values-hero {
    padding: 40px 15px;
  }
  .values-hero h2 {
    font-size: 2.2rem;
  }
  .values-hero p {
    font-size: 1rem;
  }
  .values-title {
    font-size: 1.8rem;
  }
  .values-lead {
    font-size: 0.95rem;
  }
  .values-orbit {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 15px;
  }
  .values-card {
    padding: 15px;
    min-height: 200px;
  }
  .values-card h4 {
    font-size: 1.25rem;
  }
  .values-card p {
    font-size: 0.9rem;
  }
  .values-details {
    font-size: 0.85rem;
  }

  .testimonials-section {
    padding: 60px 0;
  }
  .testimonials-carousel .swiper {
    padding: 15px;
  }
  .testimonial-item {
    padding: 20px;
  }

  .careers-section {
    padding: 60px 0;
  }
  .careers-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
  }

  .footer-top {
    padding: 0 15px;
  }
  .footer-about .logo {
    font-size: 1.8rem;
  }
  .footer-contact p {
    font-size: 0.9rem;
  }
  .footer-links h4 {
    font-size: 1.1rem;
  }
  .footer-links ul li a {
    font-size: 0.9rem;
  }
  .footer-newsletter h4 {
    font-size: 1.1rem;
  }
  .footer-newsletter p {
    font-size: 0.9rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form input[type="email"],
  .newsletter-form input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section-title, .about2-title, .stats-title, .skills-title, .mission-title, .values-title, .team-title, .founder-title, .partners-title, .video-title, .testimonials-title, .careers-title {
    font-size: 2rem;
  }
  .lead-text, .about2-lead, .stats-lead, .skills-lead, .mission-lead, .values-lead, .team-lead, .founder-lead, .partners-lead, .video-lead, .testimonials-lead, .careers-lead {
    font-size: 1rem;
    padding: 0 10px;
  }

  .mission-section {
    padding: 40px 0;
  }
  .mission-hero h2 {
    font-size: 2.2rem;
  }
  .mission-hero p {
    font-size: 1rem;
  }
  .mission-timeline::before {
    left: 30px;
  }
  .mission-timeline-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .mission-timeline-item:nth-child(odd) {
    flex-direction: column;
  }
  .mission-timeline-content {
    width: 100%;
    margin-left: 60px;
  }
  .mission-timeline-marker {
    left: 30px;
  }
  .mission-timeline-connector {
    left: 30px;
    width: 30px;
  }
  .mission-timeline-item:nth-child(odd) .mission-timeline-connector {
    right: auto;
    margin-right: 0;
  }
  .mission-timeline-item:nth-child(even) .mission-timeline-connector {
    left: 30px;
    margin-left: 0;
  }

  .values-section {
    padding: 40px 0;
  }
  .values-hero {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .values-hero h2 {
    font-size: 1.8rem;
  }
  .values-hero p {
    font-size: 0.9rem;
  }
  .values-title {
    font-size: 1.6rem;
  }
  .values-lead {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  .values-card {
    padding: 12px;
    min-height: 180px;
  }
  .values-card h4 {
    font-size: 1.15rem;
  }
  .values-card p {
    font-size: 0.85rem;
  }
  .values-details {
    font-size: 0.8rem;
    padding: 8px;
  }
  .values-details-link {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .team-section {
    padding: 40px 0;
  }
  .team-hero-content h2 {
    font-size: 2.2rem;
  }
  .team-hero-content p {
    font-size: 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .team-member {
    height: auto;
    min-height: 400px;
  }
  .team-hero-banner-item {
    background: linear-gradient(45deg, rgba(242, 108, 33, 0.8), rgba(243, 156, 18, 0.8));
  }
  .team-hero-wave {
    height: 60px;
  }

  .founder-section {
    padding: 40px 0;
  }
  .founder-swiper .swiper-slide {
    height: 200px;
  }

  .partners-section {
    padding: 40px 0;
  }
  .partners-hero {
    height: 300px;
  }
  .partners-orb {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .partners-orb h2 {
    font-size: 2.2rem;
  }
  .partners-orb p {
    font-size: 1rem;
  }
  .partners-particle {
    display: none;
  }
  .partners-mosaic {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .partners-tile {
    border-radius: 8px;
    min-height: 300px;
  }

  .video-section {
    padding: 40px 0;
    min-height: auto;
  }
  .video-intro {
    height: 60vh;
  }
  .video-intro-overlay h2 {
    font-size: 2rem;
  }
  .video-intro-overlay p {
    font-size: 1rem;
  }
  .video-play {
    padding: 30px 15px;
    margin-bottom: 10px;
  }
  .video-play h3 {
    font-size: 1.5rem;
  }
  .video-play p {
    font-size: 0.9rem;
  }
  .video-background {
    height: 300px;
  }
  .video-carousel .swiper {
    height: 200px;
  }
  .video-embedded {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }
  .video-embedded video {
    width: 100%;
    max-width: 100%;
  }
  .video-embedded.left-align,
  .video-embedded.right-align,
  .video-embedded.center-align {
    flex-direction: column;
  }

  .modal-dialog {
    max-width: 90%;
    margin: 1rem auto;
  }

  .modal-content {
    border-radius: 12px;
  }

  .modal-header {
    padding: 15px 20px;
  }

  .modal-title {
    font-size: 1.5rem;
  }

  .btn-close {
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }

  .modal-body {
    padding: 20px;
    font-size: 1rem;
  }

  .modal-body p {
    font-size: 1rem;
  }

  .modal-body h1 { font-size: 2rem; }
  .modal-body h2 { font-size: 1.8rem; }
  .modal-body h3 { font-size: 1.6rem; }
  .modal-body h4 { font-size: 1.4rem; }
  .modal-body h5 { font-size: 1.2rem; }
  .modal-body h6 { font-size: 1rem; }


  .testimonials-section {
    padding: 40px 0;
  }
  .testimonial-item {
    padding: 15px;
  }
  .testimonial-img {
    width: 80px;
    height: 80px;
  }
  .testimonial-item h3 {
    font-size: 1.2rem;
  }
  .testimonial-item h4 {
    font-size: 0.9rem;
  }
  .testimonial-item p {
    font-size: 0.85rem;
  }

  .careers-section {
    padding: 40px 0;
  }
  .careers-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .careers-item-content h4 {
    font-size: 1.2rem;
  }
  .careers-item-content p {
    font-size: 0.85rem;
  }
  .careers-cta h3 {
    font-size: 1.5rem;
  }
  .careers-cta p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .section-title, .about2-title, .stats-title, .skills-title, .mission-title, .values-title, .team-title, .founder-title, .partners-title, .video-title, .testimonials-title, .careers-title {
    font-size: 1.8rem;
  }
  .lead-text, .about2-lead, .stats-lead, .skills-lead, .mission-lead, .values-lead, .team-lead, .founder-lead, .partners-lead, .video-lead, .testimonials-lead, .careers-lead {
    font-size: 0.9rem;
  }

  .mission-hero {
    padding: 40px 20px;
  }
  .mission-timeline-content {
    margin-left: 50px;
  }
  .mission-timeline::before {
    left: 20px;
  }
  .mission-timeline-marker {
    left: 20px;
  }
  .mission-timeline-connector {
    left: 20px;
    width: 20px;
  }

  .values-section {
    padding: 30px 0;
  }
  .values-hero {
    padding: 20px 10px;
    margin-bottom: 30px;
  }
  .values-hero h2 {
    font-size: 1.6rem;
  }
  .values-hero p {
    font-size: 0.85rem;
  }
  .values-title {
    font-size: 1.4rem;
  }
  .values-lead {
    font-size: 0.85rem;
  }
  .values-orbit {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }
  .values-card {
    padding: 10px;
    min-height: 160px;
  }
  .values-card h4 {
    font-size: 1.1rem;
  }
  .values-card p {
    font-size: 0.8rem;
    line-height: 1.5;
  }
  .values-details {
    font-size: 0.75rem;
    padding: 6px;
  }
  .values-details-link {
    font-size: 0.75rem;
    padding: 5px 10px;
  }

  .team-hero {
    padding: 40px 15px;
  }
  .team-hero-content h2 {
    font-size: 1.8rem;
  }
  .team-hero-content p {
    font-size: 0.9rem;
  }
  .team-member-front img {
    width: 100px;
    height: 100px;
  }
  .team-member-back p {
    font-size: 0.85rem;
  }
  .team-quote p {
    font-size: 1rem;
  }
  .team-quote cite {
    font-size: 0.85rem;
  }

  .founder-card img {
    height: 200px;
  }
  .founder-card h4 {
    font-size: 1.5rem;
  }
  .founder-card p {
    font-size: 1rem;
  }

  .partners-orb h2 {
    font-size: 1.8rem;
  }
  .partners-orb p {
    font-size: 0.9rem;
  }
  .partners-tile-content img {
    max-width: 100px;
    max-height: 60px;
  }
  .partners-tile-content h4 {
    font-size: 1.2rem;
  }
  .partners-tile-content p {
    font-size: 0.85rem;
  }

  .video-intro {
    height: 50vh;
  }
  .video-intro-overlay h2 {
    font-size: 1.5rem;
  }
  .video-intro-overlay p {
    font-size: 0.9rem;
    padding: 0 10px;
  }
  .video-play {
    padding: 20px 10px;
  }
  .video-play h3 {
    font-size: 1.3rem;
  }
  .video-play p {
    font-size: 0.8rem;
  }
  .video-play-button {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
  .video-background {
    height: 200px;
  }
  .video-carousel .swiper {
    height: 150px;
  }
  .video-embedded {
    padding: 10px;
    border-width: 2px;
  }
  .video-embedded .video-content h3 {
    font-size: 1.2rem;
  }
  .video-embedded .video-content p {
    font-size: 0.85rem;
  }
  .video-modal-content {
    max-width: 95%;
  }
  .video-close-button {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  

  .testimonials-section {
    padding: 30px 0;
  }
  .testimonial-item {
    padding: 10px;
  }
  .testimonial-img {
    width: 60px;
    height: 60px;
  }
  .testimonial-item h3 {
    font-size: 1.1rem;
  }
  .testimonial-item h4 {
    font-size: 0.85rem;
  }
  .testimonial-item p {
    font-size: 0.8rem;
  }

  .careers-section {
    padding: 30px 0;
  }
  .careers-item-content h4 {
    font-size: 1.1rem;
  }
  .careers-item-content p {
    font-size: 0.8rem;
  }
  .careers-cta h3 {
    font-size: 1.3rem;
  }
  .careers-cta p {
    font-size: 0.8rem;
  }

  
}