@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    text-transform: capitalize;
    font-family: "Open Sans", sans-serif;
    /* cursor: none; */
}

:root {
    --white-clr: #fff;
    --navy-clr: #000033;
    --text-clr: #777;
    --Blue:#C6E7FF;
}

html, body {
    width: 100%;
    height: 100%;
   
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

section {
    padding: 4rem 10rem;
}

.btn {
    color: var(--navy-clr);
    background: var(--white-clr);
    font-size:2.5rem;
    padding: .5rem 2.5rem;
    border-radius: 2rem;
    border: 2px solid var(--white-clr);
    transition: all .2s ease-out;
}

/* .btn:hover {
    color: var(--navy-clr);
    background: transparent;
} */

.label {
    font-size: 1.4rem;
    color: var(--text-clr);
    font-weight: 400;
}

.heading {
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: -2px;
    white-space: nowrap;
}

body {
    background: #f8f8fa;
}

/* ------------------------- home section starts hare ---------------- */

.home {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(rgb(0 0 0 / 10%), rgb(0 0 0 / 10%)), url(../images/garage-door.webp);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 16 / 9;
    background-position: center;
    border: 5px solid #fff;
    border-radius: 2rem;
    color: #fff;
    position: relative;
}

.home header {
    padding: 0 4rem;
    position: absolute;
    right: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.home header i {
    font-size: 1.6rem;
    cursor: pointer;
    display: none;
}

.home header h4 {
    font-size: 2rem;
    margin-top: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.home header nav {
    display: flex;
    align-items: center;
    gap: 6rem;
    padding: .8rem 5rem;
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(5px);
    border-top: 2px solid rgb(255 255 255 / 20%);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
    border-radius: 2rem;
}

.home header nav a {
    font-size:1.8rem;
    text-transform: capitalize;
    color: #000033;
    transition: color .2s ease;
    text-decoration: none;
    padding-inline: 1rem !important;
    
}
.home .business-name{
    color: var(--navy-clr);
}

.home header nav a:is(.active, :hover) {
    color: #fff;
}

.navbar {
    transition: background-color 0.3s ease;
  }
  
  /* When the page is scrolled, change the background */

.home .main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    
  
}

.home .main >div{
    
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(5px);
    border-top: 2px solid rgb(255 255 255 / 20%);
    box-shadow: 0 2px 15px rgb(0 0 0 / 20%);
    border-radius: 2rem;
    padding: 1% 1%;
}
.home .main h1 {
    font-size: 9rem;
    text-transform: none;
    font-weight: 500;
    max-width: 120rem;
    letter-spacing: -3px;
    
}

.home .main article {
    font-size: 1.6rem;
    padding-top: 1%;
    padding-bottom: 1%;
    max-width: 120rem;
    line-height: 2;
    
}


/* ------------------------- home section ends hare ---------------- */

/* form  */


.input {
    border-radius: 5px;
    outline: 2px solid var(--navy-clr);
    border: 0;
    width:18vw;
    background-color: #e2e2e2;
    outline-offset: 3px;
    padding: 20px 1rem;
    margin: 5px 1rem ;
    font-size: 1.2rem;
    transition: 0.25s;
  }
  
  .input:focus {
    outline-offset: 5px;
    background-color: #fff
  }

 iframe{
    border-radius: 30px;
    width:40vw;
 }

/* end of form */

/* ------------------------- testimonails section starts hare ---------------- */

.s1 {
    width: 100%;
    height: max(60vh, 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.s1 > p {
    font-size: clamp(2rem, 7vw, 12rem);
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--navy-clr);
    margin: 0;
}
.reviews {
    position: relative; /* Required for proper absolute positioning of .rtitle */
    padding-top: 2rem; /* Creates space for the pinned element */
}
.review-wrp {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    row-gap: 5rem;
    top: 20%;
}

.review {
    width: 100%;
    max-width: 400px;
    height: 400px;
    position: relative; /* Required for proper absolute positioning of .rtitle */
    padding-top: 20rem; /* Creates space for the pinned element */
    box-shadow: 10px 0px 40px 0px rgba(0, 0, 0, 0.2);
    border-radius: 2rem;
    padding: 3rem;
    box-sizing: border-box;
    z-index: 2;
    background: var(--Blue);
    color: #000;
    transition: transform 0.3s ease-in-out;
}

.review:hover {
    transform: scale(1.05);
}

.review .rhead {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review .rhead .title {
    font-size: 3rem;
    margin: 0;
}
.review .rhead .rating {
    color: gold;
}


/* -------------------------  testimonails section ends hare ---------------- */



/* form  */

/* end of form  */

/* custom cursor */
/*   
.cursor{
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000033;
    z-index: 20000;
}

.follower{
      position: fixed;
      top: 0;
      left: 0;
      width: 100px;
      height: 100px;
     background-color: var(--navy-clr);
     opacity: 0.8;
     border-radius: 50%;
 } */

 .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #000033;
    z-index: 20000;
    pointer-events: none; /* Ensure the cursor doesn't block interactions */
}

.follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background-color: var(--navy-clr);
    opacity: 0.8;
    border-radius: 50%;
    pointer-events: none; /* Prevent it from interfering with clicks */
}


/* end of custom cursor */



/* map section style  */


.top-section{
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    z-index: 1;
}
.map-container {
    position: relative;  /* Make the container the reference for positioning the iframe */
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    background-image: url("../images/garge-door-cta.webp");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


/* end of map section  */



/* ---------------------------- achivment section starts here ---------------  */

.achivment {
    width: 100%;
    display: flex;
    gap: 2rem;
    transform: translate(0, -50%);
}

.achivment .box {
    padding: 2rem;
    background: var(--Blue);
    box-shadow: 0 10px 25px rgb(0 0 0 / 10%);
    text-align: center;
    flex-grow: 1;
    border-radius: 2rem;
}
.achivment .box h4{
    font-size: 3rem;
}

.achivment .box p {
    font-size: 1.6rem;
    color: var(--text-clr);
}

/* ---------------------------- achivment section ends here ---------------  */

/* ----------------------- best location section starts hare ----------------  */

.responsive-text {
    display: flex;
    justify-content: space-between;
    gap: 4rem;

}

.responsive-text .text-box {
    max-width: 60rem;
    margin-top: auto;
}

.responsive-text .text-box p {
    font-size: 1.6rem;
    color: var(--text-clr);
    line-height: 1.8;
}

.about-us .images {
    margin-top: 6rem;
    display: flex;
  gap: 2rem; /* Space between boxes */
  justify-content: space-between; /* Equal space among boxes */
  flex-wrap: nowrap; /* Ensure all boxes stay on the same line */

  flex-wrap: wrap; /* Allows items to wrap when needed */
  

}

.about-us .images .box {
   
    flex: 1 1 calc(33.33% - 2rem); /* Takes 1/3 of the parent width minus gap */
    max-width: calc(33.33% - 2rem); /* Ensures no box exceeds 1/3 width */
    height: 35rem; /* Fixed height */
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

.about-us .images .box img {
    width: 100%; /* Makes the image fill the box horizontally */
    height: 100%; /* Makes the image fill the box vertically */
    object-fit: cover; /* Ensures the image covers the box without distortion */
    position: absolute; /* Position the image absolutely within the box */
    top: 0;
    left: 0;
   
}

.about-us .images .box ul {
    position: relative; /* Keeps text on top of the image */
    z-index: 1; /* Ensures the text is above the image */
    margin: 0;
    bottom: 0;
    top: 85%;
    list-style: none;
    /* padding: 1rem; */
    color: #fff; /* White text for readability */
}

.about-us .images .box ul li {
    font-size: 2.6rem;
  
    color: var(--navy-clr);
}



/* ----------------------- best location section ends hare ----------------  */

/* ----------------------- booking section starts hare ----------------  */

.booking {
    width: 100%;
    display: flex;
    gap: 4rem;
    margin: 4rem 0;
}

.booking .image, .booking .process {
    width: 100%;
}

.booking .image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 20px rgb(0 0 0 / 30%);
}

.booking .image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}




/* image Comparison */


.image-comparison {
    /* max-width: 900px; */
    margin: 0px auto;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .image-comparison img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
  }
  
  .image-comparison .images-container {
    position: relative;
    display: flex;
  }
  
  .image-comparison .images-container .before-image {
    position: absolute;
    top: 0;
    width: 50%;
  }
  
  .image-comparison .slider {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  
  .image-comparison .slider-line {
    position: absolute;
    height: 100%;
    width: 4px;
    background: #fff;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .image-comparison .slider-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    transform: translate(-50%, -50%) rotateZ(90deg);
  }


/* end of image Comparison */




.booking .process .box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-top: 3rem;
}

.booking .process .box span {
    font-size: 2rem;
    width: 55px;
    height: 50px;
    background: var(--white-clr);
    display: grid;
    place-items: center;
    border-radius: 1rem;
}

.booking .process .box .text {
    width: 100%;
}

.booking .process .box .text h4 {
    font-size: 2.5rem;
    font-weight: 600;
}

.booking .process .box .text p {
    margin-top: .5rem;
    font-size: 1.4rem;
    color: var(--text-clr);
}

.booking .process .scale {
    background: var(--white-clr);
    border-radius: 1.5rem;
    scale: 1.01;
    box-shadow: 0 8px 20px rgb(0 0 0 / 2%);
}

.booking .process .scale span {
    background: #f2f7ff;
}


/* ------------------------- OFFERS ------------------- */


.offers-card{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px , 1fr));
    gap: 2rem;
    margin: 4rem 5vw;
    padding: 0;
    list-style-type: none;
}

.offer{
    position: relative;
    display: block;
    height: 100%;
    border-radius: calc(40 * 1px );
    text-decoration: none;
    overflow: hidden;

}

.offer_image{
  width: 100%;
  height: auto;
}

.offer_overlay{
   position: absolute;
   bottom: 0;
   left: 0;
   right: 0;
   z-index: 1;
   border-radius: calc(40 * 1px );
   transform: translateY(100%);
   transition: 0.2s ease-in-out;
}

.offer_header{
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(40 * 1px) 0 0 0;
    background-color: var(--Blue);
    transform: translateY(-100%);
    transition: 0.2s ease-in-out;


}

.offer_arc{
    width: 80px;
    height: 80px;
    position: absolute;
    right: 0;
    z-index: 1;
}

.offer:hover .offer_header{
   /* transform:translateY(0) ; */
}

.offer_thumb{
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
}
.offer_title{
    font-size: 4em;
    margin: 0 0 0.3em;
    color: #333;
}
.offer_subTitle{
  font-size: 2em;
  color:#777 ;
}


.offer_arc path{
    fill: var(--Blue);
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 z");
}




/* ----------------------end of the offers -------------------- */


/* infinte scroller  */
  
  .marquee {
    overflow: hidden;
    position: relative;
   
  
  }
  
  .marquee-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: scroll 30s linear infinite;
   
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .marquee-content img {
    flex-shrink: 0;
  }


  
  


/* end of infinte scroller */
/* ----------------------- booking section ends hare ----------------  */

/* packages section starts here  */

/* packages section ends here  */

/* blogs section starts here  */

/* blogs section ends here  */

/* marquee contact us  */
/* 
.marquee{
    position: relative;
    background: var(--navy-clr);
    color: var(--white-clr);
    padding: 70px 0;
    font-weight: 600;
    font-size: 40px;
    text-transform: uppercase;
    overflow: hidden;
} */
/* 
.marquee__inner{
    display: flex;
    width: fit-content;
    float: auto;
    flex-direction: row;
    will-change: transform; 
}
.marquee__part{
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0 4px;
}
.info-item {
    display: inline-flex;
    gap: 20px;
    align-items: center;
  }
  .info-item h5 {
    margin: 0;
    font-size: 3vw;
  }
  .info-item span {
    margin: 0;
    font-size: 4vw;
  }
.star{
    width: 60px !important;
    height: 60px !important;
    margin: 0 1em;
    transform: rotate(90deg);
    transition: all 1s cubic-bezier(0.075 , 0.82 , 0.165, 1);
}
.star:active{
    transform: rotate(-90deg);
} */
/* end of marquee contact us  */


/* email */


.user-select-none {
    color: #000;
    opacity: 0.9;
   text-decoration: none; 
}


/* end of email */


/* sub content  */
.sub-wrapper{
  position: relative;
  width: 100%;
  height: auto;
  padding: 0 0px;
  z-index: 1;
  background-color: var(--Blue);
}
.content{
    width: 100%;
    height: auto;
}

.space{
    width: 100%;
    height: 0vh;
    background-color: var(--Blue);
}
.sub{
    display: flex;
}
.sub__left{
  position: relative;
  width: 54%;
  z-index: 2;
}
.sub__right{
    width: 46%;
    height: auto;

}

.sub__text{
    margin: auto;
    width: 80%;
}

.sub_info{
    height: 100vh;
    width: 40vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sub__num{
    display: block;
    line-height: 0.9;
    text-align:left;
    font-size: 3vw;
    transform: skew(-20deg);
    padding-bottom: 5px;
    color:var(--text-clr);
}
.sub_title{
    text-align: left;
    font-size: 3.5vw;
    text-transform: uppercase;
    color: var(--navy-clr);
    width: 200% !important;
}
.sub_title .stroke{
    display: block;
    color: transparent;
    -webkit-text-stroke: 1px var(--navy-clr);
}
.sub_info article{
  font-size: 16px !important;
  line-height: 1.1;
  margin-top: 10px;
}


.sub__right_b1{
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: sticky;
   width: 100%;
   height: 100vh;
   top: 0;
}
.sub_photo{
     width: 40vw;
     height: 30vw;
     position: relative;
}
.sub__photo-item{
    position: absolute;
    width: 100%;
    height: 100%;
    cursor: pointer;
    border-radius: 80px;
    overflow: hidden;
}
.sub__photo-item img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* end of sub content  */

/* swiper  */


/* end of swiper */
/* -------------- footer section starts hare --------------  */

footer {
    width: 100%;
   
   
    padding: 4rem 10rem;
    padding-top: 10rem;
    background: var(--Blue);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
}


footer p {
   color: var(--navy-clr);
}
  

#item-footer{
    display: inline-block;
    background-color: var(--navy-clr);
    margin: 0;
    padding: 3px 3px;
    border-radius: 1em;
    color: white;
  }
  
  
  #item-footer a{
    text-decoration: none;
    font-size: 1.5rem !important;
    padding: 10px 10px;
    margin: 2px 2px;
    color: var(--white-clr);
  }
  

/* -------------- footer section ends hare --------------  */


/* swiper */
.swiper-wrapper{
    background-color: var(--Blue);
}
.swiper-wrapper .sub__info-b1{
  padding: 5%;
}
.swiper img{
    width: 100% !important;
    height: 300px !important;
}

/* end of swiper */


/* services page style */



/* end of services page style */


/* ----------------------- media query section starts hare --------------------- */

@media (max-width: 1065px) {
   .heading {
    white-space: wrap;
   }
}

@media (max-width: 957px) {
    html {
        font-size: 52%;
    }

    .booking {
        flex-direction: column;
    }
}

@media (max-width: 795px) {
    .home .main h1 {
        font-size: 6rem;
    }
}

@media (max-width: 706px) {

    section {
        padding: 4rem;
    }

   

    .achivment {
        transform: translate(0, 0);
        flex-wrap: wrap;
    }

    .responsive-text {
        flex-direction: column;
        gap: 2rem;
    }

    footer {
        padding: 4rem;
    }

    
       .about-us  .images .box {
            flex: 1 1 100%; /* Boxes take full width on small screens */
            max-width: 100%; /* Ensures no box exceeds full width */
          }
      
      

}

@media (max-width: 546px) {
    .heading {
        font-size: 4rem;
    }

    .home .main h1 {
        font-size: 3.3rem;
        letter-spacing: 0;
    }

    .s1 {
        width: 100%;
        height: max(30vh, 300px);
        
    }



    .sub {
     
        display: none !important;
    }


    .input {
        
        width:80vw;
      
      }
      
     
    
     iframe{
        border-radius: 30px;
        width:80vw;
     }
    
     .s1 {
        height: max(20vh, 200px);
      
    }
    
 
  
}

/* ----------------------- media query section ends hare --------------------- */

/* -------------------------- gsap animation css starts here ------------------- */

.slide-up {
    opacity: 0;
    transform: translateY(100px);
    transition: opacity .4s ease-out, transform .4s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity .2s ease-out, transform .4s ease-out;
}

.zoom-in {
    opacity: 0;
    scale: .8;
    transition: opacity .2s ease-out, scale .4s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity .4s ease-out;
}

*:has(> .zoom-out, > .slide-right) {
    overflow: hidden;
}

.text-reveal-animation {
    overflow: hidden;
    display: inline-block;
    width: 100%;
    white-space: nowrap;
    word-break: break-all;
}

@media (max-width: 1207px) {
    .text-reveal-animation {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }
}



     form.CUS input.subject { display: none; }