.body{
    font-family: 'Poppins', sans-serif;
}
* {
    transition: all 0.2s ease; /* Add a transition effect to all properties with a duration of 0.3 seconds and ease timing function */
}
.card {
    max-width: 600px;
    margin:  auto;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
}

@media (max-width: 768px) {
    .card {
        max-width: 100%; /* Adjust the width as needed for mobile devices */
    }
}

.bg-img {
    width: 100%;
    height: auto;
}

.social-media {
    position: absolute;
  top: 208px;
  left: 25px;
  width: 10px;
}
.social-media img {
    height: 70px;
    width: 70px;
}

@media only screen and (max-width: 768px) {
    .social-media {
        left: 20px;
        top: 135px;
    }
    .social-media img {
        height: 45px;
        width: 45px;
    }
    .icon-image {
        height: 40px;
        margin-left: 15px;
    }
}
.icon-image {
    height: 50px;
  margin-left: 15px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
    .icon-image {
        /* Adjustments for mobile devices */
        margin-left: 10px; /* You can change the value based on your design needs */
        margin-top: 2px;
    }
}
@media only screen and (max-width: 768px){
    
}

.header {
    position: relative;
}



.logo {
    position: absolute !important;
    top: 80px;
    left: 20px;
}

.logo img{
    width: 75%;
    height: auto;
}
@media (max-width: 768px) {
    .logo {
        top: 20px; /* Adjust the top position as needed for mobile devices */
        left: 10px; /* Adjust the left position as needed for mobile devices */
    }

    .logo img {
        width: 50%; /* Set the width to 100% to make it responsive on smaller screens */
    }
}

.profile-picture {
    position: absolute !important;
    top: 135px;
    width: 125%;
    left: 200px;
}

.profile-picture img {
    width: 54%;
    height: auto;
}

@media only screen and (max-width: 600px) {
    .header {
        text-align: center;
    }
    .logo {
        position: absolute !important;
        top: 23px;
        left: -78px;
    }

    .logo img {
        width: 55%;
        height: auto;
    }

    .profile-picture {
        position: absolute !important;
        top: 24%;
        width: 80%;
        left:107px;
        right: 50px;
        text-align: center;
    }

    .profile-picture img {
        width: 80%;
        height: auto;
    }
}

.description{
    margin-left: 0px;
}

.description-container{
    display: flex;
}

.description-icon{
    margin-left: 10px;
    margin-top: 44px;
    margin-right: 10px;
}

.description-icon img {
    height: 65px;
}
@media (max-width: 768px) {
    .description-icon img {
        height: 65px; /* Set height to auto for better responsiveness on smaller screens */
        margin-top: -35px;
    }
}
/* Default styles for both desktop and mobile */
.name h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 35px;
}

.position h2 {
    font-family: 'Poppins', sans-serif;
    margin-top: -40px;
    color: #3c3c3c;
    font-size: 30px;
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
    .name h2 {
        font-size: 20px; /* Adjust font size for mobile */
        margin-top: -10px;
    }

    .position h2 {
        margin-top: -22px; /* Adjust margin for mobile */
        font-size: 19px; /* Adjust font size for mobile */
    }
    .description-icon{
        margin-left: 10px;
        margin-top: 20px;
        margin-right: 10px;
    }
}
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ebebeb;
}

.button-container button {
    margin-top: 3px;
    width: 100%;
    border: none;
    padding: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 20px;
    color: #3c3c3c;
    cursor: pointer;
}
@media (max-width: 768px) {
    .button-container button {
        font-size: 16px; /* Adjust the font size for mobile devices */
    }
}

.contact-button{
    background-color: #ffffff;
    border-top-right-radius: 25px;
}

.service-button{
    background-color: #ffffff;
    border-top-left-radius: 25px;
}

.container-box{
    border: 2px solid #c8d400;
    border-radius: 10px;
    margin: 30px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
    .container-box {
        margin: 15px 10px; /* Adjust the margin as needed */
    }
}

.container-box p{
    text-align: center;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 25px;
    color: #0075bf;
}
@media (max-width: 768px) {
    .container-box p {
        font-size: 16px; /* Adjust the font size for mobile devices */
        width: 70% !important;
    }
}
@media (min-width: 350px) and (max-width: 420px) {
    .container-box p {
        font-size: 14px;
    }
}


.container-button-area{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 25px;
    margin-bottom: 5px;
}

.container-button-area button{
    align-items: center;
    margin: 0px 12px;
    padding: 1px 10px;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 15px;
    color: #0075bf;
    background-color: #ffffff;
    border: 1px solid #c8d400;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) inset;
    cursor: pointer;
}
@media (max-width: 768px) {

    .container-button-area button {
        margin: 10px 3px; /* Adjust the margin for better spacing on smaller screens */
        font-size: 12px;
        padding: 1px 6px;
    }
}

.container-button-area button.active{
    background-color: #c8d400;
}

.container2-box{
    border: 1px solid #c8d400;
    border-radius: 10px;
    margin: 30px 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container2-box p{
    text-align: center;
    font-family: 'Poppins';
    font-weight: 900;
    font-size: 20px;
    color: #0075bf;
    padding: 0px 30px;
}
@media (max-width: 768px) {
    .container2-box p {
        font-size: 16px; /* Adjust the font size for mobile devices */
        padding: 0px 15px; /* Adjust the padding for smaller screens */
    }
}

.download-button {
    position: fixed;
            bottom: 10px; /* Adjust the distance from the bottom as needed */
            left: 50%;
            transform: translateX(-50%);
            background-color: #0075bf;
            padding: 10px;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


  #downloadButton {
    padding: 0px 10px;
    font-size: 16px;
    font-family: 'Poppins';
    background-color: #0075bf;
    color: #fff;
    border: none;
    cursor: pointer;
  }
  @media (max-width: 600px) {
    #downloadButton {
        font-size: 14px;
    }
}


  .id1, .id2 {
    font-size: 18px !important;
  }
  @media (max-width: 768px) {
    .id1, .id2 {
        font-size: 12px !important; /* Adjust the font size for mobile devices */
    }
}

.id3 {
    font-size: 25px !important;
}
@media (max-width:768px) {
    .id3 {
        font-size: 16px !important;
    }
}


.triangle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px; /* Adjust the space between triangles as needed */
    transition: none;
}
@media only screen and (max-width: 600px) {
    .triangle {
        gap: 155px;
    }
}

.triangle1, .triangle2 {
    width: 15px;
    height: 15px;
    visibility: hidden;
    transition: all 0.1s ease;
}

.triangle1 {
    visibility: initial;
}

a{
    text-decoration: none;
    color: #0075bf;
}

#transtriangle {
    transition: none;
}