/* Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    font-size: 20px;
    font-family: serif;
    line-height: 1.4;
    color: #333;
    overflow-x: hidden;
}

/* Utility Classes */
.container{
    max-width: 1180px;
    margin: auto;
}

.text-primary {
    color: rgb(145, 10, 127);
}

.bg-light {
    background: #f4f4f4;
    color: #333;
}

.bg-dark {
    background: #333;
    color: #fff;
}

/* NAVBAR */

#navbar {
    display: flex;
    justify-content: space-between;
    background: rgb(20, 20, 20);
    color: #fff;
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    z-index: 1;
}

#navbar a {
    color: #fff;
    padding: 10px 20px;
    margin: 0 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
#navbar a:hover {
    background-color: rgb(192, 45, 172);
  
}

#navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
}

/* Showcase Area */
#showcase {
    background: url('../Images/myp.jpg');
    background-size: cover;
    background-repeat: no-repeat; 
    background-position: center; 
    height: 102vh; 

}

.showcase-content {
    display: flex;
    flex-direction: column;
    text-align: center; 
    align-items: center; 
    justify-content: center;
    position: absolute; 
    top: 81px;
    left: 0;
    right: 0;
    bottom: 0;
    color: #fff;
    /* background: rgba(0,0,0,0.6); */ */
    
}

.showcase-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
}

.showcase-content .btn {
    font-size: 2.0rem;
    padding: 1rem 5rem;
}

.showcase-content .btn:hover {
    background: rgb(224, 27, 215);
    color: black;
    transition: color 0.3s, background 0.3s;
}
.btn{
    color: black;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid black;
    border-radius: 10px;
    font-weight: bold;
    box-shadow: 2px 2px 5px #0a31df;
}

/* Section About */
#about{
    padding: 5rem 0;
}

#about h2, #services h2{
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
}

#about h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    margin-bottom: 1.8rem;
    margin-top: 1.8rem;
}

#about .about-content{
    display: flex;
}

#about .about-text,
#about.about-image {
    flex: l;
}

#about .about-text{
    text-align: left;
}

#about .about-image img{
    display: block;
    margin-left: auto;
    width: 75%;
    border-radius: 40%;
    margin-top: 60px;

}

/* Section Services */
#services {
    padding: 5rem 0;
}

#services h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

#services .boxes {
    display: flex;
}

#services .box {
    background: #fff;
    flex: 1;
    padding: 3rem;
    margin: 0 3rem;
    border-radius: 10px;
    box-shadow: 2px 2px 5px #d1d1d1;
    font-size: 1.3rem;
}

#services .box i {
    color: #fff;
    padding: 1rem;
    background: rgb(228, 13, 67);
    border-radius: 50%;
    margin: 0 1rem;
    margin-bottom: 2rem;
}

/* Section Contact */
#contact {
    padding: 5rem 0;
}

#contact h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 8rem;
}

#contact h3 {
    text-align: center;
    font-size: 2.5rem;
    margin: 3rem 0;
    margin-top: 5rem;
}

#contact .form-box {
    background: #fff;
    padding: 3rem;
    box-shadow: 2px 2px 5px black;
    border-radius: 10px;
}

#contact .form-group {
    margin-bottom: 2rem;
}

#contact .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    width: 80%;
    margin-left: 10%;
    font-size: 1.1rem;
}

#contact .form-group input,
#contact .form-group textarea {
    width: 80%;
    margin-left: 10%;
    font-size: 1.3rem;
    padding: 1rem;
    border: 0.5px solid black;
    border-radius: 5px;
}

#contact .form-group textarea {
    font-family: serif;
}

#contact .contact-btn {
    width: 50%;
    margin-left: 25%;
    display: inline-block;
    padding: 1rem 3rem;
    border-radius: 5px;
    font-size: 1.5rem;
    background: rgb(224, 27, 215);
    color: #fff;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 2px 2px 5px #333;
}

#contact .contact-btn:hover {
    background: rgb(100, 15, 89);
}

#contact .from-container {
    position: relative;
}

#contact .mail-icon {
    font-size: 3rem;
    background: rgb(226, 9, 45);
    color: #fff;
    display: inline-block;
    padding: 1.5rem 2rem;
    border-radius: 50%;
    position: relative;
    top: 315%; 
    left: 45%;
    z-index: 0;
}

/* Footer */
footer {
    padding: 2.0rem;
}

footer p {
    text-align: center;
}
