* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
  }
  
  /* Header */
  .navbar {
    height: 75px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723, #264688);
    background-size: 300% 100%;
    animation: gradientAnimation 15s linear infinite;
  }
  
  @keyframes gradientAnimation {
    0% { background-position: 0 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0 50%; }
  }
  
  /* Logo Size */
  .logo {
    width: 100px;
    height: 50px;
  }
  
  /* Navbar Links */
  .navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    /* gap: 55px; */
  }
  
  /* Navbar Font */
  .navbar ul li {
    font-family: Inter;
  }
  
  /* Header */
  .navbar ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
    padding: 10px;
    transition: color 0.3s ease-in-out;
  }
  
  .navbar ul li a:hover {
    color: rgb(204, 200, 200);
  }
  
  /* Mobile Menu Toggle */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: 0.3s;
  }
  
  /* Media Query for Mobile */
  @media (max-width: 768px) {
    .navbar {
        height: 60px;
        padding: 0 15px;
    }
  
    .logo {
        width: 80px;
        height: 40px;
    }
  
  /* Hamburger Menu */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: center;  /* Centers bars */
    align-items: center;
    gap: -1000px;  /* Space between bars */
  }
  
  /* Styling each bar */
  .menu-toggle div {
    width: 30px;  /* Adjust width of bars */
    height: 4px;  /* Adjust thickness of bars */
    background-color: white; /* Color of bars */
    border-radius: 5px; /* Round the edges */
    margin: 4px 0; /* Spacing between bars */
    transition: all 0.3s ease-in-out;
  }
  
  .menu-toggle.active div:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active div:nth-child(2) {
    opacity: 0; /* Hide middle bar */
  }
  
  .menu-toggle.active div:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .menu-toggle {
        display: flex; /* Show menu toggle on mobile */
    }
  
    .navbar ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.8);
        text-align: center;
        padding: 10px 0;
    }
  
    .navbar ul.active {
        display: flex;
    }
  
    .navbar ul li {
        margin: 15px 0;
    }
  }
  
    .navbar ul {
      width: 50vw;  /* Set it to half of the viewport width */
      max-width: 300px; /* Optional: Prevent it from getting too wide */
      height: 100vh; /* Full height */
      display: none;
      flex-direction: column;
      position: absolute;
      top: 60px;
      right: 0;
      text-align: center;
      z-index: 9999; /* Ensure it's on top */
      background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723, #264688);
      background-size: 400% 100%;
      animation: gradientAnimation 15s linear infinite;
    }
  
    .navbar ul.active {
        display: flex;
    }
  
    .navbar ul li {
        margin: 15px 0;
    }
  
    .navbar ul li a {
        font-size: 14px;
    }
  }
  
  /* Responsive About Section */
  @media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }
  }
  
  /* Apply gap only on larger screens */
  @media (min-width: 769px) {
    .navbar ul {
      gap: 55px;
    }
  }

.heading {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}

.heading h1 {
    margin-bottom: 25px;
    position: relative; 
    font-size: 50px; /*size for title*/
    font-weight: bold;
    background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s infinite ease-in-out;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.heading h1::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: #dd4723;
}

.heading p {
    font-size: 18px;
    font-weight: 600;
    color: #264688;
}

.container {
    width: 100%;
    margin: 0 auto;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
}

.about-image img {
    max-width: 100%;
    width: 80%;
    height: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transition: 0.5s ease; 
}

.about-image:hover img {
    transform: scale(1.2);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 23px;
    margin-bottom: 15px;
    color: #2a8826;
}

.about-content p {
    font-size: 18px;
    line-height: 1.5;
}

/* Insurance Plans Section */
.insurance-plans {
    width: 90%;
    margin: 40px auto;
    text-align: center;
    font-family: Inter, sans-serif;
}

.insurance-plans h2 {
    margin-bottom: 25px;
    position: relative; 
    font-size: 30px;
    font-weight: bold;
    background: linear-gradient(90deg, #67b4e1, #2a8826, #dd4723);
    background-size: 400% 100%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s infinite ease-in-out;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.plans {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.plan {
    flex: 1;
    background: white;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 1px 1px 4px rgba(150, 150, 150, 0.112);
    text-align: left;
}

.plan h3 {
    font-size: 24px;
    color: #dd4723;
    margin-bottom: 10px;
    text-align: center;
}

.plan p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #264688;
    font-weight: 450;
    text-align: justify;
}

.plan ul {
    list-style-type: none;
    padding: 0;
}

.plan ul li {
    font-size: 16px;
    margin-bottom: 5px;
    color: darkgreen;
}

 /* Responsive Design */
@media screen and (max-width: 768px) {
    .heading {
        padding: 0px 20px;
    }

    .heading h1 {
        font-size: 36px;
    }

    .heading p {
        font-size: 17px;
    }

    .container {
        padding: 0px;
    }

    .about {
        padding: 20px;
        flex-direction: column;
    }

    .about-image {
        margin-right: 0px;
        margin-bottom: 20px;
    }

    .plans {
        flex-direction: column;
    }

    .plan {
        margin-bottom: 20px;
    }
}

