@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Open+Sans&family=Philosopher&family=Poppins:wght@300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

:root {
    --font-01: 'Poppins', sans-serif;
    --font-02: 'Philosopher', sans-serif;

    /* color  */
    --global-color-0: #e41345;
    --global-color-1: #f70077;
    --global-color-2: #1a1a1a;
    --global-color-3: #3e4359;
    --global-color-4: #f7f7f7;
    --global-color-5: #fff;
    --global-color-6: #243673;
    --global-color-7: #BFD1FF;

}

/* sectionFirst */

.sectionFirst {
    padding: 12rem 0% 15rem;
}

.sectionFirst::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: var(--global-color-2); */
    background-image: url("../img/serviceBackGround.jpg");
    z-index: -1;
    opacity: 0.7;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sectionFirst h1 {
    text-align: center;
    font-size: 5rem;
    -webkit-text-stroke: 2px #000; /* Add a black 
    font-family: var(--font-02);
    color: red;
    box-shadow: none; /* No shadow initially */
    transition: box-shadow 0.3s ease, color 0.3s ease; /* Smooth transition for shadow and color */
}

.sectionFirst h1:hover {
    color: blue; /* Change text color on hover */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Unique shadow effect on hover */
}


/* second section  */
.AboutMeInDetail {
    padding: 2.5rem 5%;
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.AboutMeInDetail:hover {
    transform: scale(1.02);
}

/* Image Section */
.AboutMeInDetail .img {
    width: 800px;
    height: 250px;
    margin-top: 50px;
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.AboutMeInDetail .img:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.2);
}

.AboutMeInDetail .img img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.AboutMeInDetail .img img:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
}

/* Information Section */
.AboutMeInDetail .infoAboutMe {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.AboutMeInDetail .infoAboutMe h1 {
    color: var(--global-color-1);
    font-family: var(--font-02);
    transition: color 0.3s ease;
}

.AboutMeInDetail .infoAboutMe h1:hover {
    color: var(--global-color-2); /* Alternate hover color */
}

.AboutMeInDetail .infoAboutMe .p-text {
    font-family: var(--font-02);
    transition: color 0.3s ease, transform 0.3s ease;
}

.AboutMeInDetail .infoAboutMe .p-text:hover {
    color: var(--global-color-2); /* Alternate hover color */
    transform: translateX(5px);
}

/* Subtitle */
.AboutMeInDetail .infoAboutMe h2 {
    font-family: var(--font-02);
    color: var(--global-color-1);
    transition: color 0.3s ease;
}

.AboutMeInDetail .infoAboutMe h2:hover {
    color: var(--global-color-2);
}

/* Icon Links Section */
.AboutMeInDetail .infoAboutMe .iconLink {
    display: flex;
    gap: 2rem;
}

.AboutMeInDetail .infoAboutMe .iconLink i {
    color: var(--global-color-1);
    transition: transform 0.3s ease, color 0.3s ease;
}

.AboutMeInDetail .infoAboutMe .iconLink i:hover {
    transform: scale(1.1);
    color: var(--global-color-2);
}

.AboutMeInDetail .infoAboutMe .iconLink i a {
    padding-left: 10px;
    text-decoration: none;
    color: black;
    font-family: var(--font-01);
    transition: color 0.4s ease, transform 0.3s ease;
}

.AboutMeInDetail .infoAboutMe .iconLink i a:hover {
    color: var(--global-color-1);
    transform: translateY(-3px);
}


/* -----------section three--------------- */

.aboutTeam-Info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 2%;
    text-align: center;
}

.aboutTeam-Info .teamText {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutTeam-Info .teamText .t-team {
    font-family: var(--font-02);
    font-weight: 400;
}

.aboutTeam-Info .teamText .t-heading {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-02);
    color: var(--global-color-1);
}

/* .aboutTeam-Info .teamText .t-lines {} */

.aboutTeam-Info .teamImgInfo {
    display: grid;
    grid-template-columns: repeat(4, minmax(100px, 300px));
    gap: 2rem;
    margin: auto;
    padding: 2rem;
}

.aboutTeam-Info .teamImgInfo .box {
    overflow: hidden;
    border-radius: 2%;
    box-shadow: 0 0 18px 2px #d1d1d1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    position: relative;

}



.aboutTeam-Info .teamImgInfo .box .img {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.aboutTeam-Info .teamImgInfo .box .img img {
    width: 100%;
    height: 100%;
    border-radius: 2%;
}

.aboutTeam-Info .teamImgInfo .box .t-name {
    overflow-y: hidden;
    margin-top: 2rem;
    letter-spacing: 2px;
    padding: .2rem 0;
}

.aboutTeam-Info .teamImgInfo .box .t-position {
    overflow-y: hidden;
    margin-top: .7rem;
    padding: .2rem 0;

}

.aboutTeam-Info .teamImgInfo .box.fourthBox {
    position: relative;
    color: #fff;
}

.aboutTeam-Info .teamImgInfo .box.fourthBox::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/discountBackGround.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: .7;
}

.aboutTeam-Info .teamImgInfo .box.fourthBox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--global-color-0);
    z-index: -1;
    opacity: .7;

}

.aboutTeam-Info .teamImgInfo .box.fourthBox .ak-disc {
    font-size: 1.6rem;
    font-family: var(--font-02);
    position: absolute;
    top: 6%;
    padding: 1rem;
}

.aboutTeam-Info .teamImgInfo .box.fourthBox .ak-sale {
    position: absolute;
    top: 40%;
    padding: 1rem;
}

.aboutTeam-Info .teamImgInfo .box.fourthBox .btn {
    position: absolute;
    bottom: 2rem;
    border: 1px solid #fff;
    margin: 0 5%;
    display: flex;
    border-radius: 5px;
}

.aboutTeam-Info .teamImgInfo .box.fourthBox .btn a {
    text-decoration: none;
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding: .5rem 1.5rem;
    transition: all .4s ease;

}

.aboutTeam-Info .teamImgInfo .box.fourthBox .btn a:hover {
    background-color: #fff;
    color: var(--global-color-1);
}
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
  }
  .whatsapp-icon {
    margin-top: 16px;
  }

  /* for mobile */
  @media screen and (max-width: 767px){
    .whatsapp-icon {
      margin-top: 10px;
    }
    .whatsapp_float {
      width: 40px;
      height: 40px;
      bottom: 20px;
      right: 10px;
      font-size: 22px;
    }
  }
  .phone_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px; /* Changed right to left */
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.phone-icon {
    margin-top: 16px;
}

/* for mobile */
@media screen and (max-width: 767px){
    .phone-icon {
        margin-top: 10px;
    }
    .phone_float {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 10px; /* Changed right to left */
        font-size: 22px;
    }
}
