html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Segoe UI', sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 999;
  height: 90px;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 20px; 
  transition: all 0.4s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  list-style: none;
  gap: 100px; 
  transition: color 0.3s ease;
  margin: 0; 
  padding: 0; 
  margin-right: 50px;
}

.navbar li {
  width: auto; 
  height: 100%;
  margin: 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar a {
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar img {
  height: 60px;
  width: auto;
}

.navbar li a:hover {
  color: #266eb6;
}

nav.scrolled .navbar a {
  color: #333;
}

nav.scrolled .navbar a:hover {
  color: #266eb6;
}

.nav-logo {
  height: 70px;
  width: auto;
  z-index: 1001;
  display: block;
}

@media (max-width: 768px) {
  nav {
    justify-content: center; 
    padding: 0;
  }

  .nav-logo {
    position: absolute; 
    left: 20px;
    top: 20px;
    height: 40px;
  }

  .navbar {
    display: none; 
  }

  .navbar img {
    display: none;
  }

  .nav-logo img{
    height: 10px;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 25px;
  height: 3px;
  background-color: #007bff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
  top: 6px;
}

.hamburger span:nth-child(2) {
  top: 14px;
}

.hamburger span:nth-child(3) {
  top: 22px;
}

nav.scrolled .hamburger span {
  background-color: #333;
}

.hamburger.active span:nth-child(1) {
  top: 14px;
  transform: translateX(-50%) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 14px;
  transform: translateX(-50%) rotate(-45deg);
}

.off-screen-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98) 0%, 
    rgba(250, 252, 255, 0.98) 100%);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100%;
  max-width: 480px;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  overflow: hidden;
  padding: 100px 0 0 0;
  box-sizing: border-box;
}

.off-screen-menu::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.03) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
  50% { transform: scale(1.2) rotate(180deg); opacity: 0.5; }
}

.off-screen-menu.active {
  transform: translateX(0);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.5);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 997;
  opacity: 0;
  animation: fadeInOverlay 0.6s ease forwards;
}

@keyframes fadeInOverlay {
  to { opacity: 1; }
}

.menu-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: stretch;
  width: 100%;
  max-width: 380px;
  margin-top: 15px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: center;
  padding: 0 30px;
}

.menu-content a {
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #1a1a1a;
  opacity: 0;
  font-family: 'Montserrat', sans-serif;
  transform: translateX(50px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 18px 30px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  letter-spacing: -0.5px;
  text-align: left;
  background: rgba(0, 123, 255, 0.02);
  border: 1px solid rgba(0, 123, 255, 0.08);
}

.menu-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 123, 255, 0.15) 50%, 
    transparent 100%);
  transition: left 0.6s ease;
}

.menu-content a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #007bff, #00d4ff, #0099ff);
  transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.8);
}

.menu-content a:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.08);
  transform: translateX(10px);
  border-color: rgba(0, 123, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 123, 255, 0.15);
}

.menu-content a:hover::before {
  left: 100%;
}

.menu-content a:hover::after {
  width: 100%;
}

.menu-content a:nth-child(1) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.1s; 
}
.menu-content a:nth-child(2) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.2s; 
}
.menu-content a:nth-child(3) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s; 
}
.menu-content a:nth-child(4) { 
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.4s; 
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.menu-contact {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 10px 30px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1;
  background: linear-gradient(180deg, rgba(249, 250, 251, 0) 0%, rgba(249, 250, 251, 0.8) 100%);
}

.contact-prompt {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.contact-prompt a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.contact-prompt a:hover {
  color: #0056b3;
  border-bottom-color: #0056b3;
}

.contact-info-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0, 123, 255, 0.04);
  border: 1px solid rgba(0, 123, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.contact-card:active {
  transform: scale(0.98);
  background: rgba(0, 123, 255, 0.08);
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
  font-size: 1.05rem;
}

.contact-number {
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
}

.social-items {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-items a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  font-size: 1.4rem;
  background: white;
  border: 1px solid rgba(0, 123, 255, 0.12);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-items a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #007bff, #4a9fff);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}

.social-items a:hover {
  color: #fff;
  transform: translateY(-5px);
  border-color: rgba(0, 123, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 123, 255, 0.25);
}

.social-items a:hover::before {
  width: 100%;
  height: 100%;
}

.social-items a i {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
    margin-top: 10px;
  }
  
  .off-screen-menu {
    max-width: 100%;
  }
  
  .menu-content {
    max-width: calc(100% - 60px);
  }
  
  .menu-content a {
    font-size: 1.7rem;
    padding: 16px 25px;
  }
  
  .menu-contact {
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 480px) {
  .menu-content a {
    font-size: 1.5rem;
    padding: 14px 20px;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 500px;
  max-width: 1400px;
  margin: 120px auto 1rem;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0f0ff 50%, #d4e9ff 100%);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph 20s ease-in-out infinite, float-blob 15s ease-in-out infinite;
  filter: blur(40px);
}

.blob:nth-child(1) {
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.blob:nth-child(2) {
  bottom: -20%;
  left: -10%;
  animation-delay: 7s;
  width: 400px;
  height: 400px;
}

@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  25% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  75% { border-radius: 70% 30% 40% 60% / 40% 70% 50% 30%; }
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.1); }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.18) 0%, transparent 50%);
  animation: shimmer 6s ease-in-out infinite;
}

@keyframes shimmer {
  0% { 
    opacity: 0.7; 
    transform: translate(0, 0) scale(1);
  }
  50% { 
    opacity: 1; 
    transform: translate(2%, -2%) scale(1.05);
  }
  100% { 
    opacity: 0.7; 
    transform: translate(0, 0) scale(1);
  }
}

.pattern {
  position: absolute;
  opacity: 0.12;
}

.pattern-circle {
  width: 400px;
  height: 400px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  animation: rotate 20s linear infinite;
}

.pattern-circle-2 {
  width: 300px;
  height: 300px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
  animation: rotate 15s linear infinite reverse;
}

.dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  animation: float-up 5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

@keyframes float-up {
  0%, 100% { 
    transform: translateY(0) translateX(0) scale(1); 
    opacity: 0.2; 
  }
  50% { 
    transform: translateY(-40px) translateX(20px) scale(1.2); 
    opacity: 0.6; 
  }
}

.dot:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; animation-duration: 5s; }
.dot:nth-child(2) { top: 60%; left: 25%; animation-delay: 1s; animation-duration: 6s; }
.dot:nth-child(3) { top: 40%; left: 75%; animation-delay: 2s; animation-duration: 4.5s; }
.dot:nth-child(4) { top: 70%; left: 85%; animation-delay: 1.5s; animation-duration: 5.5s; }
.dot:nth-child(5) { top: 30%; left: 50%; animation-delay: 0.5s; animation-duration: 5.2s; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
  animation: fadeIn 1s ease-out;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e3a8a;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  line-height: 1.6;
  font-weight: 400;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .hero {
    height: 350px;
    margin: 115px auto 0;
    max-width: 525px;
    border-radius: 20px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .pattern-circle,
  .pattern-circle-2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 280px;
    margin: 115px auto 0;
    max-width: 360px;
    border-radius: 16px;
  }

  .hero-content {
    padding: 1rem;
  }
}

/* Services Section */
.services {
  max-width: 1400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.services.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  color: white;
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(to right, #555252, #6c7592);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 20px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.services-grid.animate {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #003974, #005bb5);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.style-alt::before {
  background: linear-gradient(90deg, #ffffff, #e0e7ff);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #003974, #005bb5);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.4s ease;
  position: relative;
}

.service-card:hover .service-icon {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #005bb5, #003974);
}

.service-icon svg {
  width: 35px;
  height: 35px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #003974;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-card p {
  color: #4a5568;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  margin-bottom: 20px;
}

.service-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.service-card.expanded .service-details {
  max-height: 300px;
}

.service-details p {
  color: #2d3748;
  background: #f7fafc;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  padding: 15px;
  border-radius: 12px;
  border-left: 3px solid #003974;
  margin-top: 10px;
}

.expand-btn {
  background: linear-gradient(135deg, #003974, #005bb5);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.expand-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 57, 116, 0.4);
}

.expand-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card.expanded .expand-btn svg {
  transform: rotate(180deg);
}

.service-card.style-alt {
  background: linear-gradient(135deg, #003974 0%, #005bb5 100%);
  color: white;
}

.service-card.style-alt h3,
.service-card.style-alt p {
  color: white;
}

.service-card.style-alt .service-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.service-card.style-alt .service-number {
  background: rgba(255, 255, 255, 0.3);
  color: white;
}

.service-card.style-alt .service-details p {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border-left-color: white;
}

.service-card.style-alt .expand-btn {
  background: white;
  color: #003974;
}

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

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

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 30px 25px;
  }
}

/* Training Section */
.training {
  margin: 0 auto;
  padding: 4rem 2rem;
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.training.animate {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #003974;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #00d4ff);
  border-radius: 2px;
}

.section-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.training-card {
  background: linear-gradient(135deg, #003974 0%, #005bb5 100%);
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 57, 116, 0.2);
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 57, 116, 0.3);
}

.training-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.card-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.card-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.training-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

.training-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 2;
}

.training-card strong {
  display: block;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 1rem;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  margin-top: 1rem;
  backdrop-filter: blur(10px);
}

.cert-badge::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-weight: bold;
}

.training-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.split-content {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.split-content h3 {
  font-size: 2rem;
  color: #003974;
  margin-bottom: 1.5rem;
}

.split-content ul {
  list-style: none;
  padding: 0;
}

.split-content li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.split-content li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
  font-size: 1.2rem;
}

.split-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 57, 116, 0.9), transparent);
  padding: 2rem;
  color: white;
}

.image-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.image-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #e9ecef;
  transform: translateX(5px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #00d4ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  color: #003974;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-split {
    grid-template-columns: 1fr;
  }

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

  .training-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .training {
    padding: 2rem 1rem;
  }

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

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

  .feature-list {
    grid-template-columns: 1fr;
  }
}

/* Section Title */
.section-title {
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-title h2 {
  font-size: 2.5rem;
  white-space: nowrap;
}

.section-title hr {
  flex-grow: 0.45;
  height: 1px;
  border: none;
  background: #000000;
  opacity: 0.5;  
}

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 92%;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    width: 90%;
  }
}

@media (max-width: 1628px) {
  .training .description {
    text-align: center;
    max-width: none; 
    margin-left: 0;
  }

  .training-card {
    margin: 0 auto;
  }

  .img_kiri {
    display: none;
  }
}

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

  .training .description {
    margin-left: 2rem; 
    margin-right: 2rem;
  }

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

  .training-card {
    margin: 0 auto;
    margin-bottom: 2rem; 
    max-width: 75%; 
    text-align: left; 
    padding: 1.5rem; 
  }

  .training-card .icon {
    margin-bottom: 1rem;
    width: 60px; 
    display: block;
    margin-left: 0; 
  }

  .training-card h3 {
    text-align: left; 
  }
}

@media (max-width: 768px) {
  .section-title {
    gap: 0.5rem;
    margin: 1rem;
  }

  .section-title h2 {
    font-size: 1rem; 
    text-align: center;
  }

  .section-title hr {
    width: 80%; 
    margin: 0 auto; 
    flex-grow: 0; 
  }

  .training .description {
    margin-left: 1rem; 
    margin-right: 1rem;
    font-size: 0.9rem; 
    text-align: center
  }

  .training-card {
    max-width: 75%; 
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .training-card h3 {
    font-size: 1.5rem; 
    text-align: center;
  }

  .training_content .training-card p {
    font-size: 0.85rem; 
    text-align: justify;
    margin-bottom: 1.5rem; 
  }

  .img_kiri {
    display: none;
  }
}

@media (max-width: 480px) {
  .service-grid.auto-scroll{
    gap: 3rem;
  }

  .section-title h2 {
    font-size: 1.5rem; 
  }

  .training .description {
    font-size: 0.8rem;
  }

  .training-card {
    padding: 0.8rem;
  }

  .training-card h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .training_content .training-card p {
    font-size: 0.8rem; 
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
  }

  .training-card .icon {
    width: 50px;
    left: -20px;
    top: -20px;
  }

  .img_kiri {
    display: none;
  }
}

/* Clients Section */
.clients {
  max-width: 1400px;
  margin: 0 auto 5rem;
  padding: 1rem 2rem;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease-out;
}

.clients.animate {
  opacity: 1;
  transform: translateY(0);
}

.clients h2 {
  font-size: 2.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 3rem;
  color: #1a1a1a;
  font-weight: 600;
  position: relative;
}

.clients h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #0077b6, #00b4d8);
  margin: 1rem auto 0;
  border-radius: 2px;
}

.clients-intro {
  text-align: center;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.clients-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.client-section {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.client-section:hover {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.client-section h3 {
  text-align: center;
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2.5rem;
  color: #2c3e50;
  font-weight: 600;
  position: relative;
  padding-bottom: 1rem;
}

.client-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #0077b6;
  border-radius: 2px;
}

.client-logos-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  justify-items: center;
  align-items: center;
}

.client-logos-wrapper img {
  width: 100%;
  max-width: 160px;
  height: 80px;
  object-fit: contain;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}

.client-logos-wrapper img:nth-child(1) { animation-delay: 0.05s; }
.client-logos-wrapper img:nth-child(2) { animation-delay: 0.1s; }
.client-logos-wrapper img:nth-child(3) { animation-delay: 0.15s; }
.client-logos-wrapper img:nth-child(4) { animation-delay: 0.2s; }
.client-logos-wrapper img:nth-child(5) { animation-delay: 0.25s; }
.client-logos-wrapper img:nth-child(6) { animation-delay: 0.3s; }
.client-logos-wrapper img:nth-child(7) { animation-delay: 0.35s; }
.client-logos-wrapper img:nth-child(8) { animation-delay: 0.4s; }
.client-logos-wrapper img:nth-child(9) { animation-delay: 0.45s; }
.client-logos-wrapper img:nth-child(10) { animation-delay: 0.5s; }
.client-logos-wrapper img:nth-child(11) { animation-delay: 0.55s; }
.client-logos-wrapper img:nth-child(12) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-logos-wrapper img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 119, 182, 0.15);
  border-color: #0077b6;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .client-logos-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 3rem 1.5rem;
  }

  .clients h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }

  .client-section {
    padding: 2rem 1.5rem;
    height: 95%;
  }

  .client-section h3 {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }

  .client-logos-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .client-logos-wrapper img {
    max-width: 120px;
    height: 70px;
  }
}

@media (max-width: 480px) {
  .clients {
    padding: 2rem 1rem;
  }

  .clients h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .client-section {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }

  .client-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .client-logos-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .client-logos-wrapper img {
    max-width: 80%;
    height: 60px;
    padding: 0.75rem;
  }
}

/* Partners Section */
.partners {
  background-color: #FAFAFA;
  padding: 10px 0;
  text-align: center;
}

.partners .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.partners h2 {
  margin-bottom: 12px;
  color: #333;
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.partners h2::after {
  content: "";
  display: block;
  margin: 10px auto 0;
  width: 45px;
  height: 3px;
  background-color: #266EB6;
  border-radius: 2px;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 150px;
  margin-top: 30px;
  padding: 0;
  margin-bottom: 30px;
}

.partner-logos a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.partner-logos a:hover {
  opacity: 0.75;
}

.partner-logos img {
  height: 42px;
  width: auto;
  object-fit: contain;
  max-width: 150px;
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .partners {
    padding: 35px 0;
  }
  
  .partners h2 {
    font-size: 19px;
  }
  
  .partner-logos {
    gap: 36px;
    margin-top: 26px;
  }
  
  .partner-logos img {
    height: 38px;
    max-width: 130px;
  }
}

@media (max-width: 480px) {
  .partners {
    padding: 30px 0;
  }
  
  .partners .container {
    padding: 0 1.5rem;
  }
  
  .partners h2 {
    font-size: 18px;
  }
  
  .partner-logos {
    gap: 30px;
    margin-top: 24px;
  }
  
  .partner-logos img {
    height: 34px;
    max-width: 110px;
  }
}

/* Footer Section */
footer {
  background-color: #266EB6;
  color: white;
  background-image: url('footervector.png'); 
  background-repeat: no-repeat;
  background-position: right top;
  background-size: fill;
  font-family: 'Segoe UI', sans-serif;
  background-color: #266EB6;
  color: white;
  background-image: url('./assets/footervector.png'); 
  background-repeat: no-repeat;
  background-position: right top;
  background-size: fill;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 30px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-left: 40px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 25px;
}

.footer-logo img {
  height: 80px;
  margin-bottom: 5px;
}

.footer-logo p {
  margin-top: 10px;
  font-size: 0.95rem;
  color: white;
}

.vertical-line {
  width: 1px;
  height: 140px;
  background-color: white;
}

.social-media {
  display: flex;
  gap: 15px;
  font-size: 2rem;
}

.social-media a {
  color: white;
  transition: color 0.3s ease;
}

.social-media a:hover {
  color: #4a9fff;
}

.footer-right {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.contact-info {
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 250px;
}

.contact-item i {
  margin-top: 5px;
  font-size: 1rem;
}

.contact-item p {
  margin: 0;
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.5;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px;
  font-size: 0.85rem;
}

@media (max-width: 1110px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-left {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .footer-logo img {
    height: 70px;
  }

  .vertical-line {
    display: none;
  }

  .social-media {
    font-size: 1.5rem;
    justify-content: center;
    gap: 20px;
  }

  .footer-right {
    padding-left: 0;
    width: 100%;
  }

  .contact-info {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
  }

  .contact-item {
    max-width: 220px;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-item i {
    font-size: 1rem;
    margin-top: 5px;
  }
}

@media (max-width: 576px) {
  .footer-logo img {
    height: 60px;
  }

  .social-media {
    font-size: 1.3rem;
  }

  .copyright {
    font-size: 0.75rem;
    padding: 15px;
  }

  .contact-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    overflow-x: auto; 
    gap: 25px;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0; 
  }

  .contact-info-scroll {
    overflow-x: scroll; 
    -webkit-overflow-scrolling: auto;
    scrollbar-width: thin; 
    scrollbar-color: #aaa #eee; 
  }

  .contact-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 25px;
    min-width: max-content;
  }

  .contact-item {
    min-width: 200px;
    flex-shrink: 0;
  }

  .contact-info-scroll::-webkit-scrollbar {
    height: 6px;
  }

  .contact-info-scroll::-webkit-scrollbar-thumb {
    background-color: #aaa;
    border-radius: 3px;
  }

  .contact-info-scroll::-webkit-scrollbar-track {
    background-color: #eee;
  }
}