/* Home Page Specific Styles */

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* MP4 Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.4;
}

/* Video overlay for better text readability */
.hero-video::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 249, 250, 0.7) 0%, rgba(233, 236, 239, 0.6) 25%, rgba(222, 226, 230, 0.5) 50%, rgba(206, 212, 218, 0.4) 75%, rgba(173, 181, 189, 0.3) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
  radial-gradient(circle at 80% 20%, rgba(0, 255, 0, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
  z-index: 2;
}

.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 123, 255, 0.1) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
  z-index: 2;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  width: 100%;
  position: relative;
  z-index: 3;
  text-align: center;
}

.hero-text {
  color: #2c3e50;
  text-align: left;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
  color: #007bff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: titleReveal 0.8s ease forwards;
  color: #007bff;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: #495057;
  opacity: 0;
  animation: fadeInUp 1s ease 0.8s forwards;
  text-shadow: none;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease 1s forwards;
  justify-content: center;
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #00a2ff, #00ff88);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 162, 255, 0.6), 0 0 20px rgba(0, 255, 136, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 1.1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 162, 255, 0.8), 0 0 30px rgba(0, 255, 136, 0.6);
  background: linear-gradient(135deg, #0099ff, #00ff99);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #2c3e50;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 3px solid #00a2ff;
  backdrop-filter: blur(10px);
  font-size: 1.1rem;
  text-shadow: none;
  box-shadow: 0 8px 25px rgba(0, 162, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 162, 255, 0.2);
  color: #2c3e50;
  transform: translateY(-3px);
  border-color: #00ff88;
  box-shadow: 0 12px 35px rgba(0, 162, 255, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-elements {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-icon {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.2), rgba(0, 255, 0, 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #007bff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 123, 255, 0.4);
  animation: float 6s ease-in-out infinite;
  z-index: 4;
}

/* Repositioned floating icons for better visual balance */
.icon-1 { top: 5%; left: 5%; animation-delay: 0s; }
.icon-2 { top: 15%; right: 10%; animation-delay: 1s; }
.icon-3 { top: 45%; left: 15%; animation-delay: 2s; }
.icon-4 { top: 55%; right: 20%; animation-delay: 3s; }
.icon-5 { top: 25%; left: 75%; animation-delay: 4s; }
.icon-6 { top: 75%; left: 65%; animation-delay: 5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-20px) rotate(180deg) scale(1.1); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #6c757d;
  font-size: 0.9rem;
  z-index: 3;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}

.scroll-arrow {
  width: 2px;
  height: 30px;
  background: linear-gradient(to bottom, #007bff, transparent);
  margin-bottom: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* Features Section */
#features {
  background: #ffffff;
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-header.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.feature-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #007bff, #00ff00);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
  color: #007bff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.feature-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.9), rgba(0, 255, 0, 0.9));
  color: white;
  padding: 1rem;
  transform: translateY(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
}

.feature-card:hover .feature-hover {
  transform: translateY(0);
}

/* Services Overview Section */
#services-overview {
  background: #f8f9fa;
  padding: 6rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.service-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff, #00ff00);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: white;
}

.service-card h3 {
  color: #007bff;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  color: #495057;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: #4caf50;
  font-size: 0.9rem;
}

.service-link {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: #00ff00;
  transform: translateX(5px);
}

/* Stats Section */
#stats {
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.stat-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #495057;
  font-size: 1.1rem;
  font-weight: 500;
}

/* CTA Section */
#cta {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  padding: 6rem 0;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.cta-content.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.cta-content h2 {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.3rem;
  color: #495057;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #007bff;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid #007bff;
}

.btn-outline:hover {
  background: #007bff;
  color: white;
  transform: translateY(-3px);
}

/* Founders Section */
#founders {
  background: #ffffff;
  padding: 6rem 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.founder-card {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.founder-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.founder-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 123, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
}

.founder-image {
  position: relative;
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.founder-card:hover .founder-img {
  transform: scale(1.05);
}

.founder-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e9ecef, #dee2e6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #007bff;
  border: 2px dashed rgba(0, 123, 255, 0.3);
}

.founder-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.founder-placeholder p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
}

.founder-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8), rgba(0, 255, 0, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.founder-card:hover .founder-overlay {
  opacity: 1;
}

.founder-social {
  display: flex;
  gap: 1rem;
}

.founder-social .social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007bff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.founder-social .social-link:hover {
  background: #007bff;
  color: white;
  transform: scale(1.1);
}

.founder-info {
  padding: 2rem;
  text-align: center;
}

.founder-info h3 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 0.5rem;
}

.founder-title {
  font-size: 1.1rem;
  color: #00ff00;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.founder-description {
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Founders */
@media (max-width: 768px) {
  .founders-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .founder-image {
    height: 350px;
  }
  
  .founder-info h3 {
    font-size: 1.6rem;
  }
  
  .founder-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .founder-image {
    height: 320px;
  }
}

/* Footer */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #007bff;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #007bff;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #007bff, #00ff00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.4);
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info i {
  color: #007bff;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 123, 255, 0.3);
  padding-top: 2rem;
  text-align: center;
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .floating-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
} 