/* Cinematic Hero Section */
.cinematic-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0c1c39 0%, #1a2b5c 50%, #2d3748 100%);
  z-index: 1;
}

.particle-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.8);
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 50%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 90%; animation-delay: 5s; }
.particle:nth-child(7) { top: 10%; left: 60%; animation-delay: 6s; }
.particle:nth-child(8) { top: 50%; left: 30%; animation-delay: 7s; }

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 3;
}

.hero-content-wrapper {
  position: relative;
  z-index: 4;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero-content {
  text-align: center;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.logo-fade-in {
  margin-bottom: 20px;
}

.hero-logo {
  width: 120px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-text {
  max-width: 800px;
}

.hero-headline {
  /* font-size: clamp(32px, 6vw, 64px); */
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 20px;
  background: linear-gradient(135deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-headline1{
  font-size: clamp(14px, 2vw, 18px);
  color: #fff;

  line-height: 1.6;
  margin: 0 0 40px;
 

}

.hero-subhead {
  font-size: clamp(16px, 3vw, 24px);
  color: #cbd5e1;
  margin: 0 0 32px;
  font-weight: 500;
}

.hero-description {
  font-size: clamp(14px, 2vw, 18px);
  color: #94a3b8;
  line-height: 1.6;
  margin: 0 0 40px;
  text-align: center !important;
}

.hero-description p {
  margin: 0 0 8px;
}

.hero-description p:last-child {
  margin-bottom: 0;
}

.kpi-section {
  margin: 40px 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 800px;
}

.kpi-item {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.kpi-item:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.kpi-number {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 8px;
}

.kpi-text {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: #60a5fa;
  margin-bottom: 8px;
}

.kpi-label {
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 40px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 160px;
}

.btn.primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.btn.secondary {
  background: transparent;
  color: #cbd5e1;
  border-color: rgba(203, 213, 225, 0.3);
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(203, 213, 225, 0.5);
  color: white;
}

.shimmer-btn {
  position: relative;
  overflow: hidden;
}

.shimmer-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.shimmer-btn:hover::before {
  left: 100%;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e1;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) rotate(45deg) translateY(0);
  }
  40% {
    transform: translateX(-50%) rotate(45deg) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) rotate(45deg) translateY(-5px);
  }
}

/* Cinematic Footer */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0c1c39 0%, #1a2b5c 50%, #2d3748 100%);
  color: #cbd5e1;
  padding: 30px 0 20px;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.footer-content-wrapper {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-brand h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
}

.footer-brand p {
  font-size: 16px;
  color: #cbd5e1;
  margin: 0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #cbd5e1;
}

.contact-icon {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.link-group h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-group li {
  margin-bottom: 12px;
}

.link-group a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.link-group a:hover {
  color: #60a5fa;
}

.footer-social h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(203, 213, 225, 0.2);
}

.social-link:hover {
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.3);
  background: rgba(96, 165, 250, 0.1);
}

.social-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(203, 213, 225, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #94a3b8;
}

/* Coming Soon Notification */
.coming-soon-notification {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 16px 20px;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
  display: none;
}

.notification-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.notification-text {
  font-size: 18px;
  font-weight: 600;
}

.notification-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* SVG Color Updates */
.fact-icon svg,
.why-icon svg,
.qhse-icon svg,
.mv-icon svg,
.cert-icon svg,
.leader-avatar svg,
.service-icon svg {
  color: #3b82f6 !important;
  fill: #3b82f6 !important;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
  .hero-content {
    gap: 32px;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 980px) {
  .hero-content {
    gap: 24px;
    padding: 0 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  
  .footer-contact {
    align-items: center;
  }
  
  .contact-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    gap: 20px;
  }
  
  .hero-headline {
    /* font-size: clamp(24px, 8vw, 40px); */
  }
  
  .hero-subhead {
    font-size: clamp(14px, 4vw, 20px);
  }
  
  .hero-description {
    text-align: center !important;
    font-size: clamp(12px, 3vw, 16px);
  }
  
  .kpi-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .kpi-item {
    padding: 20px 16px;
  }
  
  .footer-content {
    gap: 24px;
  }
  
  .footer-brand h3 {
    font-size: 24px;
  }
  
  .contact-item {
    font-size: 14px;
  }
  
  .link-group h4,
  .footer-social h4 {
    font-size: 16px;
  }
  
  .link-group a,
  .social-link {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 0 12px;
  }
  
  .hero-logo {
    width: 80px;
  }
  
  .hero-cta {
    gap: 12px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .footer-content-wrapper {
    padding: 0 12px;
  }
  
  .footer-content {
    gap: 20px;
  }
  
  .footer-brand h3 {
    font-size: 20px;
  }
  
  .footer-brand p {
    font-size: 14px;
  }
  
  .contact-item {
    font-size: 13px;
  }
  
  .notification-content {
    padding: 0 12px;
  }
  
  .notification-text {
    font-size: 16px;
  }
}
