/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10%;
    border-bottom: 1px solid #000;
    z-index: 10;
}

nav ul li {
    cursor: pointer;
    list-style: none;
    display: inline-block;
    margin: 10px 20px;
    font-weight: 100;
}

nav .logo {
    cursor: pointer;
    height: 75px;
    /* border:1px solid black;
    border-radius: 100%; */
    width: 75px;
}

nav .nav-btn {
    background-color: #000;
    color: #ffffff;
    border-radius: 40px;
    outline: 0;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 100;
}

nav .nav-btn img {
    width: 15px;
    margin-left: 3.5px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
}

.header {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(#eefff9 0%, #ffccc1 49%, #dcdbff 100%);
    padding: 0 10%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.header h1 {
    margin-top: 100px;
    font-size: 13vw;
    line-height: 11vw;
}

.btn-container {
    margin: 20px 0;
}

.btn-container a {
    text-decoration: none;
    color: #000;
}

.header button {
    border: 0;
    outline: 0;
    display: inline flex;
    align-items: center;
    margin-right: 20px;
    cursor: pointer;
}

.btn-dark {
    padding: 10px 10px 10px 30px;
    border-radius: 40px;
}

.btn-dark:hover {
    background: #000;
}

.btn-dark img {
    width: 40px;
    background: white;
    border-radius: 50%;
    padding: 10px;
    margin-left: 30px;
}

.btn-light {
    background: transparent;
    text-decoration: underline;
}

.btn-light img {
    width: 20px;
    margin-left: 10px;
}

.header p {
    max-width: 360px;
    font-weight: 500;
}

.user-img {
    width: 80%;
    max-width: 500px;
    position: absolute;
    right: 7%;
    bottom: 0;
    top: 11vh;
}

/* Animation */
.header h1 span {
    background: linear-gradient(#000, #000);
    background-repeat: no-repeat;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-size: 0%;
}

.header h1 span:first-child {
    animation: textcolor1 2s linear infinite alternate;
}

.header h1 span:last-child {
    animation: textcolor2 2s linear infinite alternate;
}

@keyframes textcolor1 {
    0% {
        background-size: 0%;
    }

    40% {
        background-size: 100%;
    }

    100% {
        background-size: 100%;
    }
}

@keyframes textcolor2 {
    0% {
        background-size: 0%;
    }

    40% {
        background-size: 0%;
    }

    100% {
        background-size: 100%;
    }
}

.menu-icon {
    display: none;
}

.btn-dark:hover {
    color: #000;
    background: #ffffff;
}

/* .btn-light img:hover{
  width: 40px;
} */

/* Media Queries for Navbar */
@media only screen and (max-width: 600px) {
    nav ul {
        position: absolute;
        width: 100%;
        background: #000;
        color: #fff;
        /* Ensure text is visible against the black background */
        left: 0;
        top: 100%;
        text-align: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s;
    }

    .nav-btn {
        display: none;
    }

    nav .logo {
        width: 150px;
    }

    nav ul li {
        margin: 10px;
        font-size: 14px;
    }

    .menu-icon {
        display: block;
        width: 30px;
    }

    .show-menu {
        max-height: 200px;
        /* Adjust height as needed */
    }

    nav ul li a {
        color: #fff;
        /* Ensure links are visible */
    }
}


/* Media queries for header content */

@media only screen and (max-width:600px) {
    .header {
        min-height: auto;
        padding: 0;
    }

    .user-img {
        width: 100%;
        right: auto;
        position: relative;
        margin-top: 100px;
    }
    .user-img:hover{
        transform: scale(1.05);
        cursor: pointer;
    }
   
    
    .user-imga:hover {
        transform: scale(1.05);
        cursor: pointer;
    }



    .header-content {
        position: absolute;
        bottom: 0;
        padding: 0 10%;
        z-index: 2;
        padding-bottom: 40px;
        color: #fff;
    }

    .btn-container {
        margin: 5px 0;
    }

    .header button {
        font-size: 14px;
        margin-right: 10px;
    }

    .btn-dark {
        padding: 7px 7px 7px 20px;
        margin-bottom: 10px;
        color: #fff;
    }

    .btn-dark img {
        width: 30px;
        padding: 5px;
        margin-left: 15px;
    }

    .btn-light img {
        width: 12px;
        margin-left: 5px;
    }
}
*/ .socialmedia {
    margin-top: 10%;
}


/* Style of Contact form */
:root {
    --primary-color: #b9ff66;
    --secondary-color: #191a23;
    --body-color: #f3f3f3;
}

/* .container{
    margin: 25% 25% 25% 25%;
    height: 100vh;
    padding: 10vh;

    align-items: center;
    justify-content: center;
  }
   */
.contact-us .contact-wrapper {
    border-radius: 25px;
    padding: 40px 60px;
    background-color: var(--body-color);
}

.contact-us .contact-wrapper input,
.contact-us .contact-wrapper textarea {
    background-color: white;
    border: 1px solid var(--secondary-color);
    border-radius: 10px;
    padding: 6px 12px;
}

.contact-us .contact-wrapper input:focus,
.contact-us .contact-wrapper textarea:focus {
    box-shadow: none;
}

.contact-bg {
    position: absolute;
    right: -190px;
    width: 400px;
}

input[type="radio"] {
    accent-color: var(--primary-color);
}

.service_body {
    margin-top: 80px;
    /* This adds space below the navbar */
    position: relative;
    /* Make this container relatively positioned */
}

.nav-btn-back img {
    height: 100px;
    width: 100px;
    position: absolute;
    /* Position the button absolutely within the relative container */
    top: 0;
    /* Align to the top of the container */
    right: 0;
    /* Align to the right of the container */
    margin-top: 10vh;
    /* Additional margin if needed */
    margin-right: 20px;
    /* Adjust this value to add space from the right edge */
}

.btn_back {
    position: absolute;
    top: 3px;
    /* Adjust as needed */
    right: 3px;
    /* Adjust as needed */
    height: 3rem;
}

.service_section {
    display: flex;
    justify-content: space-around;
    padding: 20px;
}

.service_card {
    background-color: #f4f4f4;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 30%;
    text-align: center;
    margin-top: 5vh;
    transition: transform 0.3s, background-color 0.3s;
}

.service_card:hover {
    transform: scale(1.05);
    background-color: #eaeaea;
}

/* styling social media logos */
.img {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    height: 100px;
    width: 100px;
}

.facebook {
    height: 50px;
    width: 50px;

}

/* .socialmedia a.facebook img {
    height: 50px;
    width: 50px;
   
    display: inline-block;
} */
/* Centering the container */
.socialmedia {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically (if the parent has a height) */
    gap: 20px;
    /* Space between icons */
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);

}

/* Styling all images */
.socialmedia img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    /* Ensures image fills the box without distortion */
    border-radius: 50%;
    /* Makes the images circular */
    border: 2px solid #000;
    /* Optional: Adds a border for consistency */
    padding: 2px;
}

.socialmedia img:hover {
    box-shadow: 0 0 10px rgba(228, 25, 247, 0.5);
    /* Adds a shadow on hover */
}

.user2 .user-img2 {
    width: auto; /* Adjust as needed */
    height: auto; /* Adjust as needed */
    display: flex;
    flex-direction: column;
 
    margin-top: 300px;
    margin-left: -100px;
    
}
body {
    background: #f1f1f1;
    color: #222;
    font-family: 'Open Sans', sans-serif;
  }
  
  .wrapper {
    padding: 100px;
    width: 500px;
    display: block;
    text-align: center;
    margin: 0 auto;
  }
  
  .roles {
      font-size: 30px;
      height: 50px;
      vertical-align: middle;
      overflow: hidden;
  }
  
  .roles div {
      height: 50px;
      transition: margin-top 1s ease-in-out;
  }