/* Reset */


/* Body */
.about-body {
    background:  #828385;
    color: #fff;
    overflow-x: hidden;
}

/* Container */
#about-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    text-align: center;
}

/* Content */
.about-content {
    max-width: 800px;
    background: rgba(0, 0, 0, 0.349);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
}

/* Titles */
.about-title {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-subtitle {
    font-size: 26px;
    margin: 20px 0 10px;
}

/* Text */
.about-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* List */
.about-list {
    list-style: none;
    margin-top: 15px;
}

.about-list li {
    margin: 8px 0;
}

/* Background Animation */
.about-bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

/* Common Shape */
.about-shape {
    position: absolute;
    display: block;
    animation: float 15s infinite linear;
    opacity: 0.8;
}

/* Cube */
.about-cube {
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    box-shadow: 0 0 15px currentColor;
}

/* Circle */
.about-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 20px currentColor;
}

/* Star */
.about-star {
    width: 0;
    height: 0;
    position: relative;
}

.about-star::before,
.about-star::after {
    content: '';
    position: absolute;
    left: 0;
}

.about-star::before {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 30px solid currentColor;
}

.about-star::after {
    top: 8px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 30px solid currentColor;
}

/* 🎨 Different Colors */
.about-shape:nth-child(1) { left: 10%; top: 90%; color: #ff4d4d; animation-duration: 18s; }
.about-shape:nth-child(2) { left: 30%; top: 100%; color: #00e6e6; animation-duration: 20s; }
.about-shape:nth-child(3) { left: 50%; top: 95%; color: #ffd11a; animation-duration: 22s; }
.about-shape:nth-child(4) { left: 70%; top: 100%; color: #66ff66; animation-duration: 17s; }
.about-shape:nth-child(5) { left: 85%; top: 90%; color: #ff66ff; animation-duration: 19s; }
.about-shape:nth-child(6) { left: 60%; top: 100%; color: #3399ff; animation-duration: 21s; }

/* Apply color */
.about-cube,
.about-circle {
    background: currentColor;
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-title {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-content {
        padding: 20px;
    }
}
.about-bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0; /* background ke liye peeche rakho */
    overflow: hidden;
}
footer {
    position: relative; /* ya sticky, ya fixed */
    z-index: 10; /* background se upar */
}
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5; /* footer se pehle, par background ke upar */
    display: none; /* sirf menu active hone par show karna */
}

#about-container{
padding:60px 20px;
background:#f9fbfd;
}

.about-content{
max-width:900px;
margin:auto;
text-align:center;
}

/* FOUNDER BOX */
.owner-box{
background:#fff;
padding:30px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
margin-bottom:40px;
}

/* IMAGE CENTER */
.owner-image{
flex:0 0 140px; /* fixed width */
display:flex;
justify-content:center;
align-items:center;
}

.owner-image img{
width:120px;
height:120px;
border-radius:50%;
object-fit:cover;
border:4px solid #eaf3ff;
}

/* MOBILE */
@media(max-width:768px){

.owner-image{
flex:0 0 auto;
}

.owner-image img{
width:100px;
height:100px;
}

}

/* DETAILS */
.owner-details h2{
color:#555;
margin-bottom:5px;
}

.owner-details h3{
color:#d60000;
margin-bottom:10px;
font-size:22px;
}

.owner-details p{
color:#555;
font-size:14px;
line-height:1.6;
margin-top:8px;
}

/* ABOUT TEXT */
.about-title{
font-size:30px;
margin-bottom:10px;
color:#d60000;
}

.about-subtitle{
margin-top:25px;
font-size:22px;
color:#222;
}

.about-text{
margin-top:10px;
color:#555;
line-height:1.6;
}

.about-list{
margin-top:10px;
text-align:left;
display:inline-block;
color:#333;
}

.contact-info{
margin-top:15px;
}

.contact-info p{
font-size:14px;
color:#333;
margin:6px 0;
display:flex;
align-items:center;
gap:8px;
}

.icon{
font-size:16px;
}