* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000000;
    color: white;
    overflow-x: hidden;
}
       
/* Navigation */
.navbar {
    position: fixed; /* Make it fixed so it stays on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background-color: rgba(128, 0, 128, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 95px;
    z-index: 1000;
}
        
.logo img {
    width: 180px;
    height: 60px;
}
        
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
        
.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: white;
    font-size: 20px;
    text-decoration: none;
    white-space: nowrap;
}
        
.nav-link:hover,
.nav-link.active {
    color: #d800d8;
}
        
.search-icon {
    color: white;
    font-size: 20px;
    cursor: pointer;
}

.search-icon:hover{
    color: #d800d8;
}

/* Main Content */
.main-content {
  padding-bottom: 60px;
}
        
/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(216, 0, 216, 0.4));
    padding: 80px 0 60px;
    text-align: center;
}
        
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 80px;
    color: white;
    margin-bottom: 30px;
}
        
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 24px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* Story Section */
.story-section {
    padding: 50px 0;
    max-width: 1200px;
    margin: 0 auto;
}
        
.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}
        
.story-text {
    padding: 0 20px;
}
        
.story-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 50px;
    color: #d800d8;
    margin-bottom: 30px;
}
        
.story-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 30px;
}
        
.story-image img {
  width: 300px;
  height: 300px;
  align-items: center;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.1);
}
        
/* Mission Vision Values */
.mvv-section {
    background: rgba(50, 15, 54, 0.3);
    padding: 100px 0;
}
        
.mvv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Exactly 3 equal columns */
  gap: 60px;
}

        
.mvv-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(128, 0, 128, 0.3);
}
        
.mvv-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}
        
.mvv-icon i {
    font-size: 50px;
    color: white;
}
        
.mvv-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
        }
        
.mvv-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #cccccc;
    line-height: 1.8;
}


/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(128, 0, 128, 0.3), rgba(216, 0, 216, 0.3));
}
        
.cta-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: white;
  margin-bottom: 20px;
}
        
.cta-description {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
        
.cta-btn {
  background: linear-gradient(135deg, #800080, #d800d8);
  color: white;
  border: none;
  padding: 20px 40px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
        
.cta-btn:hover {
  transform: scale(1.05);
}
        
/* Footer */
.footer {
  background: rgb(128, 0, 128, 0.2);
  padding: 40px 0;
  text-align: center;
}
        
.footer-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #cccccc;
}



@keyframes fadeSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-line {
  opacity: 0;
  animation: fadeSlideUp 1s ease-out forwards;
}

/* Staggered delays for each line */
.delay-0 {
  animation-delay: 0.2s;
}
.delay-1 {
  animation-delay: 0.5s;
}

/* Initial hidden state */
.scroll-animate {
  opacity: 0;
  transform: translateY(0); /* Reset default */
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

/* Animate from top */
.animate-top {
  transform: translateY(-100px);
}
.animate-top.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Animate from bottom */
.animate-bottom {
  transform: translateY(100px);
}
.animate-bottom.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* Hamburger icon */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 20px;
    height: auto;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: rgba(128, 0, 128, 0.9);
    border-radius: 20px;
    padding: 20px 0;
    margin-top: 10px;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
    padding: 10px 20px;
  }

  .search-icon {
    padding: 10px 20px;
  }

  .service-hero {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 42px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 18px;
    padding: 0 15px;
    max-width: 90%;
  }

  .story-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 0 20px;
  }

  .story-image {
    order: -1; /* Move image above text */
  }

  .story-image img {
    width: 220px;
    height: 220px;
  }

  .story-title {
    font-size: 36px;
  }

  .story-description {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .mvv-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .mvv-card {
    padding: 30px 20px;
  }

  .mvv-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }

  .mvv-icon i {
    font-size: 36px;
  }

  .mvv-title {
    font-size: 24px;
  }

  .mvv-description {
    font-size: 14px;
  }
  
  /* CTA Section */
  .cta-title {
    font-size: 28px;
  }

  .cta-description {
    font-size: 16px;
    padding: 0 10px;
  }

  .cta-btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  /* Footer */
  .footer-text {
    font-size: 14px;
    padding: 0 10px;
  }
}
