html{
scroll-behavior:smooth;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #0d0d0d;
  color: white;
padding-bottom:80px;

}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 50px;
background:rgba(0,0,0,0.75);
backdrop-filter:blur(10px);
-webkit-backdrop-filter:blur(10px);
position:sticky;
top:0;
z-index:10000;
box-shadow:0 5px 25px rgba(0,0,0,0.6);
border-bottom:1px solid rgba(255,255,255,0.05);
}
nav{
display:flex;
align-items:center;
}

nav a{
color:#ddd;
text-decoration:none;
margin-left:35px;
font-weight:600;
font-size:15px;
letter-spacing:0.5px;
position:relative;
display:inline-block;
padding:8px 6px;
transition:color 0.3s ease;
}

nav a:hover{
color:#ffffff;
}

nav a::after{
content:"";
position:absolute;
left:0;
bottom:-6px;
width:0;
height:2px;
background:#d4af37;
transition:width 0.3s ease;
}

nav a:hover::after{
width:100%;
}

.logo{
font-weight:bold;
color:#d4af37;
font-size:20px;
display:flex;
align-items:center;
gap:10px;
}
.hero{
height:90vh;
background-image:url("Images/aesthetic-india-digital-technology-solutions.jpg");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
flex-direction:column;
padding:20px 20px 140px 20px;  /* 👈 IMPORTANT */
position:relative;
animation:heroZoom 10s ease-out forwards;
}

@keyframes heroZoom{
from{
background-size:110%;
}
to{
background-size:100%;
}
}

.hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
rgba(0,0,0,0.75),
rgba(0,0,0,0.55)
);
pointer-events:none;
}

.hero *{
position:relative;
z-index:2;
}

.hero h1{
font-size:48px;
line-height:1.2;
max-width:760px;
margin:auto;
}

.hero p{
font-size:20px;
color:#ddd;
max-width:700px;
}
.btn{
display:inline-block;
padding:14px 36px;
background:#d4af37;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:30px;
transition:0.3s;
font-size:16px;
}

.btn:hover{
background:#e6c35c;
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(212,175,55,0.35);
}

.products {
  
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}


.about, .contact {
  
  text-align: center;
}

footer {
  text-align: center;
  padding: 20px;
  background: black;
  font-size: 14px;
}

.card{
background:#1a1a1a;
border-radius:12px;
padding:25px;
transition:0.3s;
display:flex;
flex-direction:column;
justify-content:flex-start;
min-height:180px;
}

.card img {
width:100%;
height:220px;
object-fit:cover;
}
.card h3 {
  padding: 20px;
  color: #d4af37;
}

.card{
transition:all 0.35s ease;
}

.card:hover{
transform:translateY(-8px) scale(1.02);
box-shadow:0 15px 40px rgba(212,175,55,0.25);
}


.cta{
max-width:900px;
margin:80px auto;
text-align:center;
padding:50px;
background:#121212;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.cta p{
max-width:700px;
margin:20px auto 30px auto;
color:#ccc;
font-size:16px;
line-height:1.7;
}

/* TRUST SECTION */

.trust{
text-align:center;
background:#111;
}
.trust h2 {
  color: #d4af37;
  font-size: 28px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.trust-grid div {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.trust-grid div:hover {
  background: #d4af37;
  color: black;
  transform: translateY(-5px);
}
h2{
font-size:32px;
color:#d4af37;
margin-bottom:10px;
}

.logo img{
height:65px;
width:auto;
}

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:white;
font-size:28px;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
text-decoration:none;
box-shadow:0 5px 15px rgba(0,0,0,0.3);
z-index:1000;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);}

/* CONTACT BAR */

.contact-bar{
position:fixed;
bottom:0;
left:0;
width:100%;
display:flex;
z-index:999;
}

.contact-btn{
flex:1;
text-align:center;
padding:14px;
color:white;
font-weight:bold;
text-decoration:none;
font-size:16px;
}

.call{
background:#007BFF;
}

.whatsapp{
background:#25D366;
}

.email{
background:#FF6B35;
}

.contact-btn:hover{
opacity:0.9;
}

/* CLIENT SECTION */

.clients{

text-align:center;
background:#0f0f0f;
}

.client-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:30px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.client-box{
background:#1a1a1a;
padding:20px;
border-radius:10px;
font-weight:500;
transition:0.3s;
}

.client-box:hover{
background:#d4af37;
color:black;
transform:translateY(-5px);
}


/* COVERAGE */

.coverage{

text-align:center;
background:#0f0f0f;
}

.coverage p{
max-width:700px;
margin:auto;
color:#ccc;
}


/* INSTALLATIONS */

.installations{

text-align:center;
background:#0f0f0f;
}

.install-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
max-width:1000px;
margin-left:auto;
margin-right:auto;
}

.install-grid div{
background:#1a1a1a;
padding:20px;
border-radius:10px;
}

.install-grid div{
background:#1a1a1a;
padding:20px;
border-radius:10px;
transition:0.3s;
}

.install-grid div:hover{
background:#d4af37;
color:black;
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(212,175,55,0.25);
}

section{
padding:60px 20px;
border-top:1px solid rgba(255,255,255,0.04);
}

/* HERO OVERLAY */

.ifp-hero{
height:80vh;
background:url("Images/interactive-panel-classroom.jpg") center/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
flex-direction:column;
padding:40px;
position:relative;
}

.ifp-hero::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.65);
}

.ifp-hero h1,
.ifp-hero p{
position:relative;
z-index:2;
}

.ifp-hero h1{
font-size:48px;
max-width:900px;
margin-bottom:20px;
line-height:1.2;
}

.ifp-hero p{
max-width:750px;
font-size:20px;
color:#ddd;
}

/* GRID */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:30px;
margin-top:40px;
}

.spec-list{
max-width:1000px;
margin:30px auto;
background:#121212;
padding:35px 45px;
border-radius:12px;
box-shadow:0 15px 40px rgba(0,0,0,0.6);
text-align:left;
}

.spec-list ul{
margin:0;
padding-left:20px;
}

.spec-list li{
padding:8px 0;
font-size:17px;
color:#ddd;
}

/* CARD */

.card{
background:#1a1a1a;
border-radius:12px;
padding:20px;
transition:0.3s;
}

.card img{
width:100%;
height:180px;
object-fit:cover;
border-radius:8px;
margin-bottom:15px;
}

.card:hover{
transform:translateY(-8px);
box-shadow:0 15px 40px rgba(0,0,0,0.6);
}



/* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.active{
opacity:1;
transform:translateY(0);
}

.text-box img{
width:100%;
height:260px;
object-fit:cover;
border-radius:10px;
margin-bottom:25px;
}


/* HERO TEXT ANIMATION */

.hero h1{
opacity:0;
transform:translateY(40px);
animation:heroFade 1s ease forwards;
animation-delay:0.3s;
}

.hero p{
opacity:0;
transform:translateY(40px);
animation:heroFade 1s ease forwards;
animation-delay:0.8s;
}

.hero .btn{
opacity:0;
transform:translateY(40px);
animation:heroFade 1s ease forwards;
animation-delay:1.3s;
}

@keyframes heroFade{
to{
opacity:1;
transform:translateY(0);
}
}


.solutions{
max-width:900px;
margin:80px auto;
padding:50px;
text-align:center;
background:#121212;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.solutions h2{
margin-bottom:30px;
}

.solutions p{
max-width:750px;
margin:20px auto;
line-height:1.7;
color:#ccc;
font-size:16px;
}

.text-box{
max-width:780px;
margin:80px auto;
padding:50px;
text-align:center;
background:#121212;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.text-box h2{
color:#d4af37;
margin-bottom:25px;
}

.text-box p{
max-width:700px;
margin:20px auto;
line-height:1.7;
color:#ccc;
font-size:16px;
}

.seo-text{
max-width:1000px;
margin:80px auto 140px auto;  /* 👈 IMPORTANT (extra bottom space) */
padding:50px;
text-align:center;
background:#121212;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.hero h1{
margin-bottom:20px;
}

.hero p{
margin:10px auto;
line-height:1.6;
}


/* MOBILE */

@media(max-width:768px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:16px;
}

.hero{
height:70vh;
}


nav{
display:flex;
align-items:center;
flex-wrap:wrap;
gap:10px;
position:relative;
z-index:10000;
}

header{
padding:10px 20px;
}

nav a{
margin-left:15px;
}

.product-grid{
grid-template-columns:1fr;
}


.card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.4s;
}

.card:hover img{
transform:scale(1.08);
}


.card p{
padding:0 20px 20px;
color:#bbb;
font-size:14px;
}


.client-subtitle{
color:#bbb;
margin-bottom:30px;
}

.products,
.clients,
.about,
.contact,
.coverage,
.installations,
.trust{
max-width:1200px;
margin:auto;
}

.product-grid,
.client-grid,
.install-grid{
align-items:stretch;
}


header{
border-bottom:1px solid rgba(255,255,255,0.05);
}


section{
padding:80px 20px;
border-top:1px solid rgba(255,255,255,0.04);
}

h2{
font-size:32px;
color:#d4af37;
margin-bottom:20px;
}

p{
line-height:1.7;
color:#ccc;
}

.products,
.clients,
.about,
.contact,
.coverage,
.installations,
.trust,
.solutions{
max-width:1200px;
margin:auto;
}

.card p{
padding:0 20px 20px;
color:#bbb;
font-size:14px;
line-height:1.6;
}

.govt-installation{
text-align:center;
max-width:1000px;
margin:auto;
padding:80px 20px;
}

.govt-installation img{
width:100%;
max-width:750px;
border-radius:12px;
margin-top:25px;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}

.govt-installation p{
margin-top:25px;
color:#ccc;
line-height:1.7;
font-size:16px;
}

.about p{
max-width:900px;
margin:20px auto;
line-height:1.7;
color:#ccc;
font-size:16px;
}

.capabilities{
text-align:center;
max-width:1200px;
margin:auto;
}

.cap-sub{
max-width:800px;
margin:20px auto;
color:#bbb;
}

.cap-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
margin-top:40px;
}

.cap-card{
background:#1a1a1a;
border-radius:14px;
overflow:hidden;
transition:0.3s;
}

.cap-card img{
width:100%;
height:200px;
object-fit:cover;
display:block;
}

.cap-card h3{
color:#d4af37;
padding:15px;
}

.cap-card p{
padding:0 15px 20px;
font-size:14px;
color:#bbb;
line-height:1.6;
}

.cap-card:hover{
transform:translateY(-6px);
box-shadow:0 20px 40px rgba(0,0,0,0.6);
}

.cap-card h3{
color:#d4af37;
padding:15px 15px 5px;
font-size:18px;
}

.cap-card p{
padding:0 15px 20px;
font-size:14px;
line-height:1.6;
}


.solutions h2{
margin-bottom:30px;
}

.solutions p{
max-width:750px;
margin:20px auto;
line-height:1.7;
color:#ccc;
font-size:16px;
}

}