
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f5f0e6;
      color: #e0cbb4;
      line-height: 1.6;
    }

    /* Header */
    header {
      background: #8b7355;
      padding: 1rem 8%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    header .logo {
      font-size: 15px;
      font-weight: bold;
      color: #fffaf0;
       height: 20px;
  line-height: 20px;   /* same as container height */
  text-align: left;   /* optional horizontal center */
  
     
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }

    nav ul li a {
      text-decoration: none;
      color: #fffaf0;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: #ffd9a0;
    }

    .contact-btn {
      border: 2px solid #fffaf0;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      text-decoration: none;
      color: #fffaf0;
      font-weight: 500;
      transition: all 0.3s ease;
      background: transparent;
    }

    .contact-btn:hover {
      background: #ffd9a0;
      color: #4a3c2c;
    }

    /* Hero Section */
    .hero {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 3rem 8%;
      flex-wrap: wrap;
      background: #ede4d2;
    }

    .hero-text {
      flex: 1 1 45%;
      max-width: 600px;
    }

    .hero-text h1 {
      font-size: 2.2rem;
      font-weight: bold;
      color: #7a4b2f;
      margin-bottom: 1rem;
    }

    .hero-text p {
      margin-bottom: 2rem;
      color: #5a4734;
    }

    .hero-text .btn {
      display: inline-block;
      padding: 0.9rem 2rem;
      border: none;
      border-radius: 30px;
      background: #e1b382;
      color: #fffaf0;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .hero-text .btn:hover {
      background: #c68c53;
      transform: scale(1.05);
    }

    .hero-img {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-img img {
      width: 100%;
      max-width: 550px;
      border-radius: 2px;
      transition: transform 0.3s ease;
    }

     .hero-image img:hover {
      transform: scale(1.03);
    }

    /* Responsive design */
    @media (max-width: 900px) {
      .hero-section {
        flex-direction: column;
        text-align: center;
      }

      .hero-text {
        margin-bottom: 2rem;
      }

      .hero-img img {
        width: 100%;
      }
    }
        
        .how-it-works {
            
            width: 100%;
            background-color: #e0cbb4;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            
        }
        
        .title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .steps {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
        }
        
        .steps::before {
            content: "";
            position: absolute;
            top: 40px;
            left: 60px;
            right: 60px;
            height: 2px;
            background-color: #e0e6ed;
            z-index: 1;
        }
        
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: #4a6cf7;
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            box-shadow: 0 4px 10px rgba(74, 108, 247, 0.3);
        }
        
        .step-text {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            text-align: center;
        }
        
        .divider {
            height: 1px;
            background-color: #e0e6ed;
            margin: 30px 0;
        }
        
        .help-section {
            margin-top: 30px;
        }
        
        .help-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .platforms {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }
        
        .platform {
            display: flex;
            align-items: center;
            padding: 10px 15px;
            background-color: #deb890;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .platform:hover {
            background-color: #edf2ff;
            transform: translateY(-2px);
        }
        
        .platform-name {
            font-size: 15px;
            font-weight: 500;
            color: #2c3e50;
            margin-left: 10px;
        }
        
        .platform-icon {
            width: 24px;
            height: 24px;
            background-color: #4a6cf7;
            border-radius: 4px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            font-weight: bold;
            font-size: 12px;
        }
        
        @media (max-width: 768px) {
            .steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .steps::before {
                display: none;
            }
            
            .step {
                flex-direction: row;
                width: 100%;
                justify-content: flex-start;
            }
            
            .step-number {
                margin-right: 20px;
                margin-bottom: 0;
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .platforms {
                grid-template-columns: 1fr;
            }
        }



.container {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 70px;
            background-color: #f7f1eb;
        }
        
        .section-history {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eaeaea;
            background-color: #f5e7d7;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        h1 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        h2 {
            font-size: 1.8rem;
            color: #3498db;
            margin: 30px 0 15px;
        }
        
        h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            margin: 25px 0 10px;
        }
        
        p {
            margin-bottom: 15px;
            color: #555;
        }
        
        .mission-section {
            background-color: #f5e7d7;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        
        .team-section {
            margin: 40px 0;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .team-member {
            background-color: #f5e7d7;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-5px);
        }
        
        .member-name {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }
        
        .member-role {
            color: #7f8c8d;
            font-size: 0.9rem;
        }
        
        .values-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .value-card {
            background-color: #f5e7d7;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .value-title {
            font-weight: 600;
            color: #3498db;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .divider {
            height: 1px;
            background-color: #eaeaea;
            margin: 30px 0;
        }
        
        .blog-section {
            background-color: #f5e7d7;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: center;
            margin-top: 40px;
        }
        
        .blog-title {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        @media (max-width: 768px) {
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .values-section {
                grid-template-columns: 1fr;
            }
        }
        footer
{
  background-color: black;
  height: 70px;
  width: 100%;

}
.footer_txt
{
  text-align: center;
  color: white;
  position: relative;
  top: 20%;
  font-size: 15px;
}






















