*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'Artifex Hand CF';
    src: url('ArtifexHandCF-Regular.woff2') format('woff2'),
        url('ArtifexHandCF-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,body {
    height: 100%;
    width: 100%;
    font-family: "Artifex Hand CF", cursive;
    scroll-behavior: smooth;
}
#part1, #part2, #part3, #part4, #part8 {
  scroll-margin-top: 12vh;
}

*::selection{
    background-color:  #FCD0B1;
    color: #600D12;
}
body::-webkit-scrollbar{
    display: block;
    width: 8px;
    background:#B4A6A9;
}
body::-webkit-scrollbar-thumb{
    background-color: #7A1715;
    border-radius: 50px ;

}

header{
    height: 12vh;
    width: 100%;
    background-color: #191919;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 5vh 5vh;
    position: fixed;
    z-index: 2;
}
header i {
    font-size: 1.5rem;
}
header h2{
    font-size: 2rem;
    margin-left: 5.5rem;
}
header button{
    font-size: 0.75rem;
    letter-spacing: 1.3px;
    padding: 0.9rem;
    border-radius: 20px;
    border: 1px solid white;
    text-transform: uppercase;
    transition: 0.2s ease-in  ;
  
}
header button:hover{
    background-color: black;
    color: white;
}


header {
  height: 12vh;
  width: 100%;
  background-color: #191919;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 5vh 5vh;
  position: fixed;
  z-index: 50;
}

header h2 {
  font-size: 2rem;
  margin-left: 5.5rem;
}

header .start-btn {
  font-size: 0.75rem;
  letter-spacing: 1.3px;
  padding: 0.9rem 1.2rem;
  border-radius: 20px;
  border: 1px solid white;
  text-transform: uppercase;
  transition: 0.2s ease-in;
  background: transparent;
  color: white;
}
header .start-btn:hover {
  background-color: black;
  color: white;
}


.menu-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.menu-text{
  display: inline-block;
  min-width: 55px;
}


.menu-icon{
  width: 18px;
  height: 18px;
  position: relative;
}
.menu-icon .line{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform 450ms cubic-bezier(.2,.8,.2,1);
}
.menu-icon .line.v{
  transform: translate(-50%, -50%) rotate(90deg);
}


.sm-open .menu-icon{
  transform: rotate(225deg);
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
}


.sm-wrap{
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none; 
}


.sm-layer{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(260px, 38vw, 420px);
  transform: translateX(110%);
  transition: transform 550ms cubic-bezier(.2,.8,.2,1);
}
.sm-layer-1{ background: #FCD0B1; }
.sm-layer-2{ background: #600D12 ; transition-delay: 70ms; }


.sm-panel{
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: clamp(260px, 38vw, 420px);
   background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );
  padding: 7.5em 2em 2em 2em;
  transform: translateX(110%);
  transition: transform 650ms cubic-bezier(.2,.8,.2,1);
  pointer-events: auto;
  overflow-y: auto;
}


.sm-wrap.open{
  pointer-events: auto;
}
.sm-wrap.open .sm-layer{
  transform: translateX(0);
}
.sm-wrap.open .sm-panel{
  transform: translateX(0);
  transition-delay: 110ms;
}


.sm-nav{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sm-item{
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #FCD0B1;
  text-decoration: none;
  transform: translateY(60px) rotate(6deg);
  opacity: 0;
  transition: transform 800ms cubic-bezier(.2,.8,.2,1), opacity 600ms ease;
}

.sm-wrap.open .sm-item{
  transform: translateY(0) rotate(0);
  opacity: 1;
}


.sm-wrap.open .sm-item:nth-child(1){ transition-delay: 220ms; }
.sm-wrap.open .sm-item:nth-child(2){ transition-delay: 300ms; }
.sm-wrap.open .sm-item:nth-child(3){ transition-delay: 380ms; }
.sm-wrap.open .sm-item:nth-child(4){ transition-delay: 460ms; }

.sm-item:hover{
  color: #600D12;
}


.sm-socials{
  margin-top: 2.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.sm-socials h4{
  margin: 0 0 14px 0;
  font-size: 1rem;
  font-weight: 600;
  color: #E5D265;
  opacity: 0;
  transform: translateY(10px);
  transition: 500ms ease;
}
.sm-social-links{
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sm-social{
  color:  #FCD0B1;
  text-decoration: none;
  font-weight: 600;
  opacity: 0;
  transform: translateY(14px);
  transition: 550ms ease;
}
.sm-social:hover{ color: #FCD0B1; }

.sm-wrap.open .sm-socials h4{
  opacity: 1;
  transform: translateY(0);
  transition-delay: 520ms;
}
.sm-wrap.open .sm-social{
  opacity: 1;
  transform: translateY(0);
}
.sm-wrap.open .sm-social:nth-child(1){ transition-delay: 580ms; }
.sm-wrap.open .sm-social:nth-child(2){ transition-delay: 650ms; }
.sm-wrap.open .sm-social:nth-child(3){ transition-delay: 720ms; }















main #part1{
    height: 100vh;
    width: 100%;
    position: relative;
}

#home-img{
    height: 100%;
    width: 100%;
/* background-color: firebrick ; */
    z-index: -1;

}
#home-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
#part1-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
    height: 100%;
    width: 100%;
    z-index: 1;
/* background:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.7)
    ); */
    background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3),
    rgba(0,0,0,0.7)
  );


}
 #upper-heading{
    height: 40%;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.9rem;
    margin-top: 10rem;
 }
 #btm-heading{

    display: flex;
    align-items: center;
    justify-content: space-around;
 }
  .btms-headings{
margin-top: 8rem;
  }
 .btms-headings h2{
font-size: 3.2rem;
color: white;

 }

 #part2{
    
    height: 55vh;
    width: 100%;
position: relative;
 }
 #part2-container{
    height: 70%;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
    padding: 0vh 16vh;
 }
 #part2-container p{
    font-size: 1.6rem;
    margin-top: 3rem;
 }
 #part2-container button{
       font-size: 0.75rem;
    letter-spacing: 1.3px;
    padding: 0.9rem;
    border-radius: 20px;
    border: 1px solid rgb(0, 0, 0);
    text-transform: uppercase;
    transition: 0.2s ease-in  ;
    color: rgb(0, 0, 0);
    background-color: transparent;
        margin-top: 2rem;
        font-weight:700;
 }
 #part2-container button:hover{
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    
}
main #part3{
    height: 85vh;
    width: 100%;
    position: relative;
    color: white;
}

#part3-img{
    height: 100%;
    width: 100%;
/* background-color: firebrick ; */
    z-index: -1;

}
#part3-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
#part3-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
    height: 100%;
    width: 100%;
    z-index: 1;
background:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.7)
    );

}
#part3-subcontainer{
    height: 100%;
    width: 50%;
    padding: 5vh 6vh;
    margin-top: 1rem;
}
#part3-subcontainer h3{
    margin-top: 1rem;
    font-size: 2rem;
}
#part3-subcontainer h2{
    font-size: 2.5rem;
    margin-top: 2rem;

}
#part3-subcontainer p{
    margin-top: 1rem;
    font-size: 1.4rem;
}







.services-section{
  width:100%;
  padding: 0;
  overflow: visible;              
}

.services-container{
  width: 100%;
  display:flex;
  justify-content: center;
  overflow: visible;              
}


.services-accordion{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #f6f4ef;            
  border-top: 1px solid rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(0,0,0,0.25);
  overflow: visible;              
}


.accordion-item{
  position: relative;             
  border-right: 1px solid rgba(0,0,0,0.25);
  overflow: visible;              
  min-height: 110px;
}

.accordion-item:last-child{
  border-right: none;
}

.accordion-header{
  width: 100%;
  height: 110px;
  padding: 0 3rem;
  display:flex;
  align-items:center;
  justify-content: space-between;

  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.accordion-header h3{
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #111;
}


.accordion-icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after{
  content:"";
  position:absolute;
  background:#111;
  transition: all 0.25s ease;
}

.accordion-icon::before{
  width:100%;
  height:2px;
  top:50%;
  left:0;
  transform: translateY(-50%);
}

.accordion-icon::after{
  width:2px;
  height:100%;
  left:50%;
  top:0;
  transform: translateX(-50%);
}

.accordion-item.active .accordion-icon::after{
  opacity:0;
}

.accordion-content{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;                   
  z-index: 50;

  background: #f6f4ef;
  border: 1px solid rgba(0,0,0,0.25);
  border-bottom: none;
  padding: 2.2rem 2.2rem 1.6rem;

  
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;

  transition: opacity 0.25s ease, transform 0.25s ease;
}


.accordion-item.active{
  z-index: 200;                   
}

.accordion-item.active .accordion-content{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


.accordion-content p{
  margin: 0 0 1.3rem;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  max-width: 260px;
}

.accordion-divider{
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 1rem 0;
}

.explore-link{
  display:inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  color: #111;
}




#part-5{
    height: 120vh;
    width: 100%;
    background-color: #FFF1E5;
}
#part5-container{
    height: 100%;
    width: 100%;
display: flex;
align-items: center;
justify-content: center;
}
#part5-left{
    height: 100%;
    width: 60%;
    
}
#part5-left-container{
    height: 100%;
    width: 100%;
    padding: 0vh 10vh;

}
#part5-left-container img{
    padding: 10vh 10vh;
    height: 90%;
    width: 100%;
}
#part5-right{
    height: 120vh;
    width: 40%;
    /* background-color: purple; */
}

#part5-right-container{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    padding: 10vh 10vh;
}
#part5-right-container h3{
font-size: 1.2rem;
}
#part5-right-container h2{
font-size: 2rem;
margin-top: 2rem;
}
#part5-right-container h4{
font-size: 1.4rem;
margin-top: 2rem;

}
#part5-right-container p{
font-size: 1.2rem;
margin-top: 2rem;

}
#part5-right-container h5{
  border-top: 1px solid #AFA69E ;
font-size: 1.1rem;
margin-top: 2rem;
padding: 3vh 0vh;

}


#part6{
  border-top: 1px solid #AFA69E;
 height: 78vh; 
 width: 100%;
}
#part6-container{
  height: 100%;
  width: 100%;
  padding: 4vh 0vh;
  /* background-color: red; */
}

.testimonial{
  width: 100%;
  height: 100%;
  /* min-height: 420px; */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.testimonial__inner{
  width: min(1000px, 90%);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


.testimonial__content{
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.quote{
  font-family: "Georgia", "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.25;
  color: #111;
  margin: 0 0 22px;
}

.author{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 0.95rem;
  color: #222;
  margin: 0;
}

.dots{
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  user-select: none;
}


.dot{
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #111;
  background: transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}


.dot.active{
  background: #111;
  opacity: 1;
}


.dot:hover{
  transform: scale(1.08);
}



#part7{
height: 120vh;
width: 100%;
background-color: #FCD0B1;
border-top: 1px solid #AFA69E;
border-bottom: 1px solid #AFA69E;


}
#part7-container{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
#part7-left{
  height: 100%;
  width: 30%;
}
#part7-left img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#part7-right{
  height: 100%;
  width: 70%;
}
#part7-right-container{
  height: 100%;
  width: 100%;
  padding: 10vh 10vh;
}
#part7-right-container h2{
font-size: 2rem;
margin-bottom: 2rem;
font-weight: 100;
}
#part7-right-container h1{
font-size: 2.5rem;
margin-bottom: 1rem;
font-weight: 200;

}
#part7-right-container h4{
font-size: 1rem;
font: 100;

}
#part7-right-bL{
  width: 40%;
  margin-right: 2rem;
  margin-bottom: 15rem;
}
#part7-right-bL h4{
font-size: 0.9rem;
font-weight: 100;
width: 100%;
}

#part7-right-bR{
  width: 60%;

}


#part7-right-bottom{
margin-top: 2rem;

  display: flex;
  align-items: center;
  justify-content: center;
}
#part7-right-bottom button{
  margin-top: 1.4rem;
  margin-left: 24.8rem;
      font-size: 0.75rem;
    letter-spacing: 1.3px;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    border: 1px solid black;
    text-transform: uppercase;
    transition: 0.2s ease-in  ;
    background-color: black;
    color: white;
    font-weight: 500;
  
}
#part7-right-bottom button:hover{
    background-color: transparent;
    color: rgb(0, 0, 0);
    font-weight: 500;

}

#part7-form-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#part7-form-top h4{
  font-size: 0.8rem;
  font-weight: 100;
}
#part7-form-top select{
  border: 1px solid black;
width: 18vh ;
padding: 1.3vh 1.3vh;
background-color: transparent;

}
#part7-form-top input{
  border: 1px solid black;

width: 18vh ;
padding: 1.3vh 1.3vh;
background-color: transparent;

}
#part7-form-center{ 
  margin-top: 2rem;
  display: flex;
  flex-direction: column;


}
#part7-form-center h4{
  font-size: 0.8rem;
  font-weight: 100;
}
#part7-form-center input{
  border: 1px solid black;

width: 36vw ;
padding: 1.3vh 1.3vh;
margin-bottom: 1rem;
background-color: transparent;

}
#part7-form-bottom{
  margin-top: 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#part7-form-bottom h4{
  font-size: 0.8rem;
  font-weight: 100;
}

#part7-form-bottom input{
width: 18vh ;
  border: 1px solid black;
background-color: transparent;
padding: 1.3vh 1.3vh;

}


#part8{
  height: 90vh;
  width: 100%;
  /* background-color: red; */

}
#part8-container{
  height: 100%;
  width: 100%;
  /* background-color: #5bb30a; */
  color: white;
  text-align: center;
  padding: 5vh 5vh;

}
#part8-sub-container{
  background-color: #0E0E0E;
  padding: 2vh 2vh;
 height: 100%;
  width: 100%;
}
#part8-sub-container h4{
  margin-top: 3rem;

  font-size: 1.5rem;
}


.divider {

  margin-top: 3rem;
margin-left: 39rem;
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,0.4);
}


#part8-sub-container h2{

margin-top: 3rem;
  font-size: 2.6rem;

}
#part8-container  button{

   margin-top: 3rem;
      font-size: 0.75rem;
    letter-spacing: 1.3px;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    border: 1px solid rgb(255, 255, 255);
    text-transform: uppercase;
    transition: 0.2s ease-in  ;
    background-color: transparent;
    color: white;
    font-weight: 500;
  
}

#part8-container  button:hover{
    background-color: white;
    color: rgb(0, 0, 0);
    font-weight: 500;

}







.fi-footer{
  background: #0b0b0b;
  color: rgba(255,255,255,.9);
  padding-top: 42px;
  position: relative;
}

.fi-footer__inner{
  width: min(1200px, 92%);
  margin: 0 auto;
}

/* Top pills */
.fi-footer__pills{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 46px;
}

.fi-pill{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.65);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  letter-spacing: .04em;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  transition: transform .15s ease, opacity .15s ease, background .15s ease;
}

.fi-pill:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.06);
}


.fi-footer__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 44px;
  align-items: start;
  padding-bottom: 48px;
}


.fi-crest{
  width: 170px;
  height: 200px;
  opacity: .95;
}

.fi-footer__col h4{
  margin: 0 0 14px;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: rgba(255,255,255,.95);
}

.fi-footer__col ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.fi-footer__col a{
  text-decoration: none;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: opacity .15s ease;
}

.fi-footer__col a:hover{ opacity: .72; }

.fi-social a span{
  opacity: .7;
  font-size: 12px;
  margin-left: 6px;
}

/* Legal row */
.fi-footer__legal{
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 0 26px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 18px;
}

.fi-footer__small{
  margin: 0;
  font-size: 11px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}

.fi-footer__right{
  text-align: right;
}


.fi-footer__motto{
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 26px 0 34px;
}

.fi-footer__motto-inner{
  width: min(1200px, 92%);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 2.9vw, 72px);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


















































@media (max-width: 1024px) {

  #upper-heading{
    font-size: 1.6rem;     
    margin-top: 8rem;      
    padding: 0 1rem;
  }

  .btms-headings h2{
    font-size: 2.6rem;     
  }

  #btm-heading{
    padding: 0 1rem;
    gap: 2rem;
  }
}



@media (max-width: 768px) {

  #part1-container{
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 18vh; 
  }

  #upper-heading{
    margin-top: 0;          
    font-size: 1.45rem;
    width: 90%;
    text-align: center;
  }


  #btm-heading{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 2.2rem;
  }

  .btms-headings{
    margin-top: 0;
    text-align: center;
  }

  .btms-headings h2{
    font-size: 2.1rem;
    line-height: 1.1;
  }
}



@media (max-width: 420px) {

  #part1-container{
    padding-top: 16vh;
  }

  #upper-heading{
    font-size: 1.25rem;
  }

  .btms-headings h2{
    font-size: 1.8rem;
  }
}

@media (max-width: 360px) {

  #upper-heading{
    font-size: 1.1rem;
  }

  .btms-headings h2{
    font-size: 1.6rem;
  }
}





@media (max-width: 1024px) {
  #part2{
    height: 50vh; 
  }

  #part2-container{
    padding: 0 8vh; 
    height: auto;
  }

  #part2-container p{
    font-size: 1.35rem;
    margin-top: 2rem;
    line-height: 1.6;
  }
}


@media (max-width: 768px) {
  #part2{
    height: auto;          
    padding: 60px 0;       
  }

  #part2-container{
    position: relative;    
    top: auto;
    left: auto;
    transform: none;
    height: auto;
    padding: 0 22px;       
    max-width: 520px;      
    margin: 0 auto;        
  }

  #part2-container p{
    font-size: 1.15rem;    
    margin-top: 0;
    line-height: 1.7;
  }

  #part2-container button{
    margin-top: 22px;
    padding: 0.85rem 1.2rem;
    border-radius: 999px;  
    font-size: 0.72rem;
    letter-spacing: 1.4px;
  }
}


@media (max-width: 420px) {
  #part2{
    padding: 46px 0;
  }

  #part2-container{
    padding: 0 16px;
  }

  #part2-container p{
    font-size: 1.05rem;
  }

  #part2-container button{
    font-size: 0.7rem;
    padding: 0.8rem 1.1rem;
  }
}























@media (max-width: 900px){
  .fi-footer__pills{
    grid-template-columns: 1fr;
  }

  .fi-footer__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fi-crest{
    width: 140px;
    height: 170px;
  }

  .fi-footer__legal{
    grid-template-columns: 1fr;
  }

  .fi-footer__right{
    text-align: left;
  }

  .fi-footer__motto-inner{
    white-space: normal;
    font-size: 0.7rem;
  }
}


.fi-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.fi-modal.is-open{ display: grid; place-items: center; }

.fi-modal__backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.fi-modal__card{
  position: relative;
  width: min(520px, 92%);
  background: #111;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  padding: 22px;
  z-index: 1;
}

.fi-modal__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.9);
  cursor: pointer;
}

.fi-modal__card h3{
  margin: 0 0 8px;
  font-family: Georgia, serif;
}

.fi-modal__card p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.6;
}

.fi-form{
  display: grid;
  gap: 10px;
}

.fi-form input,
.fi-form textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16);
  background: #0c0c0c;
  color: rgba(255,255,255,.9);
  outline: none;
}

.fi-form button{
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.6);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.95);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 700;
  cursor: pointer;
}

.fi-form button:hover{
  background: rgba(255,255,255,.08);
}













@media (max-width: 1024px){
  header h2{ margin-left: 0; }
  .sm-layer, .sm-panel{
    width: 100%;
  }
}

@media (max-width: 600px){
  header{
    padding: 4vh 3vh;
    height: 10vh;
  }
  header h2{
    font-size: 1.4rem;
  }
  header .start-btn{
    padding: 0.7rem 0.9rem;
    font-size: 0.65rem;
  }
  .sm-panel{
    padding: 6.5em 1.2em 1.2em 1.2em;
  }
  .sm-item{
    font-size: 2.4rem;
    letter-spacing: -1px;
  }
}















@media (max-width: 1024px) {

  #upper-heading{
    font-size: 1.6rem;    
    margin-top: 8rem;     
    padding: 0 1rem;
  }

  .btms-headings h2{
    font-size: 2.6rem;     
  }

  #btm-heading{
    padding: 0 1rem;
    gap: 2rem;
  }
}



@media (max-width: 768px) {

  #part1-container{
   
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 18vh; 
  }

  #upper-heading{
    margin-top: 0;         
    font-size: 1.45rem;
    width: 90%;
    text-align: center;
  }

  #btm-heading{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 5rem;
    gap: 2.2rem;
  }

  .btms-headings{
    margin-top: 0;
    text-align: center;
  }

  .btms-headings h2{
    font-size: 2.1rem;
    line-height: 1.1;
  }
}


@media (max-width: 420px) {

  #part1-container{
    padding-top: 16vh;
  }

  #upper-heading{
    font-size: 1.25rem;
  }

  .btms-headings h2{
    font-size: 1.8rem;
  }
}

/* Very small */
@media (max-width: 360px) {

  #upper-heading{
    font-size: 1.1rem;
  }

  .btms-headings h2{
    font-size: 1.6rem;
  }
}







@media (max-width: 768px) {


main #part3{
    height: 65vh;
    width: 100%;
    position: relative;
    color: white;
}

#part3-img{
    height: 100%;
    width: 100%;
/* background-color: firebrick ; */
    z-index: -1;

}
#part3-img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}
#part3-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50% , -50%);
    height: 100%;
    width: 100%;
    z-index: 1;
background:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.5) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.7)
    );

}
#part3-subcontainer{
    height: 100%;
    width: 100%;
    padding: 5vh 2vh;
    margin-top: 1rem;
}
#part3-subcontainer h3{
    margin-top: 1rem;
    font-size: 1.6rem;
}
#part3-subcontainer h2{
    font-size: 1.5rem;
    margin-top: 2rem;

}
#part3-subcontainer p{
    margin-top: 1rem;
    font-size: 1.3rem;
}



}





















@media (max-width: 768px) {



#part-5{
    height: 120vh;
    width: 100%;
    background-color: #FFF1E5;
}
#part5-container{
    height: 100%;
    width: 100%;
display: flex;
flex-direction: column;
}
#part5-left{
    height: 70vh;
    width: 100%;
    /* background-color: peachpuff; */
}
#part5-left-container{
    height: 100%;
    width: 100%;
    padding: 1vh 1vh;
    margin-top: 2rem;

}
#part5-left-container img{
    padding: 1vh 1vh;
    height: 90%;
    width: 100%;
}
#part5-right{
    height: auto;
    width: 100%;
    /* background-color: purple; */
}

#part5-right-container{
    height: 100%;
    width: 100%;
    /* background-color: red; */
    padding: 4vh 4vh;
}
#part5-right-container h3{
font-size: 1.1rem;
}
#part5-right-container h2{
font-size: 1.5rem;
margin-top: 2rem;
}
#part5-right-container h4{
font-size: 1.2rem;
margin-top: 2rem;

}
#part5-right-container p{
font-size: 1rem;
margin-top: 2rem;

}
#part5-right-container h5{

font-size: 1rem;


}




}
   






@media (max-width: 768px) {

#part7{
height: 164.95vh;
width: 100%;
background-color: #FCD0B1;
border-top: 1px solid #AFA69E;
border-bottom: 1px solid #AFA69E;


}
#part7-container{
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  
}
#part7-left{
  height: 15%;
  width: 100%;
}
#part7-left img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#part7-right{
  height: 85%;
  width: 100%;
}
#part7-right-container{
  height: 100%;
  width: 100%;
  padding: 3vh 3vh;
}
#part7-right-container h2{
font-size: 1.7rem;
margin-bottom: 2rem;
font-weight: 100;
}
#part7-right-container h1{
font-size: 1.9rem;
margin-bottom: 1rem;
font-weight: 200;

}
#part7-right-container h4{
font-size: 1.2rem;
font-weight: 100;
margin-left: 1rem;

}
#part7-right-bL{
  width: 100%;
  margin-right: 2rem;
  margin-bottom: 1rem;
}
#part7-right-bL h4{
font-size: 0.9rem;
font-weight: 100;
width: 100%;
}

#part7-right-bR{
  width: 95vw;
/* background-color: red; */
}


#part7-right-bottom{
margin-top: 2rem;
 
  display: flex;
  flex-direction: column;
}
#part7-right-bottom button{
  margin-top: 1.5rem;
  margin-left: 1.8rem;
      font-size: 0.75rem;
    letter-spacing: 1.3px;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    border: 1px solid black;
    text-transform: uppercase;
    transition: 0.2s ease-in  ;
    background-color: black;
    color: white;
    font-weight: 500;
    width: 80vw;
  
}
#part7-right-bottom button:hover{
    background-color: transparent;
    color: rgb(0, 0, 0);
    font-weight: 500;

}

#part7-form-top{
  display: flex;
  flex-direction: column;
width: 100%;

}
#part7-form-top h4{
  font-size: 0.8rem;
  font-weight: 100;
  margin-top: 1rem;

}
#part7-form-top select{
  border: 1px solid black;

padding: 1.3vh 1.3vh;
background-color: transparent;
width: 95vw;

}
#part7-form-top input{
  border: 1px solid black;

width: 95vw;
margin-top: 0rem;
padding: 1.3vh 1.3vh;
background-color: transparent;

}
#part7-form-center{ 
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
width: 95vw;


}
#part7-form-center h4{
  font-size: 0.8rem;
  font-weight: 100;
}
#part7-form-center input{
  border: 1px solid black;
width: 100%;
padding: 1.3vh 1.3vh;
margin-bottom: 1rem;
background-color: transparent;

}
#part7-form-bottom{
  margin-top: 0rem;
  display: flex;
  flex-direction: column;
width: 95vw;

}

#part7-form-bottom h4{
  margin-top: 1rem;

  font-size: 0.8rem;
  font-weight: 100;
}

#part7-form-bottom input{

width: 95vw;
  border: 1px solid black;
background-color: transparent;
padding: 1.3vh 1.3vh;

}


}









@media (max-width: 768px) {

  #part8 {
    height: 70vh;
  }

  #part8-sub-container h4 {
    font-size: 1.2rem;
  }

  #part8-sub-container h2 {
    font-size: 2rem;
  }

  .divider {
    margin-left: auto;   
    margin-right: auto;  
    height: 60px;
  }
}


@media (max-width: 480px) {

  #part8 {
    height: 60vh;
  }

  #part8-container {
    padding: 3vh 2vh;
  }

  #part8-sub-container h4 {
    font-size: 1rem;
  }

  #part8-sub-container h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .divider {
    margin-left: auto;   
    margin-right: auto;  
    height: 50px;
  }

  #part8-container button {
    font-size: 0.7rem;
    padding: 0.6rem 1.2rem;
  }
}













@media (max-width: 768px){
  .dots{
    right: auto;
    left: 50%;
    top: auto;
    bottom: 28px;
    transform: translateX(-50%);
    flex-direction: row;
    gap: 16px;
  }

  .testimonial{
    min-height: 520px; 
  }

  .quote{
    font-size: clamp(1.4rem, 5vw, 2.2rem);
  }
}


























































@media (max-width: 1024px){
  .services-accordion{
    grid-template-columns: 1fr;
  }

  .accordion-item{
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.25);
  }

  
  .accordion-content{
    bottom: auto;
    top: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.25);
  }

  .accordion-content p{
    max-width: 100%;
  }
}




