/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Root Colors */
  :root {
    --primary-color: #E3F6F3;
    --text-color: #333;
    --light-text-color: #e4d6d6;
  }
  
  /* Body */
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: #E3F6F3;
  }
  
  /* Links */
  a {
    text-decoration: none;
    color: var(--text-color);
  }
  
  /* Lists */
  ul {
    list-style: none;
  }
  
  /* Images */
  img {
    max-width: 100%;
  }
  
  /* Navbar Styles */
  .navbar {
    background-color: #E3F6F3;
    padding: 15px 0; /* Adjust padding */
  }
  
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo img {
    max-width: 150px; /* Adjust logo size */
  }
  
  .navbar .main-menu ul {
    display: flex;
    align-items: center;
  }
  
  .navbar ul li {
    position: relative;
  }
  
  .navbar ul li a {
    padding: 10px 20px;
    display: block;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .navbar ul li a:hover {
    color: #1839da;
  }
  
  /* Button */
  .btn {
    display: inline-block;
    padding: 13px 20px;
    background-color: #72cce0;
    color: black;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    transition: 0.3s;
  }
  
  .btn:hover {
    background-color: #3e7fe0;
  }
  
  /* Container Classes */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  .container-about {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
    font-family: 'Courier New', Courier, monospace;
  }
  
  
  .container-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  /* Mobile Navbar - Hamburger */
  .hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 25px;
    cursor: pointer;
  }
  
  .hamburger-menu div {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
  }
  
  /* Show hamburger icon on small screens */
  @media (max-width: 768px) {
    .navbar .main-menu {
      display: none;
      width: 100%;
      flex-direction: column;
      align-items: center;
      position: absolute;
      top: 60px;
      left: 0;
      background-color: #fff;
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
  
    .navbar .main-menu.active {
      display: flex;
    }
  
    .navbar .main-menu ul {
      width: 100%;
      display: block;
      text-align: center;
    }
  
    .navbar ul li a {
      padding: 15px;
      font-size: 18px;
    }
  
    .hamburger-menu {
      display: flex;
    }
  }
  
  /* Hero Section */
  .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    background-color: #fff;
    padding: 50px 0;
  }
  
  .hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
  }
  
  .hero-text {
    text-align: center;
    flex: 1;
  }
  
  .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  
  .hero-text p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 20px;
  }
  
  .hero-text .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #4891ff;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .hero-text .btn:hover {
    background-color: #357ae8;
  }
  
  
  
  