/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global styles */
  body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #6495ed 0%, #ffa500 100%);
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  
  /* Header styles */
  header {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
  }
  
  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 10px;
  }
  
  .logo img {
    height: 55px;
    width: 55px;
    margin: 5px 20px;
  }
  
  .nav-links li {
    display: inline-block;
    margin: 3 rem;
    padding: 2rem;
  }
  
  .nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #ff9900;
  }
  
  /* Hero section styles */
  #hero {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.2) 20%, transparent 60%);
    padding: 20px;
  }
  
  #hero:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.4) 20%, transparent 60%);
    transform: rotate(45deg);
  }
  
  #hero-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  #hero h1 {
    font-size: 48px;
    margin: 0px 0px 20px 0;
    color: #fff;

  }
  
  #hero h2 {
    font-size: 24px;
    margin-bottom: 40px;
    color: #fff;
    opacity: 0;
  position: relative;
  top: -20px;
  animation: fade-in 1s forwards;
  animation-delay: 0.5s;
  }
  .animate-content {
    animation: slide-in 3s forwards;
  }
  
  @keyframes slide-in {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff9900;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #ff6600;
  }
  
  /* Features section styles */
  .features {
    padding: 80px 0;
    text-align: center;
  }
  
  .features h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
  }
  
  .feature {
    display: inline-block;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 300px;
    height: 400px;
    margin: 20px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  #ft1, #ft2{
    height: auto;
  }
  .feature:hover {
    transform: scale(1.1);
      background-image: linear-gradient(120deg, #ffee00, #eade3b, #f3f2c8);
  }
  
  .feature .feature-heading {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .feature .feature-heading img {
    display: flex;
    flex-flow: column wrap;
    
    width: 4rem;
    height: 4rem;
    margin: 50px auto;
  }
  .feature .feature-header i {
  font-size: 80px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .feature-content {
    text-align: center;
    display: flex;
    flex-flow: column wrap;
  }
  .feature-content-1{
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
  }
  .feature h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature p {
    color: #555;
    margin-bottom: 20px;
  }
  
  .feature .description {
    display: none;
  }
  
  .feature:hover .description {
    display: block;
  }
  
  
  /* New section styles */
  .new-section {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 80px 0;
    text-align: center;
  }
  
  .new-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
  }
  
  .new-section p {
    margin-bottom: 40px;
    color: #fff;
  }
  
  /* Footer styles */
  footer {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px 0;
    text-align: center;
    color: #fff;
  }
  .ham{
    display: none;
  }
  
  .resp{
    display: block;
  }
  .resphide{
    display: none;
  }
  .resp ul li{
    background: white;
    margin: 0.5rem;
    padding: 0.5rem;
    display: flex; 
    justify-content: center;
    border: black;
    border-width: 5px 5px;
    border-radius: 15px;
    
  }
  .resp ul li a{

    color: #ff9900;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  .responsive-button{
    background-color: transparent;
    margin: 0;
    padding: 0;
    border: 0;
  }
@media screen and (max-width:775px) {
  .ham{
    display: flex;
  }
  .nav-links{
    display: none;
  }
  
}
@media screen and (min-width : 776px) { 
  .resp{
  display : none ; 
  } 
  }