body {
      font-family:'Times New Roman', serif ;
    }
    .navbar {
      
      justify-content: space-between;
      align-items: center;
      background-color: #ede8e8;
      color: white;
      padding: 10px 30px;
    }

    .navbar .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    .navbar .nav-links {
      display: flex;
      gap: 24px;
    }

    .navbar .nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      transition: color 0.3s;
    }

    .navbar .nav-links a:hover {
      color: #f0c040;
    }

    .navbar .book-demo-btn {
      background-color: #f0c040;
      color: #1c1616;
      padding: 10px 20px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      text-decoration: none;
      transition: background-color 0.3s;
    }

    .navbar .book-demo-btn:hover {
      background-color: #d9a830;
    }

    @media (max-width: 768px) {
      .navbar {
        flex-direction: column;
        align-items: flex-start;
      }

      .navbar .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }
    }
 
  

    h2 {
      text-align: center;
      font-size: 3.5rem;
      margin-bottom: 5px;
      color: #1a1a1a;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 32px;
    }

    .feature-card {
      background-color: #ede8e8;
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-5px);
    }

    .feature-icon {
      font-size: 2rem;
      margin-bottom: 12px;
      color: #2e7d32;
    }

    .feature-title {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .feature-description {
      font-size: 0.95rem;
      color: #555;
    }
    
    .site-footer {
  background-color: #2c3e50;
  color: #ecf0f1;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-section h4 {
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
}

.footer-section ul li a:hover {
  text-decoration: underline;
}

.footer-section a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ecf0f1;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  background-color: #1a252f;
  margin-top: 20px;
}

    header {
      background-color: #1e88e5;
      color: white;
      padding: 0rem;
      text-align: center;
    }

    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    header p {
      font-size: 1.1rem;
    }

    .carousel {
      margin: 1rem auto;
      max-width: 800px;
      overflow: hidden;
      position: relative;
      border-radius: 0px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .carousel-images {
      display: flex;
      width: 50%;
      animation: slide 15s infinite;
    }

    .carousel-images img {
      width: 100%;
      flex-shrink: 0;
    }

    @keyframes slide {
      0% { transform: translateX(0); }
      33% { transform: translateX(-100%); }
      66% { transform: translateX(-200%); }
      100% { transform: translateX(0); }
    }

    .content-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      padding: 2rem;
      max-width: 1200px;
      margin: auto;
    }

    .feature-box {
      background: white;
      padding: 3.5rem;
      border-radius: 10px;
      box-shadow: 10px 20px 10px rgba(0,0,0,0.05);
      transition: transform 0.3s;
    }

    .feature-box:hover {
      transform: translateY(-5px);
    }

    .feature-box h3 {
      color: #1e88e5;
      margin-bottom: 1rem;
    }

    .feature-box p {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
    }
    footer {
      background-color: #1e1e2f;
      color: #ffffff;
      padding: 60px 20px 20px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-col h3 {
      margin-bottom: 20px;
      font-size: 20px;
      color: #EF6C00;
    }

    .footer-col p,
    .footer-col a {
      color: #cccccc;
      font-size: 15px;
      text-decoration: none;
      margin-bottom: 5px;
      display: block;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: #ffffff;
      text-decoration: underline;
    }

    .footer-bottom {
      border:#1e1e2f ;
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #1e1e2f;
      padding-top: 20px;
      font-size: 14px;
      color: #aaa;
    }
  
    
  
    

  