html{
scroll-behavior:smooth;
}

body{
margin:0;

background:linear-gradient(
180deg,
#e9f2ff 0%,
#f2f7ff 50%,
#f8fbff 100%
);

color:#1F2A37;
font-family:'Inter',sans-serif;
}


h1,h2,h3{
font-family:'Space Grotesk',sans-serif;
}


/* RECTANGULAR SECTIONS */

section{
padding:120px 10%;

background:white;

margin:60px auto;

border-radius:14px;

border:2px solid #FF7A18;

box-shadow:0 8px 30px rgba(0,0,0,0.06);
}


/* NAVBAR */

.navbar{
position:fixed;
top:0;
left: 0;
width:100%;
height: 65px;
display:flex;
align-items:center;
padding-top:0 40px;

background:linear-gradient(
90deg,
#FF7A18 0%,
#FF7A18 45%,
#f79b4a 60%,
#6ab0ff 80%,
#4DA3FF 100%
);

box-shadow:0 2px 20px rgba(0,0,0,0.05);

z-index:1000;
}

.logo{
font-size:22px;
font-weight:700;
color:white;
}
/* DESKTOP MENU CENTER*/

.nav-links{
display:flex;
list-style:none;
gap:30px;
margin: auto;
}

.nav-links a{
text-decoration:none;
color:white;
font-weight:500;
}
/* HAMBURGER*/

.menu-toggle{
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
    margin-left: auto;
}
/* hover / click effect */

.nav-links a:hover{
background:#FF7A18;
color:white;
}
/* HERO */

#hero{
height:50vh;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:transparent;
}

.hero-content h1{
color:#F59527;
font-size:80px;
margin:0;
text-shadow: 0 0 5px #00eaff,
             0 0 10px #00eaff,
             0 0 20px #00eaff,
             0 0 40px #00eaff;
}
#hero-quote{
font-size:18px;
color:white;
margin-bottom:20px;
letter-spacing:1px;
font-style: italic;
top: -90px;
}
@media (max-width:700px){

.hero-content h1{
font-size:80px;
}

}

.hero-content p{
color:#eaecf1f3;
margin-top:15px;
font-size:18px;
}

.hero-buttons{
margin-top:30px;
display:flex;
gap:20px;
justify-content:center;
}


.btn-primary{
background:#FF7A18;
padding:12px 24px;
border-radius:30px;
color:white;
text-decoration:none;
}

.btn-secondary{
border:2px solid #f4f7fa;
padding:12px 24px;
border-radius:30px;
color:#eaecef;
text-decoration:none;
}



/* PORTFOLIO */

#portfolio{
    background-image:url("https://removal.ai/wp-content/uploads/2021/05/image14-1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
padding:80px 10%;

}

.portfolio-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:50px;
}

@media (max-width:900px){
.portfolio-grid{
grid-template-columns:1fr;
}
}

.project-card{
background:white;
padding:20px;
border-radius:12px;
border:2px solid #FF7A18;
box-shadow:0 6px 20px rgba(0,0,0,0.06);
transition:0.3s;
}

.project-card:hover{
transform:translateY(-8px);
}

.project-card img{
width:100%;
height:220px;
object-fit:cover;
border-radius:8px;
margin-bottom:12px;
}

.project-info{
display:flex;
justify-content:space-between;
align-items:center;
}

.project-info h3{
font-size:16px;
}

.project-info a{
text-decoration:none;
color:#FF7A18;
font-weight:600;
font-size:14px;
}

.project-info a:hover{
letter-spacing:1px;
}



/* FAQ */
#faq{
    background-image:url("https://removal.ai/wp-content/uploads/2021/05/image14-1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:80px 10%;
}

.faq-container{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.faq-item{
border:2px solid #FF7A18;
border-radius:10px;
padding:15px;
background:white;
}

.faq-question{
cursor:pointer;
margin:0;
}

.faq-answer{
display:none;
margin-top:10px;
color:blue;
}

/* GALLERY SECTION */

#gallery{
    background-image:url("https://removal.ai/wp-content/uploads/2021/05/image14-1.png");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    padding:80px 10%;
}
#gallery h2{
color:black;   /* heading colour */
font-size:32px;
margin-bottom:15px;
}
.gallery-wrapper{
display:flex;
align-items:center;
gap:60px;
}

.gallery-image img{
width:420px;
border-radius:10px;
}

.gallery-content h2{
font-size:32px;
color: black;
margin-bottom:20px;
}

.gallery-content p{
color:white;
margin-bottom:30px;
line-height:1.6;
}

.gallery-buttons button{

padding:10px 20px;
border:none;
border-radius:6px;
background:#4DA3FF;
color:white;
font-size:15px;
cursor:pointer;
transition: all 0.3s ease;

}
/* Hover (Desktop) */

.gallery-buttons button:hover{

transform:scale(1.1);
box-shadow:0 0 10px #4DA3FF,
           0 0 20px #4DA3FF;

}

/* Disabled Button */

.gallery-buttons button:disabled{

opacity:0.4;
cursor:not-allowed;
box-shadow:none;
transform:none;

}
.gallery-buttons button:hover{
background:#ff7a18;
}

/*animation gallery*/

.gallery-animate{
animation: galleryFade 0.5s ease;
}

@keyframes galleryFade{

0%{
opacity:0;
transform:translateX(40px);
}

100%{
opacity:1;
transform:translateX(0);
}

}
/* mobile view gallery*/

@media (max-width:768px){

.gallery-container{
flex-direction:column;
text-align:center;
gap:25px;
}

.gallery-image img{
width:100%;
height: auto;
}

.gallery-content{
max-width:100%;
}

.gallery-buttons{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
flex-wrap:nowrap;
}

}


/* CONTACT */
#contact{
background-image:url("https://removal.ai/wp-content/uploads/2021/05/image14-1.png");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
padding:60px 10%;
margin-top:30px;
}

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:0 auto;
}

.contact-form input,
.contact-form textarea{
padding:12px;
border:2px solid #FF7A18;
border-radius:6px;
background:white;
color:#1F2A37;
}

.contact-form button{
background:#FF7A18;
padding:12px;
border:none;
border-radius:30px;
color:white;
cursor:pointer;
transition:0.3s ease;
}

/* Hover Animation */
.contact-form button:hover{
transform:scale(1.02);
box-shadow:0 0 10px #4DA3FF,
           0 0 20px #4DA3FF
}

/* Press Animation (Mobile + Desktop) */
.contact-form button:active{
transform:scale(0.95);
box-shadow:0 0 6px #FF7A18;
}



/* TOP BUTTON */

#topButton{
position:fixed;
top:80px;
right:20px;
width:50px;
height:50px;
border-radius:50%;
border:none;
background:#4DA3FF;
color:white;
font-size:20px;
cursor:pointer;
}



/* BOTTOM BUTTON */

#bottomButton{
position:fixed;
bottom:20px;
right:20px;
width:50px;
height:50px;
border-radius:50%;
border:none;
background:#FF7A18;
color:white;
font-size:20px;
cursor:pointer;
}



/* SECTION NAVIGATOR */

.section-nav{
position:fixed;
left:30px;
top:50%;
transform:translateY(-50%);
display:flex;
flex-direction:column;
gap:18px;
z-index:1000;
}


.nav-dot{
width:6px;
height:28px;
background:rgba(0,0,0,0.2);
cursor:pointer;
transition:0.3s;
position:relative;
border-radius:4px;
}


.nav-dot:hover{
background:#4DA3FF;
width:10px;
}


/* ACTIVE SECTION */

.nav-dot.active{
background:#4DA3FF;
width:10px;
}



/* TOOLTIP */

.nav-dot::after{

content:attr(data-label);

position:absolute;

left:18px;
top:50%;

transform:translateY(-50%);

background:white;

padding:4px 10px;

font-size:12px;

border-radius:4px;

white-space:nowrap;

opacity:0;

transition:0.2s;

border:1px solid #FF7A18;

}

/* about background */
.nav-dot:hover::after{
opacity:1;
}
#about{
background-image:url("https://removal.ai/wp-content/uploads/2021/05/image14-1.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;
font-size: 19px;
padding:100px 10%;
}
#about h2{
color:black;   /* heading colour */
font-size:32px;
margin-bottom:15px;
}

#about p{
color:white;   /* text colour */
font-size:16px;
line-height:1.6;
}
/* NAVBAR SCROLL EFFECT */

.navbar.scrolled{
background:linear-gradient(
90deg,
#4DA3FF 0%,
#6ab0ff 40%,
#FF7A18 100%
);
box-shadow:0 4px 20px rgba(0,0,0,0.08);
}


/* PORTFOLIO HOVER EFFECT */

.project-card::before{
content:"View Project";
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
background:#4DA3FF;
padding:10px 18px;
border-radius:20px;
font-size:14px;
color:white;
opacity:0;
transition:0.3s;
}
.project-card img{
width:100%;
height: 100%;   /* 16:9 ratio */
object-fit:cover;
border-radius:10px;
margin-bottom:10px;
}
.project-card:hover::before{
opacity:1;
}



/* BUTTON HOVER GLOW */

.btn-primary:hover{
box-shadow:0 0 20px rgba(255,122,24,0.4);
transform:translateY(-2px);
}

.btn-secondary:hover{
background:#4DA3FF;
color:white;
box-shadow:0 0 20px rgba(77,163,255,0.4);
}



/* MOBILE NAVIGATION */

.menu-toggle{
display:none;
font-size:26px;
cursor:pointer;
}

@media (max-width:800px){
.navbar{
    padding: 0 0.1px;
}
.menu-toggle{
display:block;
}

.nav-links{
position:absolute;
top:70px;
right:0;
background:white;
flex-direction:column;
width:200px;
padding:20px;
display:none;
border:2px solid #FF7A18;
border-radius: 12px;
}
.nav-links a{
    text-decoration:none;
color:black;
font-weight:500;
padding:10px 15px;
display:block;          /* full width */
border-radius:6px;
transition:0.3s;
}
.nav-links.active{
display:flex;
}
.nav-links a:hover{
background:#FF7A18;
color:white;
}
}



/* FOOTER */

.footer{
background:#1c2a3f;
color:#ff7a18;
margin-top:30px;
}

.footer-container{
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:40px;
padding:80px 10%;
}

.footer-left h2{
font-family:'Space Grotesk',sans-serif;
font-size:32px;
margin-bottom:20px;
}

.footer-left p{
max-width:400px;
line-height:1.6;
margin-bottom:30px;
color:white;
}

.footer-btn{
display:inline-block;
border:2px solid #ff7a18;
padding:12px 26px;
border-radius:30px;
color:white;
text-decoration:none;
transition:all 0.3s ease;
}

.footer-btn:hover{
background:#ff7a18;
color:#0B0F14;
transform:scale(1.02);
box-shadow:0 0 10px #4DA3FF,
           0 0 20px #4DA3FF
}
.btn-whatsapp{
display:inline-block;
margin-top:10px;
padding:12px 22px;
background:#25D366;
color:#fff;
text-decoration:none;
border-radius:6px;
font-weight:600;
transition:0.3s;
}

.btn-whatsapp:hover{
background:#1ebe5d;
}
.footer-column h3{
margin-bottom:20px;
font-family:'Space Grotesk',sans-serif;
}

.footer-column p{
margin-bottom:10px;
line-height:1.5;
color:white;
}

.footer-column a{
color:#ff7a18;
text-decoration:none;
}

.footer-bottom{
background:#000;
text-align:center;
padding:20px;
color:white;
font-size:14px;
}



/* FOOTER MOBILE */

@media (max-width:900px){

.footer-container{
display: flex;
flex-direction: column;
gap: 30px;
text-align: left;
}
.footer-container div{
    width: 100%;
}

}