:root{
  --bg:#f4f4f4;
  --text:#222;
  --green:#0f3d35;
  --gold:#e0b15c;
}
body.dark{
  --bg:#0f1115;
  --text:#f5f5f5;
    --subtext:#b0b0b0;
}
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}
body{
  background:var(--bg);
  color:var(--text);
  transition: background 1s ease, color 1s ease;
}
html{scroll-behavior:smooth;}
header{
  position: fixed;
  height: 90px;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;   
}
.logo{
  height:100%;
  display:flex;
  align-items:center;
  overflow:hidden;    
}
.logo img{
  height:80px;
  width:auto;
  transform:scale(0.6); 
  transform-origin:left center;
}
nav{
  position: absolute;      
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  gap: 30px;
  background: var(--green);
  padding: 12px 30px;
  border-radius: 40px;
}
nav a{
  color:#f6c86f;
  text-decoration:none;
}
.contact-btn{
  background:var(--gold);
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  color:#111;
  font-weight:600;
}
.contact-btn:hover{

  background:#f7ad23;
  color:#111;
  transform:translateY(-50%) scale(1.05);
}
.hamburger{
  display:none;
  font-size:26px;
  cursor:pointer;
}

/* home */

.hero{
  display:flex;
  justify-content:space-between;
  align-items:center; 
  top: -60px;
  padding:80px 60px 1px;
  position:relative;
  overflow:hidden;
}

.hero-text h1{
  font-size:60px;
  line-height:1.1;
}

.hero-text p{
  margin:20px 0;
  max-width:450px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  margin-top: 8px;
}

.primary-btn{
  background:var(--green);
  color:#f6c86f;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
}

.secondary-btn{
  border:2px solid var(--text);
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  color:var(--text);
}

.hero-visual{
  position:relative;
  top: 50px;
  width:420px;
}

.lamp{
  width:100%;
  display:block;
}

.hero-visual::before {
  content: "";
  position: absolute;

  top: -70px;          
  left: 207px;
  transform: translateX(-50%);

  width: 3px;
  height: 189px;

  background: #646464;     
  transition: background 0.4s ease;
}

body.dark .hero::before{
  opacity:0;
}
#ropeContainer{
  position:absolute;
 top:166px;    
  left:255px;
  transform:translateX(-50%);
  width:60px;
  height:140px;
}
#ropeSvg{
  width:100%;
  height:200px;
  stroke:#646464;
  stroke-width:2.2;
  fill:none;
}
#ropeBall{
  width:14px;
  height:14px;
  background:#646464;
  border-radius:50%;
  position:absolute;
  left:0;
  top:0;
  cursor:pointer;
  box-shadow:0 3px 6px rgba(0, 0, 0, 0.3);
}
.section{
  min-height:0;
  justify-content:center;
  align-items:center;
  font-size:40px;
}
@media (max-width:768px){
header{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 70px;
  padding:16px 18px;
  position:relative; 
}
.hamburger{
  display:block;
  position:absolute;
  left:18px;
  top:50%;
  transform:translateY(-50%);
  z-index:1001;
}
.logo{
  position:relative;
  left: 40px;
  display:flex;
  align-items:center;
}
.logo img{
  height:40px;
  transform:scale(0.6);
}
.contact-btn{
  position:absolute;
  right: -60px;         
  top:20px;
  transform:translateY(-50%);
  font-size:12px;
  padding:8px 14px;
  border-radius:20px;
}
.contact-btn:hover{
  background:var(--gold);
  color:#111;
  transform:translateY(-50%) scale(1.05);
}
.hero{
  flex-direction:column;
  text-align:center;
  padding:40px 20px 40px;
  top:0;
}
.hero-text h1{
  font-size:28px;
  line-height:1.25;
}
.hero-text p{
  font-size:14px;
  margin:12px auto;
}
.hero-buttons{
  justify-content:center;
  gap:12px;
}
.primary-btn,
.secondary-btn{
  font-size:12px;
  padding:10px 16px;
  border-radius:20px;
}
.hero-visual{
  width:240px;
  margin-top:20px;
}
.lamp{
  width:100%;
}
.hero-visual::before{
  height:140px;
  top:-72px;
  left:49.5%;
  transform:translateX(-50%);
}
#ropeContainer{
  position:absolute;
  top:94px;      
  left:136px;
  transform:translateX(-50%);
  width:40px;
  height:18px;  
}
#ropeBall{
  position:absolute;
  width:10px;
  height:10px;
  border-radius:50%;
}
#ropeSvg{
  width:100%;
  height:55px;
  stroke:#646464;
  stroke-width:2.2;
  fill:none;
}
  .lamp-glow,
  .hero::after {
    display: none;
  }
.contact-btn{
  position:relative;
  z-index:1000;
}
  nav{
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    flex-direction: column;
    align-items: flex-start; 
    gap: 10px;
    padding: 10px;
    border-radius: 50px;
    background: var(--green);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 10000;
  }
  nav.active{
    opacity: 1;
    pointer-events: auto;
  }
 nav a{
  display:block;
  width:90%;
  margin:8px auto;   
  text-align:center;
  padding:12px 30px;
  background:#e0b15c;   
  border-radius:50px;
  font-size:18px;
  color:#000000;
  text-decoration:none;
  transition: all 0.3s ease;
}
  nav a:hover{
  background:#e0b15c;
  transform: scale(1.05);
}
  .contact-btn{
    display:block;
    width:auto;             
    margin:6px 0 6px auto; 
    left: 10px;
    padding:12px 30px;
    border-radius:50px;
    font-weight:600;
    background: var(--gold);
    color: #111;
  }
}

/* about us */

.about{
  padding:1px 10%;
 background:var(--bg);
   transition:background 0.5s ease;
}
.about-top h1{
  font-size:30px;
  font-weight:800;
  color:var(--text);
  margin-top: -10px;
  margin-bottom:40px;
}
.about-top{
  text-align:center;
  margin-bottom:60px;
}
.tag{
  font-size:15px;
   color:var(--subtext);
  margin-bottom:10px;
}
.about-top h2{
  font-size:32px;
  font-weight:600;
    color:var(--text);
}
.about-container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.about-image img{
  width:100%;
  max-width:420px;
}
.about-text{
  max-width:520px;
}
.about-text p{
  font-size:16px;
  line-height:1.7;
   color:var(--subtext);
  margin-bottom:20px;
}
@media(max-width:768px){

  .about-container{
    flex-direction:column;
    text-align:center;
  }

  .about-text{
    max-width:100%;
  }

  .about-top h1{
  font-size:26px;
  font-weight:500;
  color:var(--text);
  margin-top: -10px;
  margin-bottom:40px;
}
.about-top{
  text-align:center;
  margin-bottom:60px;
}

.tag{
  font-size:15px;
   color:var(--subtext);
  margin-bottom:10px;
}

.about-top h2{
  font-size:23px;
  font-weight:400;
    color:var(--text);
}
}

/* services */

.services{
  padding:50px 10%;
 background:var(--bg);
   transition:background 0.5s ease;
}
.who h1 { font-size:30px;
  font-weight:800;
  color:var(--text);
  margin-top: -10px;
  margin-bottom:40px;
}
.who h2{font-size:23px;
  font-weight:400;
    color:var(--text);
  }
  .who{
    text-align:center;
    margin-bottom:60px;
  }
  .who-box{
    display:flex;
  align-items:stretch;
  justify-content:center;
  gap:60px;
}
.web-box{
border: #c9c4c4 solid 2px;
  padding:20px;
  border-radius:10px;
  width:300px;   
  height:330px;        
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background-color: #c7c2c2;
  box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
}
.web-box:hover{
  transform:translateY(-5px);
  box-shadow: #646464 0px 8px 16px, #646464 0px 12px 40px;
}
.who-image{
  width:80px;
  height:80px;
  margin-bottom:20px;
}
.who-box h3{
  font-size:20px;
  font-weight:600;
  color:black;
  margin-bottom:10px;
}
.who-box p{
  font-size:14px;
  line-height:1.5;
   color:black;
}
.Explore-btn{
  background:var(--gold);
  padding:12px 28px;
  border-radius:30px;
  text-decoration:none;
  color:#111;
  font-weight:600;

  display:block;        
  width:fit-content; 
  margin:20px auto 0;  
}
.Explore-btn:hover{
  background:#f1b544;
  transform:translateY(-2px);
  transition:0.3s;
}
@media(max-width:768px) {
  .who-box{
    flex-direction:column;
     align-items:center; 
    gap:30px;
  }
  .web-box{
border: #c9c4c4 solid 2px;
  padding:20px;
  border-radius:10px;
  width:260px;   
  height:250px;        
  display:flex;
  text-align:center;
  background-color: #c7c2c2;
  box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
}
.web-box:hover{
  transform:translateY(-5px);
  box-shadow: #646464 0px 8px 16px, #646464 0px 12px 40px;
}
.who-image{
  width:80px;
  height:80px;
  margin-bottom:20px;
}

}

/*why choose us */

#why-choose-us{
  padding:10px 60px;
  background:var(--bg);
   transition:background 0.5s ease;
}
.why-container{
  display:flex;
  align-items:flex-start;
  justify-content:center;
  gap:80px;
  max-width:1200px;
  margin:auto;
}
.why-image{
  width:420px;
  height: 550px;
  margin-top: 40px;
}
#why-choose-us h1{
  font-size:30px;
  font-weight: 800;
  margin-bottom:10px;
}
#why-choose-us h2{
  font-size:23px;
  font-weight:400;
  line-height:1.4;
  margin-bottom:40px;
}
.why-container > div > div{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}
.why-box{
  background:#c7c2c2;
  padding:20px;
  border-radius:10px;
  box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
}
.why-intop{
  display:flex;
  align-items:center;
  justify-content: center;
  margin-bottom:8px;
}
.why-logo{
  width:70px;
}
.why-intop h2{
  font: size 22%;
  font-weight:600;
  margin:10px;
  color: #000000;
}
.why-box p{
  font-size:16px;
  font-weight:400;
  color:#353535;
}
@media (max-width:768px){

.why-container{
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.why-image{
  width:260px;
  height: auto;
  margin-top:-50px;
}
.why-container > div > div{
  grid-template-columns:1fr;
}
}

/* project */

#projects{
  text-align:center;
    padding:30px 14px;
}
#projects h4{
 font-size:30px;
  font-weight: 800;
  margin-bottom:10px;
}
#projects h2{font-size:23px;
  font-weight:400;
  line-height:1.4;
  margin: 15px;
  margin-bottom:40px;
}
.proview{
  width:400px;
  height:320px;
  background:#a4a0a0;
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
 box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
  transition:transform .3s;
}
.proview:hover{
  transform:translateY(-6px);
}
.project-container{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  flex-wrap:wrap;
}
.project-card{
  width:360px;
  height:240px;
  margin:auto;
  background:#e9e9e9;
  border-radius:20px;
  overflow:hidden;
  position:relative;
}
.preview{
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:18px;
  position:relative;
}
.preview iframe{
  position:absolute;
  width:1200px;
  height:800px;
  border:none;
  transform:scale(0.33);
  transform-origin:top center;
  left:50%;
  transform:translateX(-50%) scale(0.33);
  pointer-events:none;
}

.open-btn{
  background:#fff;
  color:#000000;
  height:35px;
  width: 35px;
  padding:6px 10px;
  border-radius:8px;
  cursor:pointer;
  font-size:14px;
   box-shadow: #353434 5px 4px 8px, #312f2f 6px 6px 20px;
}
.project-footer{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:12px 16px;
  color:#fff;
  font-size:14px;
  font-weight:600;
}
.explore-btn{
  margin-top:40px;
  padding:12px 28px;
  border:none;
  background:#e0b15c;
  color:#000;
  border-radius:30px;
  font-weight:600;
  cursor:pointer;
}

@media (max-width:768px){


.project-container{
  flex-direction:column;
  align-items:center;
  gap:30px;
}
.proview{
  width:90%;
  height:300px;
}
.project-card{
  width:92%;
  height:200px;
  margin:auto;
}
.preview iframe{
  width:1200px;
  height:800px;
  left:50%;
  top:0;
  transform:translateX(-50%) scale(0.24);
  transform-origin:top center;
}
.project-footer{
  padding:10px 14px;
  font-size:13px;
}
.open-btn{
  padding:5px 8px;
  font-size:13px;
}
}
.stats{
  display:flex;
  justify-content:center;
  gap:100px;
  padding:80px 20px;
  text-align:center;
}
.stat-box h2{
  font-size:90px;
  font-weight:700;
  color:#e0b15c;
}
.stat-box p{
  margin-top:8px;
  font-size:25px;
    color: var(--text);
}

@media (max-width:768px){

.stats{
    flex-direction:column;
    gap:30px;
  }
.stat-box h2{
  font-size:50px;
  font-weight:700;
  color:#e0b15c;
}
}
body{
margin:0;
font-family:sans-serif;
}

/*faq */

.faq-section{
padding:100px 40px;
}
.faq-section h1{ 
  font-size:30px;
  font-weight:800;
  color:var(--text);
  margin-top: -50px;
  margin-bottom:40px;
 justify-content: center;
  display:flex;
}
.faq-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
gap:80px;
margin-top: -40px;
}
.faq-image{
flex:1;
}
.faq-image img{
 width:620px;
  height: 650px;
  margin-top: 50px;
}
.faq-content{
flex:1;
display:flex;
flex-direction:column;
margin-top:50px;
gap:18px;
}
.faq-item{
border-radius:30px;
overflow:visible;
}
.faq-question{
 background:#c7c2c2;
box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
color: black;
padding:18px 26px;
border-radius:30px;
font-size:16px;
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
position:relative;
}
.rocket{
position:absolute;
right:20px;
top:50%;
transform:translateY(-20%);
width:26px;
height:26px;
offset-path: path("M 0 0C 30 -10 55 -35 60 -60C 65 -90 40 -120 0 -120C -40 -120 -65 -90 -60 -60C -55 -35 -30 -10 0 0");
offset-rotate:auto 0deg;
}
.rocket img{
width: 40px;
}
.fly{
animation: rocketFlight 0.6s cubic-bezier(.45,.05,.55,.95) forwards;
} 

@keyframes rocketFlight{
0%{
offset-distance:0%;
offset-rotate:auto;
}
95%{
offset-distance:95%;
offset-rotate:auto;
}
100%{
offset-distance:100%;
offset-rotate:-20deg;
}
}
.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .4s ease;
margin-top:10px;
border-radius:20px;
box-shadow: #646464 0px 4px 8px, #646464 0px 6px 20px;
background:#c7c2c2;
}
.faq-item.active .faq-answer{
max-height:500px;
padding:5px 18px;
}
.faq-answer p{
padding:15px 20px;
margin:0;
color:#000;
}

@media (max-width:768px){

.faq-container{
flex-direction:column;
gap:40px;
}
.faq-content{
flex:1;
display:flex;
flex-direction:column;
margin-top:-70px;
gap:18px;
}
.faq-section h1{ 
  color:var(--text);
  margin-top: -100px;
  margin-bottom:40px;
  align-content: center;
 justify-content: center;
  display:flex;
}
.faq-image{
width:100%;
display:flex;
justify-content:center;
}
.faq-image img{
max-width:240px;
width:100%;
height: 100%;
}
.faq-question{
padding:16px 50px 16px 18px; 
}
.rocket{
right:16px;
top:50%;
transform:translateY(-30%);
width:22px;
height:22px;
}
.rocket img{
width:26px;
}
}

/* CONTACT SECTION */

.contact-section{
background:#e2b565;
padding:-30px 5%;

font-family:Segoe UI;
}

.contact-title{
text-align:center;
font-size:34px;
margin-bottom:40px;
color: #000;
}

.contact-container{
display:flex;
align-items:center;
justify-content:center;
gap:60px;
}

/* PHONE */

.phone-image img{
height:520px;
}

/* CONTACT INFO */

.contact-info{
width:260px;
color: #000;
}

.contact-info h2{
margin-bottom:12px;
}

.contact-info p{
margin:12px 0;
font-size:19px;
font-weight: 100px;
}

.social-icons{
display:flex;
align-items:center;
margin-top:10px;
}

.social-btn{
display:flex;
align-items:center;
justify-content:center;
width:60px;
height:8  0px;
border-radius:8px;
transition:0.3s ease;
}

.social-btn:hover{
transform:scale(1.1);
}

.insta-icon{
width:70px;
height:50px;
object-fit:contain;
}
/* FORM */

.contact-box{
background:#eee;
padding:25px;
border-radius:16px;
box-shadow:0 4px 10px rgba(0,0,0,0.25);
width:330px;
}

.contact-box h3{
margin-bottom:15px;
color: #000;
}

.contact-box input,
.contact-box textarea{
width:100%;
padding:10px;
margin-bottom:12px;
border:none;
border-radius:8px;
background:#ddd;
box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

.contact-box textarea{
height:90px;
resize:none;
}

.contact-box button{
background:#c98d3f;
border:none;
padding:10px 22px;
border-radius:18px;
font-weight:bold;
cursor:pointer;
display:block;
margin:auto;
}


/* FOOTER */

.footer-section{
background:#0f3f36;
padding:40px 5%;
color:#e2b565;
}

.footer-nav{
display:flex;
gap:25px;
font-size:14px;
margin-bottom:20px;
}

.footer-nav a{
color:white;
text-decoration:none;
}

.footer-logo{
font-size:80px;
font-weight:bold;
text-align:center;
}

.footer-logo span{
font-size:40px;
}

.footer-social{
display:flex;
justify-content:center;
gap:25px;
margin-top:20px;
font-size:13px;
}

.footer-social a{
color:white;
text-decoration:none;
}

.social-btn{
display:flex;
align-items:center;
justify-content:center;
width:50px;
height:40px;
border-radius:8px;
transition:0.3s ease;
}

.social-btn:hover{
transform:scale(1.1);
}

@media(max-width:768px){

.contact-container{
flex-direction:column;
gap:25px;
}

.phone-image{
display:none;
}

.contact-box{
width:260px;
}

.footer-logo{
font-size:50px;
}

.footer-nav{
flex-wrap:wrap;
justify-content:center;
}

.footer-social{
flex-wrap:wrap;
}

}