:root {
  --primary: #2a6dc9;
  --secondary: #34c759;
  --accent: #ff9500;
  --dark: #1a1a1a;
  --light: #f8f9fa;
  --gray: #6c757d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
body {
  background-color: var(--light);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header-template {
  background: linear-gradient(135deg, var(--primary), #1a4d8c);
  color: white;
  padding: 5rem 0;
  text-align: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.logo-icon {
  font-size: 3rem;
  margin-right: 1rem;
  color: var(--secondary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Tahoma", Arial, sans-serif !important;
}


h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}
.tagline {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 800px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

section {
  padding: 6rem 0;
}
.section-title {
  text-align: center;
  margin-bottom: 4rem;
  color: var(--primary);
}
.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.section-title h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--secondary);
  border-radius: 2px;
}

/* Message Section */
.ceo-message-section {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.ceo-image {
  flex: 1;
  text-align: center;
}
.ceo-image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 30px;
  object-fit: cover;
  border: 10px solid white;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ceo-image img:hover {
  transform: translateY(-10px) rotate(-1deg);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

.ceo-signature {
  margin-top: 2rem;
}
.signature-image {
  width: 220px;
  height: auto !important;
  opacity: 0.8;
  filter: multiply(1);
}

.ceo-quote {
  font-style: italic;
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 2.5rem;
  padding: 2rem;
  border-left: 6px solid var(--secondary);
  background-color: white;
  border-radius: 0 20px 20px 0;
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
}

.message-content {
  flex: 1.5;
}
.message-intro {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-weight: 800;
}
.message-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.9;
  text-align: justify;
}

.highlight-box {
  background: linear-gradient(135deg, var(--primary), #0d3566);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin: 3rem 0;
  box-shadow: 0 20px 40px rgba(42, 109, 201, 0.3);
  transition: transform 0.3s ease;
}
.highlight-box:hover {
  transform: scale(1.02);
}
.highlight-box h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

/* Future Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}
.card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  text-align: center;
  border-bottom: 4px solid transparent;
}
.card:hover {
  transform: translateY(-15px);
  border-bottom: 4px solid var(--secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.card-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: 0.3s;
}
.card:hover .card-icon {
  color: var(--secondary);
  transform: scale(1.1);
}
.card h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--dark);
}

/* Video Section */
.video-placeholder {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://jaifry.com/wp-content/uploads/2026/01/video.avif");
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}
.video-icon {
  font-size: 5rem;
  cursor: pointer;
  transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.video-icon:hover {
  transform: scale(1.2);
  color: var(--secondary);
}

/* Commitments */
.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.commitment-item {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  border-top: 6px solid var(--primary);
  transition: 0.4s;
}
.commitment-item:hover {
  transform: translateY(-10px);
  background: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.commitment-icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Stats */
.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 4rem 0;
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}
.stat-label {
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA */
.call-to-action {
  background: linear-gradient(135deg, var(--secondary), #27a844);
  color: white;
  padding: 2.5rem 2rem;
  border-radius: 30px;
  text-align: center;
  margin: 5rem 0;
  box-shadow: 0 25px 50px rgba(52, 199, 89, 0.3);
}
.call-to-action h3 {
  font-size: 2rem;
}
.call-to-action p {
  font-size: 1.2rem;
}
.cta-button {
  display: inline-block;
  background-color: white;
  color: var(--secondary);
  padding: 18px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background: var(--dark);
  color: white;
}

@media (max-width: 992px) {
  .ceo-message-section {
    flex-direction: column;
    align-items: center;
  }
  .message-content {
    text-align: center;
  }
  .message-text p {
    text-align: center;
  }
  .ceo-quote {
    border-left: none;
    border-top: 6px solid var(--secondary);
    border-radius: 20px;
  }
}
