
/* Initial state: object is hidden */
.animate {
    opacity: 0;
    transform: translateY(-20px); /* Move the object up */
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  /* Animated state: object becomes visible */
  .animate.show {
    opacity: 1;
    transform: translateY(0);
  }
  

/*Scrollbar*/
body::-webkit-scrollbar {
    width: 16px; 
}

body::-webkit-scrollbar-track {
    background-color: #f1f1f1; 
}

body::-webkit-scrollbar-thumb {
    background-color: #008080; 
    border-radius: 10px; 
    border: 3px solid #f1f1f1; 
}

body::-webkit-scrollbar-thumb:hover {
    background-color: #005f5f; 
}

/* Navbar Styling */
.navbar {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px 0px;
    box-shadow: -5px 10px 10px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 20px;
    z-index: 100;
    border-radius: 30px;
    transition: all 0.3s ease; 
}

.navbar:hover {
    transition: all 0.4s ease;
    margin-bottom: 15px; 
    box-shadow: -5px 5px 5px 5px rgba(0, 0, 0, 0.2); 

}

.navbar.smaller {
    padding: 10px 0px;
    margin-top: 10px;
    box-shadow: -5px 5px 5px 5px rgba(0, 0, 0, 0.2);
    width: 70%;
}



/* Navbar Container */
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}



.navbar-brand {
    color:#008080;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    text-shadow: 3px 3px 5px rgba(0, 0, 0,0.1); 
    
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.navbar-menu li {
    display: inline;
}

.navbar-menu a {
    text-decoration: none;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    transition: color 0.3s ease;
}

.navbar-menu a:hover {
    color: #000;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #555;
    cursor: pointer;
}

#loginstyle {
    border: 1px solid none; 
    width:80px;
    margin-top: -5px; 
    margin-right: -45px;
    height: 35px;          
    border-radius: 12px;
    font-size:125%; 
    padding-top:9px; 
    padding-left: 10px;
    font-weight: bold;           
    box-shadow: -3px 5px 15px 3px rgba(0, 0, 0, 0.2); 
    background-color: #f3f3f3; 
    font-family:'Courier New', Courier, monospace;
    cursor: pointer;
    transition: background-color 0.3s ease-in, transform 0.3s ease-in;

}
#loginstyle:hover {
    background-color: #FFFFFF; /* Darker teal on hover */
    color: #2C3E50 ;
    transform: scale(1.05); /* Slightly enlarge the button */

}

#registerstyle {
    color: white;
    border: 1px solid #008080; 
    width:120px;
    text-align: center; 
    margin-top: -9.5px; 
    height: 40px;          
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size:130%; 
    padding-top:12px; 
    padding-right: 10px;font-weight: bold;           
    box-shadow: -3px 5px 15px 5px rgba(0, 0, 0, 0.1); 
    background-color: #008080; 
    cursor: pointer;
    transition: background-color 0.3s ease-in, transform 0.3s ease-in;

}
#registerstyle:hover {
    background-color: #005f5f; 
    transform: scale(1.05);
}

/* Responsive nav bar */
@media (max-width: 768px) {
    .navbar {
        width: 90%;
    }

    .navbar.smaller {
        width: 85%;
    }

    .navbar-brand {
        font-size: 24px; 
    }

    .navbar-menu {
        display: none; 
        flex-direction: column;
        gap: 15px;
        text-align: center;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
        border-radius: 0;
    }

    .navbar-menu.active {
        display: flex; 
    }

    .menu-toggle {
        display: block; 
    }

    .navbar-menu a {
        font-size: 18px; 
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 20px; 
    }

    .navbar-menu a {
        font-size: 16px;
    }

    .navbar {
        padding: 15px 0px;
    }
}

/* Responsive end */

/* General Reset */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #333;
  }
  
  /* Header Section */
  #about-alt-header {
    background: linear-gradient(to right, #0b9e9e, #008080);
    color: #fff;
    padding: 40px 20px;
    text-align: center;
  }
  
  #about-alt-header .header-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  
  #about-alt-header .header-content p {
    font-size: 1.3rem;
    margin: 0;
  }
  
  /* Main Section */
  #about-alt-main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    gap: 20px;
  }
  
  .about-alt-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
  }
  
  .about-alt-text {
    flex: 1;
    min-width: 300px;
  }
  
  .about-alt-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #008080;
  }
  
  .about-alt-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
  }
  
  .about-alt-text p span {
    font-weight: bold;
    color: #008080;
  }
  
  .about-alt-image {
    flex: 1;
    min-width: 300px;
  }
  
  .about-alt-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Features Section */
  #about-alt-features {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  }
  
  #about-alt-features h2 {
    font-size: 2.5rem;
    color: #008080;
    margin-bottom: 30px;
  }
  
  .features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
  
  .feature-card {
    background: #f5f5f5;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .feature-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 15px;
  }
  
  .feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feature-card p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Footer Section */
  #about-alt-footer {
    background: #008080;
    color: #fff;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }
  
  #about-alt-footer p {
    margin: 0;
    font-size: 0.9rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #about-alt-main {
      flex-direction: column;
      text-align: center;
    }
  
    .about-alt-wrapper {
      flex-direction: column;
    }
  
    .feature-card {
      width: 100%;
      max-width: 400px;
    }
  }
  
  

