/* Reset and base */
* {
  margin: 0;
  padding: 0;
  transition: .5s linear;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  scroll-behavior:  smooth;
}

body {
  background-color: #e2eefa; /* very light gray-blue */
  color: #1a1a1a;
  line-height: 1.6;
  font-size: 16px;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #a0ceee;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-bottom: 1px solid #e1e4e8;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0078d7; /* calm blue */
  letter-spacing: 1.5px;
  cursor: pointer;
  user-select: none;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  
}

.navbar ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.navbar ul li a:hover,
.navbar ul li a.btn:hover {
  background-color: #0078d7;
  color: #fff;
}

.btn {
  background-color: #0078d7;
  color: #fff !important;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.2s ease;
}

.btn:focus {
  outline: 2px solid #005a9e;
  outline-offset: 2px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #0078d7;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 3rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  gap: 2rem;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
}

.hero-text {
  flex: 1 1 450px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0078d7;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #444;
  max-width: 480px;
}

.cta-btn {
  background-color: #0078d7;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.cta-btn:hover {
  background-color: #005a9e;
}

.hero-img {
  flex: 1 1 450px;
  text-align: center;
}

.hero-img img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.hero-img img:hover {
  transform: scale(1.03);
}

/* About Section */
.about {
  background-color: #ffffff;
  padding: 4rem 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  max-width: 1200px;
  margin: 3rem auto;
}

.about .heading {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  color: #0078d7;
  text-align: center;
}

.about .row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.video-container {
  flex: 1 1 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  border: 1px solid #e1e4e8;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.content {
  flex: 1 1 480px;
}

.content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.content .btn {
  background-color:rgb(1, 1, 33);
  border: 2px solid #0078d7;
  color: #0078d7;
  padding: 0.5rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  text-decoration: none;
  display: inline-block;
}

.content .btn:hover {
  background-color: #0078d7;
  color: #fff;
}

/* Features Section */
.features {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 3rem 4rem;
  text-align: center;
    
  transform: scale(1.1);
}

.features h2 {
  font-size: 2.4rem;
  margin-bottom: 2.5rem;
  color: #0078d7;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.feature-grid .feature-card:hover{
  transform:scale(1.1);
}

.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s ease;
  color: #333;
}

.feature-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.feature-card img {
  width: 60px;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0078d7;
}

.feature-card p {
  font-size: 1rem;
  color: #555;
  
}
.feature-card:hover{
  transform:scale(1.1);
}

/* How It Works Section */
.section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.section.dark {
  background-color: #0078d7;
  color: #fff;
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 8px 30px rgba(0,120,215,0.3);
}

.section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.steps {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  background-color: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  flex: 1 1 250px;
  transition: box-shadow 0.3s ease;
  color: #333;
}

.step:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.step h3 {
  margin-bottom: 1rem;
  color: #0078d7;
  font-weight: 700;
}

.step p {
  font-size: 1rem;
  color: #555;
}

/* Impact Section */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.impact-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0056d2;
}

.impact-card h2 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  color: #0056d2;
}


/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.5rem;
  }

  .hero-text, .hero-img {
    flex: 1 1 100%;
  }

  .about .row {
    flex-direction: column;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    background-color: #ffffff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    border-radius: 0 0 0 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .navbar ul.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}
/* ====== Animations Added (without breaking UI) ====== */

/* Keyframes */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Page Load Animation */
body {
  animation: fadeIn 0.8s ease-in;
}

/* Hero Section */
.hero-text h1 {
  animation: fadeUp 0.9s ease-out;
}
.hero-text p {
  animation: fadeUp 1s ease-out;
}
.cta-btn {
  animation: fadeUp 1.2s ease-out;
}

/* Hero Image */
.hero-img img {
  animation: scaleIn 1s ease-out;
}

/* About Section */
.about {
  animation: fadeUp 1s ease-out;
}

/* Feature Cards */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, box-shadow 0.3s ease, opacity 0.4s ease;
}
.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Steps */
.step {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.step.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Impact Section */
#impact {
  animation: fadeUp 1s ease-out;
}
/* Footer Styles */
.footer {
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #d1d5db;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer-section {
  transition: transform 0.3s ease;
}

.footer-section:hover {
  transform: translateY(-5px);
}

.footer-logo {
  height: 60px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-title {
  display: flex;
  align-items: center;
 
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
}

.footer-text {
  font-size: 14px;
  color: #9ca3af;
}

.footer-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #38bdf8;
}

.footer-section p {
  margin: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-section i {
  color: #38bdf8;
}

.social-icons {
  margin-top: 12px;
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 20px;
  color: #d1d5db;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #38bdf8;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
}

