@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/serviceBackGround12.jpg");
    z-index: -1;
    opacity: 1;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
}

.sectionFirst h1 {
    text-align: center;
    font-size: 5rem;
    font-family: var(--font-02);
    color: #e960b7;
    border: 2px solid transparent; /* Initial transparent border */
    -webkit-text-stroke: 1px #000; /* Add a black stroke around text */
    text-shadow: none; /* No shadow initially */
    box-shadow: none; /* No box-shadow initially */
    transition: all 0.3s ease; /* Smooth transition for all effects */
}

.sectionFirst h1:hover {
    color: #ff9900; /* Change color on hover */
    border: 2px solid #e960b7; /* Add a border with the original text color */
    -webkit-text-stroke: 1px #f5f1f5; /* Make the stroke thicker with hover color */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Add a shadow for glowing effect */
    box-shadow: 0 4px 15px rgba(233, 96, 183, 0.7); /* Add box shadow for depth */
    transform: scale(1.1); /* Slightly enlarge the text for emphasis */
}


/* aboutServices */

.aboutServices {
    padding: 5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aboutServices .ser-litText {
    font-size: 2rem;
    font-weight: 400;
    font-family: var(--font-02);
    text-align: center;
    color: var(--global-color-1);
}

.aboutServices .ser-text {
    text-align: center;
    margin-bottom: 2rem;
}

.aboutServices .ser-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    color: #fff;
}

.aboutServices .ser-box .box {
    position: relative;
    top: 0;
}

.aboutServices .ser-box .box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--global-color-1);
    z-index: 1;
    opacity: .1;
    transition: all .4s ease;
    border-radius: 2%;


}

.aboutServices .ser-box .box:hover:after {
    width: 0;
}

.aboutServices .ser-box .box .img {
    width: 100%;
    height: 100%;
    overflow-y: hidden;
}

.aboutServices .ser-box .box .img img {
    width: 100%;
    border-radius: 2%;
    height: 100%;

}

.aboutServices .ser-box .box .boxinfo {
    position: absolute;
    bottom: 5%;
    left: 3%;
    z-index: 2;

}

.aboutServices .ser-box .box .ser-name {
    padding-bottom: .8rem;
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-02);

}

.aboutServices .ser-box .box .ser-discription {
    font-family: var(--font-02);
}

/* -------DiscountSection------- */
.DiscountSection {
    padding: 7rem 5%;
    margin-bottom: 4rem;

}


/* --------img slider------- */

.imgslidertext {
    /* height: 100vh; */
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;

}

.imgslidertext .imgslider {
    width: 400px;
    box-shadow: 0 0 18px #1a1a1a;
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
    padding: 18rem 0;
    margin: 1rem;

}

.imgslidertext .imgslider .slide {
    width: 100%;
    height: 100%;
    position: absolute;
    height: 100%;
    z-index: -1;
    transition: all .5s ease;
    top: 0;
    left: 0;
}

.imgslidertext .imgslider .prev {
    position: absolute;
    left: 0%;
    top: 50%;
    margin-left: 1rem;
    color: wheat;
    transition: .4s;
    cursor: pointer;

}

.imgslidertext .imgslider .next {
    position: absolute;
    right: 0%;
    top: 50%;
    margin-right: 1rem;
    color: wheat;
    transition: .4s;
    cursor: pointer;

}

.imgslidertext .imgslider .prev:hover,
.imgslidertext .imgslider .next:hover {
    transform: scale(2);
    color: var(--global-color-1);
    transition: all 4 ease;

}

.imgslidertext .slideText {
    width: 60%;
    /* display: flex;
    flex-direction: column;
    gap: 1rem; */
    overflow-y: hidden;
    margin: 1rem;


}

.imgslidertext .slideText .st-heading {
    color: var(--global-color-0);
    font-size: 2.5rem;
    font-family: var(--font-02);
    font-weight: 0;
}

.imgslidertext .slideText .lit-text {}

.imgslidertext .slideText .lit-service {
    padding: 3rem 0 0;

}

.imgslidertext .slideText .lit-service .textinfo {
    padding: 1rem 0 0;
}

.imgslidertext .slideText .lit-service .textinfo .ti-head {
    font-family: var(--font-02);
    color: black;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}



/* before footer  */

.beforefooter {
    padding: 2rem 2%;

    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: 2rem;
    background-color: #1a1a1a;
    color: #fff;
}

.beforefooter .box {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.beforefooter .box .logo {
    color: var(--global-color-1);
    text-decoration: none;
    font-weight: 600;
    font-size: xx-large;
    font-family: var(--font-02);

    text-shadow: .5px .5px 3px var(--global-color-1);
    transition: .4s;
    width: fit-content;
}

.beforefooter .box .logo:hover {
    transform: scale(1.1);
}

.beforefooter .box .bf-text {
    text-decoration: none;
    /* font-weight: 600; */
    font-size: xx-large;
    font-family: var(--font-02);

}

.beforefooter .box a {
    text-decoration: none;
    color: white;
}


.beforefooter .box .subscribe {
    display: flex;
}

.beforefooter .box .subscribe input {
    width: 60%;
    height: 55px;
    padding: .5rem;

}

.beforefooter .box .subscribe .btn {
    border: none;
    box-sizing: border-box;
    background-color: none;
    background-color: var(--global-color-1);
    color: #fff;
    padding: .8rem 2rem;
    font-size: 20px;
    transition: all .4s ease;
}

.beforefooter .box .subscribe .btn:hover {
    background-color: var(--global-color-0);
}

.beforefooter .box .icons a {
    border: 1px solid var(--global-color-1);
    padding: .5rem;
    background-color: var(--global-color-1);
    transition: all .5s ease;
}

.beforefooter .box .icons a:hover {
    background-color: var(--global-color-0);
}

.beforefooter .box .address {
    padding-right: 1rem;
}







/* footer */
footer {
    background-color: #2c2c2c; /* Dark background for footer */
    color: #fff; /* White text color */
    text-align: center;
    padding: 1rem 0; /* Padding for vertical spacing */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap; /* Responsive: stacks items on smaller screens */
    gap: 1rem;
}

footer .fbox {
    font-size: 1rem;
}

footer .fbox .by {
    color: #d2a679; /* Gold-like color for link */
    text-decoration: none; /* Remove underline */
    font-weight: bold; /* Bold link text */
    transition: all 0.3s ease; /* Smooth hover effect */
}

footer .fbox .by:hover {
    color: #f1c40f; /* Brighter gold on hover */
    text-decoration: underline; /* Underline on hover */
}

footer .fbox a {
    
    transition: all 0.3s ease;
}
.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;
    }
}
