
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    /* font-family: 'Roboto', sans-serif; */
    line-height: 1.6;
    /* background-color: #f4f4f4;*/
    background-color:#181616;
    color: #333;
    font-family: monospace;
    animation: pulse 2s;
    /* padding: 0px; */
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 20px 0;
    font-family: sans-serif;
}

/* Navbar */
.navbar {
    background-color:#181616;
    color: #fff;
    padding: 15px 0;
    /* position: fixed; */
    width: 100%;
    height: 15%;
}

.navbar .logo a {
    display: flex;
    color: #fff;
    font-size: 50px;
    text-decoration: none;
    font-weight: bold;
}
@keyframes pulse {

    0% {
        filter: blur(50px);
    }
    100% {
        filter: blur(0px);
    }
    
}


.navbar .logo a:hover {
    color:  #9f712d;
}

.navbar .nav-links {
    float: right;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.navbar .nav-links li {
    display: flex;
    margin-left: 25px;
    margin-top: -50px;
}

.navbar .nav-links a {
    color: #fff;
    text-decoration: none;
    /* font-weight: 500; */
    padding-left: 25px;
}

.navbar .nav-links a:hover {
    text-decoration: underline;
    color: #795d34;
}

/* Hero Section */
.hero {
    background: url('medicines\ image.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
    
    overflow: hidden;
border-right: .15em solid rgb(255, 255, 255);
white-space:nowrap;
animation:
        typing 3.5s steps(50 , end),
        blink-caret 0.5s step-end infinite;
}

@keyframes typing {
    from { width: 0 }
    to { width: 100% }
}

@keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color:teal; }
}


.hero .btn {
    background-color: #563402;
    /* background-color: #ff6600; */
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.hero .btn:hover {
    background-color: #281902;
    border: white 2px solid;
    /* background-color: #e65c00; */
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color:#181616;
    /* background-color: #fff; */
    /* background-color: #281902; */
    text-align: center;
}

.features h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: white;
}

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-cards .card {
    background-color:#22252b;
    width: 30%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.feature-cards .card:hover{
    border: 5px solid #9f712d;
}

.feature-cards .card h3 {
    margin-bottom: 15px;
    color: #9f712d;
}

.feature-cards .card p {
    font-size: 16px;
    color: #ccc;
    /* color: white; */
}

/* Contact Section */
.contact {
    padding: 60px 0;
    /* background-color: #f4f4f4; */
    background-color:#181616;
    
    text-align: center;
}

.contact h2 {
    margin-bottom: 40px;
    font-size: 32px;
    color: white;
}

.contact form {
    max-width: 600px;
    margin: auto;
}

.contact form input,
.contact form textarea,
.contact form select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #22252b;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact form input,
.contact form textarea,
.contact form select:hover{
    
    border: #563402 2px solid;
}

.contact form .btn {
    background-color:  #563402;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contact form .btn:hover {
    background-color:#281902;
    /* border: rgb(192, 110, 110) 2px solid; */
    border: white 2px solid;
}

/* Footer */

/* .footer {
    background-color: #181616;
    color: #fff;
    padding: 20px 0;
    text-align: center;
} */

footer {
    background: rgba(0, 0, 0, 0.902);
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    padding-top: 1rem;
    position:flex;
    width: 100%;
    font-size: 20px;
}
.para p{
    padding-top: 20px;
}
#social ul{
    display:flex;
    justify-content: space-evenly;
    list-style: none;
    }
    
    #social ul svg:hover{
    width: 50px;
    transition: 0.1s;
    }
    
    svg{
        border-radius: 50%;
    }
    

/* Login Section */
.login-section {
    padding: 60px 0;
    background-color:whitesmoke;
    text-align: center;
}

.login-section h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.login-section form {
    max-width: 400px;
    margin: auto;
}

.login-section form label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.login-section form input,
.login-section form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-section form .btn {
    background-color: #563402;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-section form .btn:hover {
    background-color: #005bb5;
}

/* Dashboard Section */
.dashboard {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.dashboard h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.dashboard-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.dashboard-cards .card {
    background-color: #fff;
    width: 30%;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dashboard-cards .card h3 {
    margin-bottom: 15px;
    color: #0066cc;
}

.dashboard-cards .card p {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feature-cards .card,
    .dashboard-cards .card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .navbar .nav-links {
        display: none;
    }

    .navbar .logo {
        float: none;
        text-align: center;
    }

    .feature-cards .card,
    .dashboard-cards .card {
        width: 100%;
    }
}
