*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    line-height: 1.6;
}

html body{
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
img{
    max-width: 100%;
    height: auto;
}

.section-container{
    width: 100vw;
   height: 100vh;
}
header{
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 20px;
    margin: 0px;
   
}
header img{
    width: 160px;
    height: 150px;
    margin-top: 150px;
    margin-left: 20px;
    z-index: 4;
    display: none;
    border-radius: 20%;
}
header img.showImage{
    transform: scaleX(0.9);
    transition: all 0.1s ease-in;  
}
nav{
    background-color: #fff;
    width: fit-content;
    /* border: 2px solid #000; */
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 30px;
    z-index: 3;
    position: fixed;
    right: 12%;
}

nav a{
    padding: 14px;
    text-decoration: none;
    font-size: 15px;
    cursor: pointer;
    color: #000;
    font-weight: bold;

}
nav a:hover{
    color: darkgoldenrod;
    transition: all 0.8s ease;
}
nav button{
    background-color: darkgoldenrod;
    color: white;
    padding: 15px 0px;
    border-radius: 50px;
    border: 2px solid darkgoldenrod;
    
}
nav button a:hover{
    background-color: #fff;
    color: darkgoldenrod;
    padding: 15px;
    border-radius: 50px;

}
/* hero */
.hero{
    position: relative;
    height: 130vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    background: grayscale(100%) brightness(0.2);
    width: 100vw;
    overflow: hidden;
    position: relative;
    top: -150px;
}
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image: url(../images/heroImage.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    transform: translateX(100%);
    transition: transform 1.8s ease;
    z-index: -1;
    overflow-x: hidden;
    width: 100%;
    height: 150vh;
}
.hero.show-bg::before{
    transform: translateX(0);
    overflow: hidden;
}
.hero-content{
    position: relative;
    left: -90px;
    width: 1000px;
    text-align: start; 
    transform: translateX(-150%);
    top: 80px;
}
.hero-content::before{
    content: "";
    position: absolute;
    width: 110%;
    height: 200vh;
    background-color: rgba(236, 233, 233, 0.4);
    top: -380px;
    left: -40px;
    z-index: -2;
}
.hero-content h1{
    font-size: 2vw;
    animation: slideText 1s ease;
    min-height: 100px;
    margin-bottom: -20px;
}

.hero-content.show-text {
    animation: textMove 1.5s forwards;
}

@keyframes textMove {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content p{
    font-size: 25px;
    text-align: start;
    
}
.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: darkgoldenrod;
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero-btn:hover{
    background: #FFF;
    color: darkgoldenrod;
    transition: 1.5s ease;

}

/* about */

.about-section{
    padding: 10px;
    border-radius: 10px;
    margin: 20px;
    /* height:fit-content; */
    margin-bottom: 30px;
    position: relative;
    top: -150px;
    background-color: #000;
    width: 100%;
    height: 100vh;
    width: 100vw;
    
    
}
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 3000px;   
    margin: 0 auto;    
    height: fit-content;
    flex-wrap: wrap;
    color: #fff;
    margin-top: 20px;
    
}
.aboutText {
    flex: 50%; 
}
.aboutText p {
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}

.about-image {
    flex: 40%;         
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 400px;  
    border-radius: 12px;
    display: block;
}

/* counter */
.counter-container{
    display: flex;
    justify-content: space-between;
    padding: 40px 10px;
    background: #f9f9f9;
    height: fit-content;
    margin-top: -130px;
    width: 100vw;
}
.counter-box{
    /* flex: 1 1 300px;  */
    position: relative;
    width: 220px;
    margin-left: 20px;
}
.counter-box::before{
    content: "";
    background-color: darkgoldenrod;
    width: 5px;
    height: 300px;
    position: absolute;
    left: -20px;
    top: -0px;
}
.counter-box h2{
    font-size: 100px;
    color: #ddd5d5;
    margin-top: -18px;
    text-align: start;
}
.counter-box h3{
    padding: 10px 0;
    margin-top: -20px;
}
.counter-box p{
    color: gray;
}

.footer-container{
    width: 100vw;
    background-color: darkgoldenrod;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 7%;
    gap: 60px;
    height: 100%;
    flex-wrap: wrap;
    
}

.footer-box{
    flex: 1 1 200px;   
    width: 200px;
    height: 300px;
    color: white;
}
.footer-image{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    gap: 16px;
   
}
.footer-image img{
    width: 100%;
    background-color: #fff;
    border-radius: 50px;


}
.footer-image h2{
    display: inline;
    font-size: 18px;
    color: #000;
}
.footer-box h4{
    font-size: 15px;
    margin-top: 20px;
    color: #000;
}
.footer-box h3{
    position: relative;
    color: #000;
    font-size: 22px;
    cursor: pointer;
}
.line{
    display: none;
    margin-left: 20px;
    margin-bottom: 10px;
    
}
.footer-box:hover .line{
    width: 80px;
    height: 4px;
    background: #ffff;
    display: block;
    border-radius:15px;
}
.footer-box p{
    font-size: 15px;
    padding: 10px;
    cursor: pointer;
}
.icons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1.5rem;
    margin-left: -20px;
    margin-top: 20px;
}
.icons i{
    color: #fff;
    font-size: 25px;
    transition: transform 0.3s ease, color 0.3s ease;

}
.icons i:hover{
    transform: scale(1.3);
}
.fa-facebook-f:hover{
    color: #006eff;
}
.fa-instagram:hover{
    color:#db0b51;
}
.fa-twitter:hover{
    color: #0ca2ff;
}
.fa-youtube:hover{
    color: red;
}
.fa-linkedin-in:hover{
    color: #005f93;
}
.footer-links a{
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #fff;
    position: relative;
}
.important-links a{
    text-decoration: none;
    color: #fff;
}
.contact-footer{
    position: relative;
    left: -80px;
}


/* contact page */
.contact-section{
    padding: 80px;
    
}
.contact-content{
     max-width: 800px;
     margin-top: 80px;
     margin-bottom: 40px;
    
}
.contact-text h1{
    font-size: 37px;
    width: 100%;
}
.contact-text h1 span{
    color: darkgoldenrod;
    font-weight: bolder;
}
.contact-box{
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-top: 20px;
    margin-bottom: 20px;
}
.text-box h5, .text-icons h5{
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: darkgoldenrod;
}
.text-icons{
    position: relative;
    left: -45px;
}
.text-icons a{
    font-size: 18px;
    padding: 10px;
    background-color: darkgoldenrod;
    border-radius: 100%;
    margin: 10px;
    color: #fff;
}

.contact-container{
    max-width: 800px;
    padding: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(129, 184, 227, 0.15) 0px 2px 6px 2px;
    
}
.contact-container h1{
    text-align: center;
    font-size: 40px;
    margin-bottom: 0px;
}
.subtitle{
    text-align:center;
    color: #777;
    margin-bottom: 10px;
}
.contact-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: fit-content;
}
.form-box{
    display: flex;
    width: 100%;
}
.two-cols{
    gap: 20px;
}
.two-cols inputs{
    width: 50%;
}
.contact-form input,select,textarea{
    width: 100%;
    padding: 10px 16px;
    border-bottom: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
}
textarea{
    min-height: 140px;
    resize: none;
}
.radio-row{
   display: flex;
   flex-direction: row;
   align-items: center;
   gap: 50px;
   white-space: nowrap;
}
.radio-row label{
    display: flex;
    font-size: 15px;
    color: #555;
    gap: 6px;
    align-items: center; 
}
.contact-btn{
    align-self: center;
    width: 100%;
    max-width: 400px;
    padding:10px;
    background-color: #c48a4a;
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
}
.contact-btn:hover{
    background-color: #b3773a;
}



/*  */
.expertise-section {
  padding: 10px 7%;
  background: #f5f7fa;
  width: 100vw;
  
}

.expertise-container {
  width: 100vw;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.expertise-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: #1e293b;

}  
.underline {
  width: 70px;
  height: 4px;
  background: #f59e0b;
  /* margin-top: 10px; */
}

.expertise-intro p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  max-width: 900px;
}

.expertise-cards {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.expertise-card {
  flex: 1;
  min-width: 260px;
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-6px);
}

.expertise-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #0f172a;
}

.expertise-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.expertise-list-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.expertise-list-box h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #0f172a;
}

.expertise-list-box ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.expertise-list-box li {
  font-size: 15px;
  color: #475569;
}

.expert-container{
  display: flex;
  align-items: center;
  justify-content:center ;
  /* position: relative; */
 width: 100vw;
  width: 100%;
}
.expertise-viewpoint{
    overflow: hidden;
    width: calc(3 * 270px + 40px);
}


.expertise-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 20px;
  width: 100%;
  padding: 30px 10px;
  background: #f4f4f4;
  transition: transform 0.5s ease;
  
  
}
.arrow {
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  /* border-radius: 50%; */
}


.flip-card{
    position: relative;
    width: 270px;
    height: 320px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
     cursor: pointer;
     flex-shrink: 0;
}

.flip-inner{
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s ease-in-out;
     border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
}
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}
.front{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: orange;
    color: #fff;
    border-radius: 15px;
     box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
    
}
.front img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    border-radius: 15px;

}
.front h3{
    margin-top: -40px;
    z-index: 4;
    color: #fff;
    font-size: 1rem;
    text-align: center;
}
.back{
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background-color: #c6d4df;
    color: rgba(255, 255, 255, 1.5);
    transform: rotateY(180deg);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px;

}
/* team leads */
.team-container{
   width: 100vw;
    padding: 20px 8%;
    
}
.team-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.team-card{
    flex-grow: 1;
    flex-basis: 200px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0;
    width: 330px;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.5s ease;

    height: fit-content;
}
.team-card:hover{
    transform: translateY(-6px);
    
}
.teamContent{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    
}
.teamContent img{
    width: 82%;
    height: 300px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.team-icons{
    width: 10%;
    margin: auto 15px;
}

.team-card a{
    text-decoration: none;
}
.team-icons i{
    display: block;
    padding: 18px 0px;
    font-size: 23px;
    color: gray;
}
.team-icons i:hover{
    color: darkgoldenrod;
}

.teamText{
    padding: 10px;
}
.teamText h3{
    font-size: 22px;
    font-weight: bold;
}
.teamText p{
    font-size: 16px;
    color: gray;
}


/* carousel */
.carousel{
    margin: 10px 100px;
    width: 80%;
    padding: 20px 10%;
    overflow-x: auto;
}

.carousel::-webkit-scrollbar{
    display: none;
}

.cards{
    border: none;
    height: 8em;
}

.cards img{
    width: 140px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 0px;
   
    
}
@keyframes spin{
    from {
       transform: translateX(0)
    }
    to{
         transform: translateX(-50%)
    }
}

/* template */

.template-container{
    width: 100vw !important;
    padding: 20px 0px;
}
.template-box{
    display: flex;
    align-items:center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100vw;
   
}


.template-card{
    position: relative;
    width: 270px;
    height: 320px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
     cursor: pointer;
     flex-shrink: 0;
     margin-top: 40px
}

.template-inner{
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.8s ease-in-out;
     border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
}
.template-card:hover .template-inner {
  transform: rotateY(-180deg);
}
.template-front{
    position: absolute;
    width: 300px;
    height: 300px;
    backface-visibility: hidden;
    color: #fff;
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
      /* border: 2px solid black; */
      
}
.template-image{
    width: 150px;
    height: 150px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    position: relative;
    left: 80px;
    top: 10px;
    
     

}
.image2{
    width: 250px;
    height: 220px;
    position: relative;
    top: -30px;
    left: 20px;
    /* margin-top: -40px;
    margin-left: -50px; */
    
}
.process-test{
    position: relative;
    top: -70px;
}


.template-image img{
    width: 100%;
    height: 100%;
    margin: 20px;
    text-align: start;
    color: darkgoldenrod;
}


.template-front h3{
    margin-top: 40px;
    color: #000;
    font-size: 1.2rem;
    text-align: center;
}
.template-back{
    position: absolute;
    width: 250px;
    height: 250px;
    backface-visibility: hidden;
    background-color: darkgoldenrod;
    color: rgba(255, 255, 255, 1.5);
    transform: rotateY(-180deg);
    border-radius: 15px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2)
     -5px -5px 10px rgba(0, 0, 0, 0.05);
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 10px;

}

/* copyright */
.copyright{
    text-align: center;
    background-color:#000;
    color: #fff;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
}


/* scroll-btn */
.scroll-btn{
    width: 0;
    height: 0;
}
.scroll-btn i{
    position: fixed;
    right: 21px;
    top: 520px;
    bottom: 10px;
    width: 60px;
    height: 40px;
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 15px;
    background-color: darkgoldenrod;
    border: 1px solid #fff;
    cursor: pointer;
    color: #fff;
}

 .scrollContainer {
    width: 90vw;
    margin: 20px auto;
    overflow-x: hidden;
 }

    /* stop animation on hover */
    /* .scrollContainer:hover .scrollWrapper {
        animation-play-state: paused;
    } */
.scrollWrapper{
    margin: 20px auto;
}
.scrollContainer .scrollWrapper {
    display: flex;
    gap: 70px;
    animation: scrollAnim 25s infinite linear;
    width: max-content;
}
.scrollContainer .scrollWrapper .item {
    width: 70px;
    height: 70px;
    background-color: aquamarine;
    font-size: clamp(2rem, 4vw, 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: 200ms ease-in-out;
}
.scrollWrapper img{
    width: 150px;
    height: 120px;
    cursor: pointer;
}

.scrollContainer .scrollWrapper .item:hover{
    background-color: rgb(110, 236, 194);
    cursor: pointer;
}

@keyframes scrollAnim {
    to {
            transform: translateX(calc(-50% - 0.5rem));
        }
}

/* testimonials */
.subtitle-1{
    text-align: center;
    color: gray;
    margin-top: 20px;
}
.testimonials{
    /* width: 100%;  */
    padding: 20px 8%;
    height: 600px;
    height: fit-content;
    width: 100vw;
    
}

.testimonials-container{
    width: 100%;
    overflow-x: hidden;
}
 /* stop animation on hover */
.testimonials-container:hover .testimonials-wrapper {
    animation-play-state: paused;
   
}
.testimonials-wrapper{
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollAnim 25s infinite linear;
    margin: 40px 80px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: 200ms ease-in-out;
}
.testimonials-cards{
    width: 400px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-top: 40px;
    border-radius: 10px;
}
.testimonials-cards:hover{
     transform: scale(1.1);
    transition: 1s;
}

.testimonials-cards img{
    width: 80px;
    height: 80px;
    border-radius: 50px;
    margin-top: -75px;

}
.testimonials-cards h1{
    font-size: 20px;
}
.testimonial-heading{
   align-self: flex-start;
   margin-top: 20px;
}
.testimonial-heading h1{
    font-size: 25px;

}
.testimonial-underline{
    width: 200px;
    height: 5px;
    background-color: darkgoldenrod;
    border-radius: 10px;
    margin-bottom: 30px;

}

.role{
    font-size: 17px;
    color: gray;
    margin-bottom: 10px;
}
.stars{
    align-self: flex-start;
    justify-self: flex-start;
    margin-bottom: 20px;
}
.stars i{
    color: darkgoldenrod;
    font-size: 20px;
    
}
.review{
    text-align: center;
    font-size: 17px;
    margin-top: 20px;
    color: gray;
    position: relative;
    width: 370px;
}
.quotation{
    position: relative;
}
.quotation i{
    font-size: 30px;
    color: #c9a24d;
    position: absolute;
    top: 0px;
    left: -200px;
}

.google-link{
    font-size: 20px;
    color: darkgoldenrod;
    cursor: pointer;
    position: relative;
    margin-left: -180px;
}

/* youtube links */

.youtube{
    padding: 10px 8%;
    width: 100vw;
}
.video-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin: 0px;
}

.video-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    animation: slide 15s linear infinite;
}
.video-card {
    min-width: 380px;
    position: relative;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 5s ease;
}
.video-card:hover{
    transform: translateY(-6px);
}

.video-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 15px 20px;
    border-radius: 50%;
}

/* Popup */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.video-popup iframe {
    width: min(90vw, 900px);
    aspect-ratio: 16 / 9;
    height: auto;
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Infinite Animation */
@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Mobile */
@media (max-width: 768px) {
    .video-card {
        min-width: 260px;
    }
}



/* getaquote */

.plans{
    margin-top: 80px;
}
.package-container, .compare-plans{
    padding: 20px 8%;
    width: 100vw;
}
.package-wrapper{
    display: flex;
    justify-content: space-between;
    align-self: center;
    gap: 20px;
    margin-top: 30px;
}
.package-card{
    width: 350px;
    height: fit-content;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    flex: 1 1 280px;   
}

.package-card h1{
    font-size: 25px;
}
.package-price{
    margin-top: 20px;
}
.package-price i{
    font-size: 18px;
    margin-right: 10px;

}
.package-card span{
    font-size: 30px;
}
.package-price p{
    font-size: 23px;
}

.package-card a{
    width: 90%;
    padding: 8px;
    font-size: 18px;
    background-color: #000;
    color:#fff;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    border: 2px solid #000;
    position: absolute;
    bottom: 0px;
    left: -5px;
    margin: 10px 20px;

}
.package-card a:hover{
    background-color: #fff;
    color:#000;
    transition: all 0.9s ease-in;
}
.packageText{
    margin-top: 20px;
 }

summary {
  list-style: none;
  cursor: pointer;
  
}
summary::-webkit-details-marker {
  display: none;
}
.toggle-title h1{
    font-size: 15px;
    position: relative;
}

.toggle-title h1::after {
  content: "+";
  font-size: 25px;
  font-weight: bold;
  transition: transform 0.3s ease;
  margin-left: 10px;
}
details[open] .toggle-title h1::after {
  content: "−";
}

.toggle-content {
  font-size: 12px;
  color: gray;
  margin-left: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.9s ease, opacity 0.9s ease;
}

/* When details is open */
details[open] .toggle-content {
  max-height: 500px;   /* enough height */
  opacity: 1;
}

/* compare plans */
.compare-container{
    margin-top: 30px;
    width: 100%;
    min-height: fit-content;
}
.compare-card{
    display: flex;
    align-content: center;
    justify-content: flex-end;
    gap: 20px;
}
.compare-box{
     /* flex:  10px;    */
    width: 130px;
    text-align: center;
    /* border: 1px solid #000; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: bold;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;
    padding: 5px 0px;
    border-radius: 10px;
    cursor: pointer;

}
.compare-box:hover{
    background-color: #f4f4f4;
}
.compare-summery h2{
    margin-top: 20px;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px;

}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}
.compare-summery h2{
    position: relative;
    font-size: 20px;
}

.compare-summery h2::after {
  content: "+";
  font-size: 22px;
  font-weight: bold;
  position: absolute;
  right: 10px;
}
.compare-details[open] .compare-summery h2::after {
  content: "−";
}

/* Content animation */
.compare-details .list {
  margin-top: 8px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.compare-details{
    flex: 1 1 120px; 
}
  

.compare-details[open] .list {
  max-height: 100px;
  opacity: 1;
}
.list{
    flex: 1 1 300px; 
    display: flex;
    align-content: center;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 20px;
    flex-grow: 0;
}
.list p{ 
    width: 120px;
}
.list h3{
    margin-right: auto;
    text-align: center;
    font-size: 17px;
}

/* calculation */
.plan-container {
    width: 90%;
   
    margin: auto;
    margin-top: 30px;
    padding: 20px;
    height: fit-content;
    background-color: #fff;
    border-radius: 20px;
}

        /* Navbar for floors */
.navbar {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 20px;
}

.navbar button {
   padding: 10px 20px;
   color: darkgoldenrod;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid darkgoldenrod;
    background-color: transparent;
}

.navbar button.active, .navbar button:hover {
    background-color: darkgoldenrod;
    color: white;
}

 /* Plot input */
.plot-input {
    text-align: center;
    margin-bottom: 60px;
    margin-top: 30px;
 }

.plot-input input {
    padding: 5px;
    margin: 5px;
    width: 200px;
    
}

/* Floors cards container */
.floors-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    justify-content: center;
    transition: all 0.3s;
}

.floor-card{
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-color: transparent;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    display: none;
    transition: transform 0.2s, opacity 0.3s;
    height: 300px;
    flex: 1 1 280px;   
}

.floor-card h4 {
    margin-top: 0;
    font-size: 20px;
    margin-bottom: 20px;
}
.floor-card p{
    font-size: 18px;
    margin-bottom: 10px;
}
.floor-card select{
    width: 100%;
}

.costText{
    margin: 30px auto;
}
.floor-card:hover {
    transform: scale(1.05);
}

/* Totals section */
.totals {
    margin-top: 30px;
    text-align: center;
    font-size: 18px;
    padding: 20px;
}

.totals span {
    font-weight: bold;
}

/* project */

.project-container{
    width: 100vw;
    margin-top: 80px;
}
 
.project-wrapper {
  display: flex;
  /* flex-wrap: wrap; */
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
  gap: 20px;
  width: 100%;
}

.project-card {
  width: 32%;
  background: #fff;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
  margin-top: 30px;
}

.project-card:hover {
  transform: translateY(-6px);
}

/* Slider */
.slider {
  height: 100% !important;
  overflow: hidden;
}

.project-image {
  display: flex;
  width: 400%;
  animation: scrollAnim 9s infinite linear;
  gap: 5px;
  height: 50vh;
}

.project-image img {
  width: 25%;
  height: 100%;
}
.content {
  padding: 15px;
  display: flex;
  justify-content: space-between;
 
}

.content h3 {
  margin: 0;
  font-size: 15px;
}

.content p {
  color: #000;
  font-size: 14px;
}
 /* project1 */

.project1 {
    padding: 20px 5%;
    display: flex;            
    flex-direction: column;    
    gap: 20px;                 
    width: 100vw;
    margin: 0 auto;
}

.projectImage {
    display: flex;             
    justify-content: space-between; 
    flex-wrap: wrap;           
    gap: 10px;                 
}

.projectImage img {
    width: calc((100% - 20px) / 3); 
    height: auto;                   
    display: block;                 
    border-radius: 8px;            
}
.project-iframe {
    margin: 20px 30px;
    width: 95vw;
}
.counter-heading{
    height: 35vh;
}
