@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #1E40AF; /* Royal Blue */
  --primary-hover: #1D4ED8;
  --secondary: #0F172A;
  --accent: #F1F5F9;
  --text-main: #334155;
  --text-light: #64748B;
  --bg-color: #F8FAFC;
  --white: #FFFFFF;
  --gradient-1: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  border-radius: var(--radius-sm);
  display: block;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 10px 20px -5px rgba(30, 64, 175, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(30, 64, 175, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  padding: 20px 0;
  transition: var(--transition);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-en {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-hi {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

nav a {
  font-weight: 600;
  font-size: 16px;
  color: var(--secondary);
  position: relative;
}

nav a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--secondary);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 200px 0 140px;
  background: linear-gradient(180deg, #F1F5F9 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.hero-text {
  flex: 1;
  max-width: 650px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #E0E7FF;
  color: var(--primary);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 28px;
  letter-spacing: -2px;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.hero-stats {
  margin-top: 60px;
  display: flex;
  gap: 50px;
  padding-top: 40px;
  border-top: 1px solid #E2E8F0;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 40px;
  font-weight: 800;
  color: var(--secondary);
}

.stat-label {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.stars {
  color: #F59E0B;
}

.hero-image-box {
  flex: 1;
  position: relative;
}

.main-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.2);
}

.floating-stats {
  position: absolute;
  top: 40px;
  right: -30px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* About Section */
.section {
  padding: 140px 0;
}

.about-row {
  display: flex;
  gap: 100px;
  align-items: center;
}

.about-image {
  flex: 1;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-info {
  flex: 1;
}

.section-tag {
  color: var(--primary);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 48px;
  margin-bottom: 32px;
}

.about-text p {
  font-size: 19px;
  color: var(--text-light);
  margin-bottom: 36px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  color: var(--secondary);
}

.feature-box i {
  color: var(--primary);
  font-size: 18px;
}

/* Services */
.services-section {
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  padding: 56px 48px;
  background: var(--bg-color);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  background: var(--white);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  transform: translateY(-10px);
  border-color: #E2E8F0;
}

.service-icon {
  width: 72px;
  height: 72px;
  background: #EEF2FF;
  color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 36px;
}

.service-card h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--text-light);
  font-size: 17px;
}

/* Equipment / Facility */
.facility-section {
  background: var(--secondary);
  color: var(--white);
}

.facility-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.facility-label {
  color: #60A5FA;
  font-weight: 800;
}

.facility-content h2 {
  color: var(--white);
}

.facility-text p {
  color: #CBD5E1;
  font-size: 19px;
  margin-bottom: 40px;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
}

.contact-details {
  background: var(--white);
  padding: 60px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.item-icon {
  width: 56px;
  height:56px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.item-info h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.item-info p {
  color: var(--text-light);
  font-size: 16px;
}

.special-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #F0FDFA;
  color: #0D9488;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  margin-top: 20px;
}

.live-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
}

.live-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  padding: 100px 0 40px;
  background: #020617;
  color: var(--white);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #1E293B;
}

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

.social-links a {
  font-size: 24px;
  color: #94A3B8;
}

.social-links a:hover {
  color: var(--white);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  color: #64748B;
  font-size: 14px;
}

/* Reveal Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-content, .about-row, .facility-content, .contact-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h1 { font-size: 56px; }
  .services-container { grid-template-columns: 1fr 1fr; }
  .hero-actions, .hero-stats, .feature-grid { justify-content: center; }
  .hero-image-box { order: -1; }
  .stat-label { justify-content: center; }
  .about-image { order: -1; }
}

@media (max-width: 768px) {
  nav, .nav-actions .btn-outline { display: none; }
  .mobile-menu-btn { display: block; }
  .services-container { grid-template-columns: 1fr; }
  .hero h1 { font-size: 44px; }
  .stat-value { font-size: 32px; }
}
