.about-hero{
background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
color:white;
padding:80px 20px;   /* पहले 140px था */
text-align:center;
position:relative;
overflow:hidden;
}

/* animated glow background */

.about-hero::before{
content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background: radial-gradient(circle,rgba(255,255,255,0.1),transparent);
animation: rotateGlow 12s linear infinite;
}

@keyframes rotateGlow{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

/* heading animation */

.about-hero h1{
font-size:48px;
font-weight:700;
animation: slideDown 1s ease;
}

.about-hero p{
font-size:22px;
opacity:0.9;
margin-top:10px;
animation: fadeUp 1.5s ease;
}
.about-card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
height:100%;
display:flex;
align-items:center;
}

/* animations */

@keyframes slideDown{
0%{
opacity:0;
transform:translateY(-40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}

@keyframes fadeUp{
0%{
opacity:0;
transform:translateY(40px);
}
100%{
opacity:1;
transform:translateY(0);
}
}
/* ABOUT SECTION */

.about-section{
background:#f2f4f7;
padding:70px 0;
}

/* text box */

.about-box{
background:white;
padding:40px;
border-radius:12px;
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

/* hover effect */

.about-box:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}

/* image */

.about-image img{
width:100%;
border-radius:12px;
box-shadow:0 12px 25px rgba(0,0,0,0.2);
transition:0.4s;
}

/* image hover zoom */

.about-image img:hover{
transform:scale(1.05);
}

.about-img{
width:100%;
height:420px;
object-fit:cover;
border-radius:12px;
}

/* hover effect */

.about-img:hover{
transform:scale(1.05);
box-shadow:0 20px 40px rgba(0,0,0,0.3);
}
.site-footer{

background:#111;

color:#ddd;

padding:70px 0 20px;

margin-top:80px;

position:relative;

overflow:hidden;

}

/* container */

.footer-container{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

gap:40px;

padding:0 20px;

}

/* logo */

.footer-logo{

height:60px;

margin-bottom:15px;

}

/* text */

.footer-desc{

font-size:14px;

line-height:1.7;

color:#bbb;

}

/* headings */

.footer-col h3{

color:white;

margin-bottom:20px;

font-size:20px;

position:relative;

}

/* underline animation */

.footer-col h3::after{

content:"";

width:40px;

height:3px;

background:#e31b23;

position:absolute;

left:0;

bottom:-8px;

}

/* list */

.footer-col ul{

list-style:none;

padding:0;

}

.footer-col ul li{

margin-bottom:10px;

font-size:14px;

}

/* links */

.footer-col ul li a{

color:#bbb;

text-decoration:none;

transition:.3s;

}

.footer-col ul li a:hover{

color:#e31b23;

padding-left:5px;

}

/* social icons */

.social-icons{

margin-top:20px;

}

.social-icons a{

display:inline-block;

width:40px;

height:40px;

line-height:40px;

text-align:center;

border-radius:50%;

background:#222;

color:white;

margin-right:10px;

transition:.3s;

}

.social-icons a:hover{

background:#e31b23;

transform:translateY(-4px);

}

/* bottom */

.footer-bottom{

text-align:center;

border-top:1px solid #333;

margin-top:40px;

padding-top:15px;

font-size:14px;

color:#aaa;

}

/* responsive */

@media(max-width:768px){

.site-footer{

text-align:center;

}

.footer-col h3::after{

left:50%;

transform:translateX(-50%);

}
}



