
.desktop-bg {
display: block;
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}

.mobile-bg {
display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
.desktop-bg {
display: none;
}
.mobile-bg {
display: block;
position: absolute;
width: 100%;
height: 100%;
background-size: cover;
background-position: center;
}
}


.icon-box:hover {
    color: orange; /* Change icon color */
    transition: color 0.3s ease; /* Smooth transition */
}
.icon-box:hover {
color: orange; /* Change icon color */
transition: color 0.3s ease; /* Smooth transition */
}

/* When hovering on inner-box, icon should jump */
.inner-box:hover .icon-box {
animation: jump 0.5s ease-out; /* Trigger jump animation */
}

/* Jump Animation */
@keyframes jump {
0% {
transform: translateY(0);
}
30% {
transform: translateY(-15px); /* Jump up */
}
50% {
transform: translateY(-10px); /* Small bounce */
}
100% {
transform: translateY(0); /* Back to position */
}
}


/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-20px);
    }
}

/* Apply bounce animation to icons */
.icon-box.bounce {
    animation: bounce 1.5s ease-out;
}




.image-box33 img {
transition: all 0.3s ease-in-out; /* Smooth transition */
border: 2px solid transparent; /* Invisible border initially */
}

/* Hover effect */
.image-box33  img:hover {
border: 2px solid orange; /* Orange border on hover */
}


          

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

nav a:hover {
animation: fadeUp 0.3s ease forwards;
}




.class{
color: var(--thm-base);
padding-left: 7px;
}

@media(max-width:768px){
.ourprocessh{
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
text-transform: uppercase;
color: var(--thm-black);
font-weight: 400;
margin-bottom: 0px;
}
}
@media(max-width:768px){
#ourprocesssec{
margin-bottom: 40px;
margin-top: 20px;
}
.process__item {
    user-select: none;
    text-align: center;
    position: relative;
    padding: 10px 10px;
    transition: 0.4s ease-in-out;
    }
}
@media(min-width:992px){
#ourprocesssec{
margin-top: 30px;
}
.process__item {
    user-select: none;
    text-align: center;
    position: relative;
    padding: 15px 35px;
    transition: 0.4s ease-in-out;
    }
.ourprocessh{
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
top: 10px;
text-transform: uppercase;
color: var(--thm-black);
font-weight: 400;
margin-bottom: 0px;
}
}
.process {
width: 100%;
padding: 0 15px;
text-align: center;
}



.process__item:hover {
background: #f2f2f2; /* darken(#fff, 5%) equivalent */
}

.process__item:hover .process__number {
transform: translateY(5px);
color: orange;
}

.process__number {
font-size: 90px;
-webkit-text-stroke: 1px orange;
display: block;
color: transparent;
font-family: "Roboto Condensed";
font-weight: 700;
transition: 0.4s ease-in-out;
}


@media(max-width:768px){
.process__title {
display: block;
position: relative;
top: -15px;
font-family: "Roboto Condensed";
font-weight: 550;
letter-spacing: 1.5px;
font-size: 30px;
color: orange;
text-transform: uppercase;
margin-top: 20px;
}

.process__subtitle {
    display: block;
    font-family: "Josefin Slab";
    font-size: 20px;
    color: #333; /* darken(#fff, 45%) equivalent */
    margin-top: 0px;
    font-weight: 600;
    line-height: 1.5;
    }
}

@media(min-width:992px){
    
.process__subtitle {
    display: block;
    font-family: "Josefin Slab";
    font-size: 20px;
    color: #333; /* darken(#fff, 45%) equivalent */
    margin-top: 30px;
    font-weight: 600;
    line-height: 1.5;
    }
    .process__title {
        display: block;
        font-family: "Roboto Condensed";
        font-weight: 700;
        letter-spacing: 1.5px;
        font-size: 35px;
        color: orange;
        text-transform: uppercase;
        margin-top: 30px;
        }
}

@media (min-width: 768px) {
.process {
display: inline-block;
}

.process__item {
width: 49%;
display: inline-block;
}
}

@media (min-width: 1200px) {
.process {
display: flex;
flex-direction: row;
justify-content: space-between;
}

.process__item {
width: 100%;
}

.process__item:not(:last-of-type)::after {
content: "";
width: 1px;
height: 75%;
background: #737373; /* darken(#fff, 45%) equivalent */
position: absolute;
right: 0;
top: 50%;
opacity: 0.2;
transform: translateY(-50%);
}
}



#testimonilaa {
    background-color: white;
    padding: 0px;
    margin-top: 20px;
    margin-bottom: 50px;
}
@media(max-width:768px){
    #testimonilaa {
    background-color: white;
    padding: 0px;
    margin-top: -20px;
    margin-bottom: -30px;
}
}


.swiper-container {
    width: 100%;
    height: 295px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .swiper-container {
        width: 100%;
        max-width: 1200px;
        height: 293px;
        margin-left: 0px;
        overflow: hidden;
    }
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-left: 0px;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transition: transform 0.5s ease; /* Smooth transition for zoom/stretch */
}

@media (max-width: 768px) {
    .swiper-slide img {
        margin-left: 30px;
        margin-top: -10px;
        height: auto;
        width: 100%;
    }
}
.swiper-slide img.stretch {
transform: scale(1.2); /* Stretch effect */
}

.swiper-slide img.normal {
transform: scale(1); /* Return to normal size */
}



                        /* Keyframes for sliding in from the left */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%); /* Start off-screen to the left */
        opacity: 0; /* Start transparent */
    }
    100% {
        transform: translateX(0); /* End at original position */
        opacity: 1; /* Fully visible */
    }
}

/* Initially hide the logo */
#logo-animation {
    opacity: 0;
    transform: translateX(-100%); /* Position it off-screen initially */
    animation: slideInFromLeft 1.5s ease-out forwards; /* Animation */
}

                


.email-link {
              text-decoration: none;
              color: inherit; 
          }
          
      
          .email-link:hover {
              text-decoration: underline;
              transition: 0.3s;
          }
@media(min-width:992px){
.contact-container {
max-width: 600px;
background-color: whitesmoke;
margin: auto;
padding-left: 20px;
padding-right: 10px;
height: 590px;
text-align: center;
font-family: Arial, sans-serif;
}
}

.contact-item {
display: flex;
align-items: center;
gap: 15px;
margin: 20px 0;
}

.contact-item i {
font-size: 24px;
background: orange;
color: white;
margin-top: -78px;
padding: 10px;
border-radius: 50%;
}

.contact-item div {
text-align: left;
}

#h3 {
margin: 5px 0;
font-size: 25px;
font-family: "Poppins", Sans-serif;;
}
#p{
font-size: 18px;
color: #333;
}
@media(max-width:768px){
#p{
font-size: 15px;
color: #333;
}
#h3{
font-size: 20px;
}
#mapadd{
margin-top: -100px;
}
.contact-container {
max-width: 600px;
background-color: whitesmoke;
margin: auto;
padding-left: 20px;
padding-right: 10px;
text-align: center;
font-family: Arial, sans-serif;
}
}

@media(max-width:768px){
    .contactheading{
    font-family: "Poppins", Sans-serif;
    font-size: 23px;
    font-weight: 550;
    left: 10px;
    top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: orange;
}
#contactformpadd{
    padding: 0%;
}
.contactpara{
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-left: 10px;
    line-height: 1.3em;
    color: #000000;
    }

  }

@media(min-width:992px){
    .contactheading{
    font-family: "Poppins", Sans-serif;
    font-size: 30px;
    font-weight: 500;
    left: 10px;
    top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: orange;
}
.contactpara{
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    margin-left: 20px;
    font-weight: 500;
    line-height: 1.3em;
    color: #000000;
    }
}



    .banner {
   position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #f59e0b, #4b5563);
    padding: 15px 30px;
    border-radius: 10px;
    transform: translatey(0%);
    width: 100%;
    max-width: 800px;
    margin: auto;
}
#bannerinner {
    position: relative;
    
    left: 0%;
    top: 30px;
    padding: 0%;
    z-index: 1000;
}

.banner-text {
    font-size: 20px;
    font-weight: bold;
    color: white;
}

.highlight {
    color: #fcd34d; /* Light golden color for emphasis */
}

.contact-btn {
    background-color: white;
    color: #374151;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background-color: #e5e7eb;
}


.service-section {
  background-color: #f8f9fa; /* Light background */
  padding: 30px 15px; /* Reduce padding */
  border-radius: 10px;
  margin-top: 20px; /* Adjust spacing above section */
}

#all {
  margin-top: -70px; /* Reduce spacing between rows */
}

.responsive-heading {
font-size: 55px;
line-height: 0.9em;
text-transform: uppercase;
color: var(--thm-black);
font-weight: 400;
margin-bottom: 0px;
display: flex;
align-items: center;
justify-content: center;
top: -20px;

}
#howtitle{
font-size: 55px;
line-height: 0.9em;
text-transform: uppercase;
color: var(--thm-black);
font-weight: 400;
margin-bottom: 0px;
display: flex;
align-items: center;
justify-content: center;
top: 0px;
}
@media(max-width:768px){
  #howtitle{
      font-size: 36px;
      top: -5px;
  }
}   


.animated-image {
  width: 100%;
  max-width: 400px; /* Adjust max width */
  transition: transform 0.5s ease;
  margin-left: auto;
  margin-top: 5px;
  margin-right: auto; /* Center image */
  display: block;
}

.animated-image:hover {
  
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.3);


  transition: 0.7s;
}

.text-content {
  padding: 10px 10px; /* Add slight padding for readability */
}

.intro-text,
.highlight-text {
  font-size: 2rem; /* Adjust text size for better readability */
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px; /* Reduce space below paragraphs */
}
@media(max-width:768px){
  .intro-text,
.highlight-text {
  font-size: 2rem; /* Adjust text size for better readability */
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  margin-top: 0px;
}
}


.highlight {
  color: var(--thm-base);
}

@media (max-width: 768px) {
  .responsive-heading {
    font-size: 36px; /* Smaller heading for mobile */
    top: -30px;
    margin-bottom: 25px;
  }


  .animated-image {
    max-width: 300px; /* Reduce image size on smaller screens */
  }

  .text-content {
    padding: 0px;
    margin-bottom: 25px;
  }
}


@media(min-width:992px){
    #perfect{
    top: 5px;
    
    }
    #titlelg{
        margin-top: 40px;}
        #weshapeservice{
            position: relative;
        display: block;
        top: 30px;
        font-size: 55px;
        line-height: 0.9em;
        text-transform: uppercase;
        color: var(--thm-black);
        font-weight: 400;
        margin-bottom: 0px;
        }
    }
    @media(max-width:768px){
    #perfect {
    margin-top: -100px;
    margin-bottom: 90px;
    
    }
    }
    

    @media(min-width:992px){
        .how-we-do-section{
            margin-top: 32px;
        }
    }
    #flipp{
        color:black;
        font-weight: 600;
    }
    .how-we-do-title h3 {
        font-size: 2.4rem;
        top: 30px;
        font-weight: 410;
        text-transform: uppercase;
    }

    .steps-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 1100px; /* Keeps items aligned properly */
        margin: 0 auto;
    }

    .flip-card {
        width: calc(25% - 20px); /* 4 items per row */
        height: 250px;
        background-color: transparent;
        perspective: 1000px; /* 3D Perspective */
        opacity: 0; /* Initially invisible */
        animation: fadeIn 1s forwards; /* Apply animation */
    }

    
    /* Mobile: 1 item per row */
    @media (max-width: 768px) {
        .flip-card {
            width: 90%; /* 1 per row */
        }
    }

    /* Fade-in animation */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }

    .flip-card-inner {
        width: 100%;
        height: 100%;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 0.6s;
    }

    .flip-card:hover .flip-card-inner {
        transform: rotateY(180deg);
    }

    /* Front & Back Faces */
    .flip-card-front, .flip-card-back {
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        backface-visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        padding: 20px;
    }

    /* Front Face */
    .flip-card-front {
        background: white;
        color: white;
        border: 3px solid;
        color: orange;

    }

    .flip-card-front img {
        width: 60px;
        margin-top: 30px;
    }

    /* Back Face */
    .flip-card-back {
        background: #222;
        color: white;
        transform: rotateY(180deg);
        text-align: center;
    }

    .flip-card-back h3 {
        color:orange;
    }

    
    @media(max-width:768px){
      #skills{
          top: -80px;
      }
    }
    #servicecontent{
      display: block;
    }
      #lasttab{
          text-transform: uppercase;
      }
      @media(max-width:768px){
          #lasttab{
          text-transform: uppercase;
          font-size: 25px;
          }
      }
      #tab{
          font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
      }
     @media(min-width:992px){
      #skills{
          top: 6px;
      }
     }
  
