/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
    background: #f9f9f9;
}
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-img {
    height: 40px;
    width: auto;
}
.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6f61;
}
.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
}
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: #ff6f61;
}
.nav-link.active {
    color: #ff6f61;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ff6f61;
}
.nav-button {
    background: linear-gradient(135deg, #ff6f61, #ff8e7d);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
}
.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
    color: white;
}
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
}
/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 1;
}
.slide-content {
    position: absolute;
    bottom: 15%;
    left: 10%;
    max-width: 600px;
    color: white;
    text-align: left;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}
.slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}
.hero-slider h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.hero-slider p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6f61, #ff8e7d);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.3);
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 111, 97, 0.4);
}
.slider-nav {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}
.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}
.slider-dot.active {
    background: white;
    transform: scale(1.2);
}
/* Features Section */
.features {
    padding: 5rem 2rem;
    background: white;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}
.section-title h2 {
    font-size: 2.5rem;
    color: #ff6f61;
    margin-bottom: 1rem;
}
.section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.feature-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}
.feature-content {
    padding: 1.5rem;
}
.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #333;
}
.feature-content p {
    color: #666;
    margin-bottom: 1rem;
}
.feature-link {
    color: #ff6f61;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.feature-link:hover {
    color: #e55a50;
    gap: 1rem;
}
/* Testimonials */
.testimonials {
    padding: 5rem 2rem;
    background: #f5f5f5;
}
/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 4rem 2rem 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #ff6f61;
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: #ff6f61;
    padding-left: 5px;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: #ff6f61;
    transform: translateY(-3px);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #aaa;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: #ff6f61;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: #e55a50;
}
/* Login Page Specific Styles */
.bg-gray-100 {
    background-color: #f9f9f9;
}
.text-ff6f61 {
    color: #ff6f61;
}
.bg-green-600 {
    background: #16a34a;
}
.bg-green-600:hover {
    background: #15803d;
}
.bg-gray-400 {
    background: #9ca3af;
}
input:focus {
    ring: 2px solid #ff6f61;
}
/* Responsive Styles */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 1rem;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .hero-slider h1 {
        font-size: 2.5rem;
    }
    .slide-content {
        left: 5%;
        right: 5%;
        max-width: none;
    }
}
@media (max-width: 768px) {
    .hero-slider h1 {
        font-size: 2rem;
    }
    .section-title h2 {
        font-size: 2rem;
    }
}
.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}