@font-face {
  font-family: 'Octarine';
  src: url('Fonts/Octarine-Bold.otf') format('opentype'),
       url('Fonts/Octarine-BoldOblique.otf') format('opentype'),
       url('Fonts/Octarine-Light.otf') format('opentype'),
       url('Fonts/Octarine-LightOblique.otf') format('opentype'),
       ;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'montserrat', sans-serif;
  background-color: #d4dfe2;
  color: #ffffff;
  line-height: 1.3;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Octarine', sans-serif;
  font-weight: 200;
  letter-spacing: -0.025em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Utility Classes */
.gradient-text {
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891b2, #1d4ed8);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(34, 211, 238, 0.25);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.1);
  border-color: #22d3ee;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease-out forwards;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0.4rem 0;
  border-bottom: 1px solid #8ad5ed;
}

.header.scrolled {
  background: rgb(255 255 255 / 95%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 3rem;
  width: auto;
}

.logo-title {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: #f8f8f8;
  font-weight: 500;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #22d3ee;
}

.cta-desktop {
  display: block;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #226ba3;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  color: #22d3ee;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-sidebar.active {
  visibility: visible;
  opacity: 1;
}

.mobile-sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.mobile-sidebar-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  background: #0f172a;
  border-right: 1px solid #334155;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-sidebar.active .mobile-sidebar-content {
  transform: translateX(0);
}

.mobile-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid #334155;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.mobile-close-btn:hover {
  color: #22d3ee;
}

.mobile-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 2rem;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-nav-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  color: #22d3ee;
  border-bottom-color: rgba(34, 211, 238, 0.3);
}

.mobile-cta {
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
}

.mobile-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

.mobile-contact {
  padding-top: 2rem;
  border-top: 1px solid #334155;
  color: #ffffff;
  font-size: 0.875rem;
}

.mobile-contact p {
  margin-bottom: 0.5rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  overflow: hidden;
}

#hero-container {
    margin-bottom: 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e1e1e1 50%, #ffffff 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.1), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1), transparent 50%);
}

.floating-elements {
  position: absolute;
  inset: 0;
}

.floating-dot {
  position: absolute;
  border-radius: 50%;
  animation: float 3s ease-in-out infinite;
}

.dot-1 {
  top: 5rem;
  left: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #22d3ee;
  opacity: 0.6;
  animation-delay: 0s;
}

.dot-2 {
  top: 10rem;
  right: 5rem;
  width: 0.25rem;
  height: 0.25rem;
  background: #3b82f6;
  opacity: 0.4;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 10rem;
  left: 5rem;
  width: 0.75rem;
  height: 0.75rem;
  background: #67e8f9;
  opacity: 0.5;
  animation-delay: 2s;
}

.dot-4 {
  bottom: 5rem;
  right: 2.5rem;
  width: 0.5rem;
  height: 0.5rem;
  background: #93c5fd;
  opacity: 0.6;
  animation-delay: 0.5s;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 80vh;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgb(25 93 198);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 9999px;
  padding: 0.5rem 1.25rem;
  width: fit-content;
}

.hero-badge i {
  color: #22d3ee;
}

.hero-badge span {
  color: #ffffff;
  font-weight: 500;
  font-size: 0.875rem;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}

.title-line {
  color: #226ba3;
  display: block;
}

.title-gradient {
  background: linear-gradient(135deg, #22d3ee, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #000000;
  line-height: 1.3;
  max-width: 36rem;
}

.hero-highlight {
  color: #226ba3;
  font-weight: 600;
  display: block;
  margin-top: 0.5rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #226ba3;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.hero-tag:hover {
  border-color: rgba(34, 211, 238, 0.6);
}

.hero-tag i {
  color: #22d3ee;
}

.hero-tag span {
  color: #cbd5e1;
  font-weight: 500;
  font-size: 0.875rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-right {
  position: relative;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 32rem;
  margin: 0 auto;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1.5rem;
  border: 1px solid rgba(51, 65, 85, 0.5);
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), transparent, rgba(59, 130, 246, 0.2));
  border-radius: 1.5rem;
}

.tech-indicator {
  position: absolute;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.tech-indicator.top-left {
  top: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tech-indicator.bottom-right {
  bottom: 1rem;
  right: 1rem;
  text-align: center;
}

.status-dot.active {
  background: #10b981;
  animation: pulse 2s infinite;
}

.tech-indicator span {
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
}

.efficiency-text {
  color: #3b82f6;
  font-size: 0.875rem;
  font-weight: 700;
}

.efficiency-label {
  color: white;
  font-size: 0.75rem;
}

.floating-stats {
  position: absolute;
  inset: 0;
}

.stat-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(34, 211, 238, 0.3);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: rotate(0deg);
}

.stat-1 {
  top: -1.5rem;
  right: -1.5rem;
  transform: rotate(3deg);
}

.stat-2 {
  bottom: -1.5rem;
  left: -1.5rem;
  transform: rotate(-3deg);
}

.stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: #22d3ee;
}

.stat-label {
  color: #cbd5e1;
  font-size: 0.75rem;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2rem, 6vw, 3.0rem);
  font-weight: 400;
  margin-bottom: 1rem;
      color: #226ba3;
}


.section-subtitle {
    color: #226ba3;  
    font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1rem;
     color: #111;
  max-width: 64rem;
  /*margin: 0 auto 2rem;*/
  line-height: 1.6;
}
ul {
    list-style-type: none;
    margin: 0;
    color: #000;
    padding: 0;
}

h3.section-title {
    font-size: 22px;
    margin: 30px 0px 0px;
}
/* About Section */
.about {
  padding: 5rem 0 8rem;
  background: #eeeeee;
}

.highlight-box {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem auto;
  max-width: 48rem;
}

.highlight-box h3 {
  font-size: 1.25rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}

.highlight-box p {
  color: #cbd5e1;
  font-size: 1.125rem;
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.value-card {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.1);
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1);
}

.value-icon i {
  font-size: 2rem;
  color: #134062;
}

.value-card h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.value-card:hover h3 {
  color: #22d3ee;
}

.value-card p {
  color: #ffffff;
  line-height: 1.6;
}

.legacy-statement {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.legacy-statement h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.legacy-statement p {
  font-size: 1.25rem;
  color: #ffffff;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  padding: 4rem 0;
  background: rgb(14 32 45);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
  border-radius: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 2rem;
  color: #22d3ee;
}

.stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-suffix {
  color: #22d3ee;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.stat-desc {
  color: #ffffff;
  font-weight: 500;
}

/* Business Section */
.business {
  padding: 5rem 0 8rem;
  background-color: #eeeeee;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.business-card {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.business-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.1);
}

.business-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
  background-color: #fff;
}

.business-card:hover .business-icon {
  transform: scale(1.1);
}
/* 
.business-icon.cyan {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), rgba(59, 130, 246, 0.2));
}

.business-icon.green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
}

.business-icon.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
}

.business-icon.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
} */

.business-icon i {
  font-size: 2rem;
  color: #134062;
}

.business-highlight {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.business-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.business-card:hover h3 {
  color: #22d3ee;
}

.business-card p {
  color: #ffffff;
  line-height: 1.6;
}

/* Chairman Section */
.chairman {
  padding: 5rem 0 8rem;
  background: #eeeeee;
}

.chairman-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.chairman-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}



.chairman-message {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2.5rem;
  position: relative;
}

.quote-icon {
  margin-bottom: 1.5rem;
}

.quote-icon i {
  font-size: 3rem;
  color: rgba(34, 211, 238, 0.3);
}

.chairman-message blockquote {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 2rem;
}

.chairman-message p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.chairman-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.chairman-photo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 2px solid #22d3ee;
}

.chairman-info h4 {
  color: white;
  font-weight: 400;
  font-size: 1.125rem;
}

.chairman-info p {
  color: #22d3ee;
  font-weight: 500;
  margin: 0;
}

.chairman-quote {
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.1), rgba(59, 130, 246, 0.1));
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.chairman-quote blockquote {
  color: #000;
  font-size: 1.125rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 1rem;
}

.chairman-quote cite {
  color: #0b293f;
  font-weight: 600;
}

.chairman-right {
  display: flex;
  flex-direction: column;
  gap: 2.7rem;
}

.chairman-right h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #226ba3;
}

.chairman-right > p {
  font-size: 1.25rem;
  color: #111;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.principles-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.principle-item {
  display: flex;
  align-items: start;
  gap: 1.5rem;
  transition: transform 0.3s ease;
}

.principle-item:hover {
  transform: translateX(5px);
}

.principle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #fff;
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.principle-item:hover .principle-icon {
  transform: scale(1.1);
}

.principle-icon i {
  font-size: 1.5rem;
  color: #134062;
}

.principle-item h4 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #226ba3;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.principle-item:hover h4 {
  color: #22d3ee;
}

.principle-item p {
  color: #111;
  line-height: 1.6;
}

.foundation-note {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.foundation-note p {
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* Foundation Section */
.foundation {
  padding: 2rem 0 8rem;
  background-color: #eeeeee;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.impact-stat {
  text-align: center;
  transition: transform 0.3s ease;
      background-color: #1a40ba;
    border: 1px solid #475569;
    border-radius: 1rem;
    padding: 1rem;
}

.impact-stat:hover {
  transform: translateY(-5px);
}

.impact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.impact-stat:hover .impact-icon {
  transform: scale(1.1);
}

.impact-icon i {
  font-size: 2.5rem;
  color: #134062;
}

.impact-number {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.impact-text {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 0.75rem;
}

.impact-suffix {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.impact-desc {
  color: #ffffff;
  font-weight: 500;
}

.programs-section {
  margin-top: 5rem;
}

.programs-section h3 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: #226ba3;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.program-card {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(34, 211, 238, 0.5);
}

.program-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.program-card:hover .program-icon {
  transform: scale(1.1);
}

.program-icon i {
  font-size: 2.5rem;
  color: #134062;
}

.program-card h4 {
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.program-card:hover h4 {
  color: #22d3ee;
}

.program-card p {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Technology Section */
.technology {
  padding: 5rem 0 8rem;
  background: #ffffff;
}

.tech-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tech-stat {
  text-align: center;
  transition: transform 0.3s ease;
          background-color: #1a40ba;
    border: 1px solid #475569;
    border-radius: 1rem;
    padding: 1rem;
}

.tech-stat:hover {
  transform: translateY(-5px);
}

.tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #fff;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.tech-stat:hover .tech-icon {
  transform: scale(1.1);
}

.tech-icon i {
  font-size: 2.5rem;
  color: #134062;
}

.tech-number {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.tech-text {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #22d3ee;
  margin-bottom: 0.75rem;
}

.tech-suffix {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.tech-desc {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 5rem 0 8rem;
  background-color: #fff;
}

.contact-content {
      background-color: #1a40ba;
  border: 1px solid #475569;
  border-radius: 1rem;
  padding: 3rem;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}

.contact-content h3 {
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1.5rem;
}

.contact-content p {
  font-size: 1.25rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: #0f172a;
  border-top: 1px solid #334155;
}

.footer-content {
  padding: 4rem 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo .logo-title {
  font-size: 1.875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #22d3ee, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo .logo-subtitle {
  font-size: 0.875rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: #ffffff;
  line-height: 1.6;
  max-width: 24rem;
}

.footer-contact {
  color: #ffffff;
  font-size: 0.875rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
}

.social-links h4 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #1e293b;
  border-radius: 0.5rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #06b6d4, #2563eb);
  color: white;
}

.footer-column h4 {
  color: white;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #22d3ee;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid #334155;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  color: #ffffff;
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #22d3ee;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .nav-desktop,
  .cta-desktop {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .chairman-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding-top: 6rem;
  }

  .hero-content {
    min-height: 70vh;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .values-grid,
  .business-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .impact-stats,
  .tech-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: left;
  }

  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-tags {
    justify-content: left;
  }

  .stats-grid,
  .impact-stats,
  .tech-stats {
    grid-template-columns: 1fr;
  }

  .mobile-sidebar-content {
    width: 100%;
  }
}

/* Intersection Observer Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* contact form */
/* Modal hidden by default */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 9999;
}

/* Show modal (via JS) */
.modal.show {
  opacity: 1;
  pointer-events: auto;
}

/* Modal content box */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  color: #000;
  position: relative;
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.4s ease;
}

/* Animate content in when modal is visible */
.modal.show .modal-content {
  transform: scale(1);
  opacity: 1;
}

/* Close button */
.close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Input and textarea */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Submit button */
.btn-submit {
  background-color: #0f172a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1e293b;
}

/* Hero button contact */
.hero-buttons {
  display: none;
}

@media screen and (max-width: 767px) {
  .hero-buttons {
    display: block;
  }
}