* {
    box-sizing: border-box;
    font-family: "Noto Sans Devanagari", sans-serif;
}

body {
    margin: 0;
    background: #05081c;
    color: #ffffff;
}

/* ===== HERO ===== */
.about-hero {
    position: relative;
    background: radial-gradient(circle at top right, #2b2f6f, #05081c 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60vh;
    padding: 80px 20px 40px;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background-image: url("../images/abstract lines vector background design.png");
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.about-hero h1 {
    position: relative;
    z-index: 2;
    font-size: clamp(2.5rem, 8vw, 4rem);
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-hero p {
    position: relative;
    z-index: 2;
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #cfd3ff;
    max-width: 600px;
}

/* ===== WHO WE ARE ===== */
.about-section {
    padding: 80px 0;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 25px;
    position: relative;
}

.about-text h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #dd7732;
    position: absolute;
    left: 0;
    bottom: -10px;
    border-radius: 10px;
}

.about-text p {
    color: #dcdcdc;
    line-height: 1.8;
    margin-top: 30px;
    font-size: clamp(0.95rem, 1.8vw, 1.05rem);
}

/* Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

.about-icon {
    font-size: 1.4rem;
    color: #dd7732;
    margin-bottom: 12px;
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.about-card p {
    font-size: 0.9rem;
    color: #d0d4ff;
    line-height: 1.6;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* ===== GLOBE ===== */
.about-globe {
    text-align: center;
    padding: 40px 20px 60px;
    background-color: #05081c;
    overflow: hidden;
}

.globe-container {
    width: 90%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.globe-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
}

.globe-text p {
    max-width: 700px;
    margin: 0 auto;
    color: #cfd3ff;
    font-size: 1rem;
    line-height: 1.7;
}

.globe-visual {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.globe-visual img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.6));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ===== FOOTER ===== */
.footer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: linear-gradient(180deg, #05081c, #0b0f2b);
    position: relative;
    overflow: hidden;
    padding: 60px 20px 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 30px;
    padding: 45px 40px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 40px 120px rgba(0,0,0,0.45);
    color: #dce0ff;
    width: 90%;
}

.footer-col.brand p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 420px;
}

.footer-logo {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: #ffffff url("../images/POTENT-LOGO.png") center/70% no-repeat;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}

.footer-col:not(.brand) {
    padding: 28px 26px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-col:not(.brand):hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.45);
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 22px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 14px;
    font-size: 0.88rem;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-col ul li a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.25s ease;
}

.footer-col ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #ff9f5a;
    transition: width 0.25s ease;
}

.footer-col ul li a:hover {
    color: #ff9f5a;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-contact li i {
    color: #ff9f5a;
    font-size: 0.95rem;
    min-width: 18px;
}

.footer-bottom {
    margin-top: 45px;
    text-align: center;
    padding: 22px 10px;
    font-size: 0.75rem;
    opacity: 0.6;
    color: #c7caff;
    width: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 35px 30px;
    }
}

@media (max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .about-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .globe-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 50vh;
        padding: 60px 15px 30px;
    }
    .about-section {
        padding: 60px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        text-align: center;
    }
    .footer-col ul li {
        justify-content: center;
    }
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col:not(.brand) {
        padding: 20px;
    }
}