
:root {
    /*colors*/
    --orange-soda: #9f712d;
    --cultured-1: hsl(0, 0%, 93%);
    --cultured-2: hsl(192, 24%, 96%);
    --alice-blue: hsl(210, 100%, 97%);
    --cadet: hsl(200, 15%, 43%);
    --white: hsl(0, 0%, 100%);
    --opal: hsl(180, 20%, 62%);
  
    /**typography*/
  
    --ff-nunito-sans: "Nunito Sans", sans-serif;
    --ff-poppins: "Poppins", sans-serif;
    --fs-5: 0.875rem;
    --fw-600: 600;
  
    /**
       * transition
       */
    --transition: 0.25s ease;
  
    /*spacing*/
    --section-padding: 100px;
  
    /*shadow*/
    --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
  }

* {
    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%;
    }
}

/* .service-list > li {
    width: calc(33.33% - 20px);
} */

/*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/

  .service {
    background: var(--cultured-2);
    padding-block: var(--section-padding);
  }
  
  .service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .service-card {
    position: relative;
    background: var(--white);
    text-align: center;
    padding: 40px 30px;
    box-shadow: var(--shadow-2);
  }
  
  .service-card .card-icon {
    width: max-content;
    margin-inline: auto;
    margin-bottom: 20px;
  }
  
  .service-card .card-title {
    margin-bottom: 15px;
  }
  
  .service-card .card-title > a:is(:hover, :focus) {
    color: var(--orange-soda);
  }
  
  .service-card .card-text {
    color: var(--cadet);
    font-size: var(--fs-5);
    line-height: 1.8;
    margin-bottom: 25px;
  }
  
  .service-card .card-link {
    color: var(--opal);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }
  
  .service-card:is(:hover, :focus) .card-link {
    color: var(--orange-soda);
  }
  
  .service-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--orange-soda);
    transition: var(--transition);
  }
  
  .service-card:is(:hover, :focus)::after {
    width: 100%;
  }
  
  .section-subtitle {
    color: var(--orange-soda);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    padding: 5px 20px;
    background: hsla(9, 100%, 62%, 0.1);
    width: max-content;
    border-radius: 50px;
    margin-inline: auto;
    margin-bottom: 15px;
  }
  
  .section-title {
    text-align: var(--text-align, center);
    margin-bottom: var(--margin-bottom, 50px);
  }

  .h1,
  .h2,
  .h3 {
    color: var(--dark-jungle-green);
    font-family: var(--ff-poppins);
    line-height: 1.3;
  }
  #name {
    display: inline-block;
    font-family: "Baskervville SC", serif;
    font-weight: 700px;
    font-style: normal;
    /* margin-left: -100px; */
  }
  
  .h1 {
    font-size: var(--fs-1);
    line-height: 1;
  }
  
  .h2 {
    font-size: var(--fs-2);
  }
  
  .h3 {
    font-size: var(--fs-4);
    font-weight: var(--font-weight, 700);
  }
  
  .h3 > a {
    color: inherit;
  }