body{
    margin:0;
    padding:0;
    font-family:Arial, sans-serif;
    background:#f8f9fa;
}

/* =========================
   ANIMATIONS
========================= */

/* Hero Text Animation */

.hero-content{
    animation:fadeLeft 1.5s ease;
}

.search-box{
    animation:fadeRight 1.5s ease;
}

/* Feature Card Animation */

.feature-card{
    animation:zoomIn 1s ease;
}

/* Profile Card Hover */

.profile-card{
    transition:0.4s;
}

.profile-card:hover{
    transform:translateY(-10px) scale(1.02);
}

/* Button Animation */

.register-btn,
.search-btn,
.view-btn{
    transition:0.3s;
}

.register-btn:hover,
.search-btn:hover,
.view-btn:hover{
    transform:scale(1.05);
}

/* Navbar Animation */

.navbar{
    animation:slideDown 1s ease;
}

/* Floating Effect */

.feature-card:hover i{
    animation:floatIcon 1s infinite alternate;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes fadeLeft{

    from{
        opacity:0;
        transform:translateX(-80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes fadeRight{

    from{
        opacity:0;
        transform:translateX(80px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

}

@keyframes zoomIn{

    from{
        opacity:0;
        transform:scale(0.7);
    }

    to{
        opacity:1;
        transform:scale(1);
    }

}

@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-100%);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

@keyframes floatIcon{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-10px);
    }

}

/* =========================
   IMAGE ZOOM EFFECT
========================= */

.profile-card img{
    transition:0.5s;
}

.profile-card:hover img{
    transform:scale(1.08);
}

/* =========================
   HERO BUTTON GLOW
========================= */

.register-btn{
    box-shadow:0 0 15px rgba(255,255,255,0.5);
}

.register-btn:hover{
    box-shadow:0 0 25px rgba(255,255,255,0.9);
}

/* =========================
   SEARCH BOX HOVER
========================= */

.search-box:hover{
    transform:translateY(-5px);
    transition:0.4s;
}

/* =========================
   SMOOTH SCROLL
========================= */

html{
    scroll-behavior:smooth;
}

/* =========================
   POPUP MOBILE MENU
========================= */

.offcanvas{
    width:280px;
    background:#ffffff;
}

.popup-header{
    background:#8b0000;
}

.popup-link{
    color:#333 !important;
    font-size:18px;
    font-weight:600;
    padding:12px 15px;
    border-radius:10px;
    transition:0.3s;
}

.popup-link:hover{
    background:#8b0000;
    color:#fff !important;
    transform:translateX(5px);
}

.mobile-login-btn{
    background:#8b0000;
    color:#fff;
    padding:12px;
    font-weight:bold;
    border-radius:10px;
}

.mobile-login-btn:hover{
    background:#a80000;
    color:#fff;
}
/* =========================
   HIDE SHOW NAVBAR SCROLL
========================= */

.custom-navbar{
    transition:0.4s;
}

/* Hide Navbar */

.navbar-hide{
    transform:translateY(-100%);
}

/* Show Navbar */

.navbar-show{
    transform:translateY(0);
}


/* Navbar Fixed Space */

body{
    padding-top:80px;
}

/* Mobile Animation */

.offcanvas.show .popup-link{
    animation:menuFade 0.5s ease;
}

@keyframes menuFade{

    from{
        opacity:0;
        transform:translateX(-20px);
    }

    to{
        opacity:1;
        transform:translateX(0);
    }

} 
/* Navbar */

.custom-navbar{
    background:#8b0000;
}

.nav-link{
    color:#fff !important;
    margin-left:10px;
    font-weight:600;
}

/* Hero Section */

.hero-section{
    background:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1519741497674-611481863552?q=80&w=1400&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
    min-height:90vh;

    display:flex;
    align-items:center;

    color:#fff;
}

.hero-content h1{
    font-size:55px;
    font-weight:bold;
}

.hero-content p{
    font-size:20px;
    margin:20px 0;
}

.register-btn{
    background:#fff;
    color:#8b0000;
    padding:12px 30px;
    font-weight:bold;
    border-radius:5px;
}

.register-btn:hover{
    background:#ffd6d6;
    color:#000;
}

/* Search Box */

.search-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);

    color:#000;
}

.search-btn{
    background:#8b0000;
    color:#fff;
    padding:10px;
}

.search-btn:hover{
    background:#a80000;
    color:#fff;
}

/* Section */

.section-title{
    color:#8b0000;
    font-weight:bold;
}

/* Features */

.feature-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);

    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:50px;
    color:#8b0000;
    margin-bottom:20px;
}

/* Profile Cards */

.profile-card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.profile-card img{
    height:300px;
    object-fit:cover;
}

.view-btn{
    background:#8b0000;
    color:#fff;
}

.view-btn:hover{
    background:#a80000;
    color:#fff;
}

/* Footer */

.footer-section{
    background:#8b0000;
    color:#fff;
    padding:30px 0;
}

/* Mobile Responsive */

@media(max-width:768px){

    .hero-section{
        text-align:center;
        padding:50px 0;
    }

    .hero-content h1{
        font-size:35px;
    }

    .hero-content p{
        font-size:18px;
    }
.nav-link{
    color:#b90000 !important;
    margin-left:10px;
    font-weight:600;
}

}



