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

body {
  overflow-x: hidden;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section Styles */
.hero {
  position: relative;
  height: 90vh;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 20px;
  top: 0%;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: #f0f0f1; /* #0144fd color */
  filter: drop-shadow(0 2px 5px rgba(70, 67, 233, 0.527));
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Story Section */
.story-section {
  background-color: white;
  padding: 80px 0;
}

.story-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.story-left h2 {
  font-size: 2.5rem;
  color: #333;
  line-height: 1.4;
  margin: 0;
  color: #0144fd; /* #0144fdenrod */
}

.story-right p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.highlight {
  color: #0144fd; /* #0144fdenrod */
  font-weight: bold;
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  margin-bottom: 15px;
  font-size: 2.5rem;
  color: #0144fd; /* #0144fdenrod */
}

.section-subtitle {
  text-align: center;
  margin-bottom: 50px;
  font-size: 1.2rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.benefit-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-top: 3px solid #0144fd; /* #0144fd */
}

.benefit-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(218, 165, 32, 0.1); /* #0144fdenrod with opacity */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  color: #0144fd; /* #0144fdenrod */
  font-size: 1.5rem;
}

.benefit-item h3 {
  font-size: 1.4rem;
  color: #0144fd; /* #0144fdenrod */
  margin-bottom: 15px;
  text-align: center;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
  text-align: center;
}

.cta-box {
  background-color: #0144fd; /* #0144fdenrod */
  color: white;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.cta-box h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.cta-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: white;
  color: #0144fd; /* #0144fdenrod */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Info Section */
.info-section {
  padding: 80px 0;
  background: white;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.info-box {
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.image-overlay {
  padding: 0;
  overflow: hidden;
}

.image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-overlay:hover img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  color: #0144fd; /* #0144fdenrod */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background-color: #0144fd; /* #0144fd */
  color: white;
}

.text-box.light {
  background: white;
  color: #333;
}

.text-box.dark {
  background: black;
  color: white;
}

.text-box h2 {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
  color: #0144fd; /* #0144fdenrod */
}

.text-box.dark h2 {
  color: #f1f2f3; /* #0144fd */
}

.text-box p {
  font-size: 15px;
  line-height: 1.6;
  margin: 20px 0;
}

.features {
  list-style: none;
  padding: 0;
  margin: 10px 0 30px;
}

.features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.features li:before {
  content: "✓";
  color: #0144fd; /* #0144fd */
  position: absolute;
  left: 0;
}

.btn-outline {
  border: 2px solid #0144fd; /* #0144fdenrod */
  background: transparent;
  color: #0144fd; /* #0144fdenrod */
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.text-box.dark .btn-outline {
  border-color: #f4f4f5; /* #0144fd */
  color: #f8f8fa; /* #0144fd */
}

.btn-outline:hover {
  background: #0a55ec; /* #0144fdenrod */
  color: white;
}

.text-box.dark .btn-outline:hover {
  background: #0144fd; /* #0144fd */
  color: #faf7f7;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .cta-links {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }

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

  .story-left,
  .story-right {
    width: 100%;
  }

  .story-left h2 {
    font-size: 2rem;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}
.delay-2 {
  animation-delay: 0.4s;
}
.delay-3 {
  animation-delay: 0.6s;
}
.delay-4 {
  animation-delay: 0.8s;
}


   /* Base Styles */
            :root {
                --primary-blue: #0066cc;
                --primary-blue-light: #0d7ce4;
                --dark-blue: #004080;
                --light-blue: #e8f4ff;
                --white: #ffffff;
                --off-white: #f8fafc;
                --text-dark: #1a202c;
                --text-light: #4a5568;
                --gray-light: #e2e8f0;
                --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
                --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
                --shadow-md: 0 12px 25px rgba(0, 0, 0, 0.08);
                --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
            }
            
            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }
            
            body {
                font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
                line-height: 1.6;
                color: var(--text-dark);
                background-color: var(--off-white);
            }

/* * Directors Section */ 
 .directors-section {
  background: linear-gradient(
    160deg,
    var(--light-blue) 0%,
    var(--off-white) 100%
  );
  padding: 120px 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section-container {
  /* max-width: 1280px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  padding: 0 20px;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 800;
  color: var(--dark-blue);
  position: relative;
  display: inline-block;
  letter-spacing: -0.5px;
}

.section-header h2:after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  border-radius: 3px;
}

.section-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 25px auto 0;
  color: var(--text-light);
  line-height: 1.7;
}

.directors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  position: relative;
}

.director-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.director-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.card-image::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
  z-index: 1;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.director-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-header {
  margin-bottom: 20px;
  position: relative;
}

.card-header h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.card-header .title {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 6px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  box-shadow: 0 3px 8px rgba(0, 102, 204, 0.2);
}

.card-bio {
  margin-bottom: 30px;
  color: var(--text-light);
  flex-grow: 1;
  font-size: 1rem;
  line-height: 1.7;
}

.card-social {
  display: flex;
  align-items: center;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  color: var(--white);
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.25);
}

.linkedin-btn i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.linkedin-btn:hover {
  background: linear-gradient(
    135deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 100%
  );
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35);
}

.linkedin-btn:active {
  transform: translateY(0);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.25);
}

/* Decorative Elements */
.decor-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    var(--primary-blue) 0%,
    var(--primary-blue-light) 100%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 5%;
  left: 3%;
  opacity: 0.07;
  animation: float 18s ease-in-out infinite;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: linear-gradient(
    225deg,
    var(--dark-blue) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 8%;
  right: 3%;
  opacity: 0.07;
  animation: float 20s ease-in-out infinite alternate;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: linear-gradient(
    45deg,
    var(--primary-blue-light) 0%,
    var(--primary-blue) 100%
  );
  border-radius: 35% 65% 50% 50% / 45% 35% 65% 55%;
  top: 40%;
  right: 15%;
  opacity: 0.05;
  animation: float 25s ease-in-out infinite alternate-reverse;
}

.shape-4 {
  width: 150px;
  height: 150px;
  background: linear-gradient(
    225deg,
    var(--primary-blue) 0%,
    var(--dark-blue) 100%
  );
  border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
  bottom: 30%;
  left: 15%;
  opacity: 0.05;
  animation: float 22s ease-in-out infinite;
}

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

/* Responsive Styles */
@media (max-width: 1200px) {
  .directors-section {
    padding: 100px 25px;
  }

  .section-header h2 {
    font-size: 2.7rem;
  }
}

@media (max-width: 992px) {
  .section-header h2 {
    font-size: 2.5rem;
  }

  .card-content {
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .directors-section {
    padding: 80px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-header h2 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .directors-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .card-image {
    height: 325px;
  }

  .card-header h3 {
    font-size: 1.6rem;
  }

  .decor-shape {
    opacity: 0.04;
  }
}

@media (max-width: 576px) {
  .directors-section {
    padding: 70px 15px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .card-header h3 {
    font-size: 1.5rem;
  }

  .card-header .title {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  .card-image {
    height: 240px;
  }

  .card-bio {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .linkedin-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}
