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

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

/* HERO */
.services-hero {
    height: 60vh;
    position: relative;
    background: radial-gradient(circle at top right, #2b2f6f, #05081c 70%);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

.services-hero h1 {
    padding-top: 100px;
    font-size: 4rem;
    z-index: 2;
}

.services-hero p {
    z-index: 2;
    margin-top: 12px;
    color: #cfd3ff;
}

/* SECTION */
.services-section {
    padding: 100px 0;
}

.services-container {
    width: 80%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.services-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.services-text p {
    color: #dcdcdc;
    line-height: 1.8;
}

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

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

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

.service-card i {
    font-size: 1.5rem;
    color: #dd7732;
    margin-bottom: 12px;
}

/* HIGHLIGHT */
.services-highlight {
    padding: 90px 0;
    background: #05081c;
    text-align: center;
}

.highlight-container {
    width: 80%;
    margin: auto;
}

.highlight-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.highlight-card {
    background: rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
    .services-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }
}




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

/* soft glow */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #05081c, #0b0f2b);
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding: 55px;
    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;
}


/* ===== BRAND ===== */
.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);
}

/* ===== COLUMN CARDS ===== */
.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);
}

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

/* ===== LISTS ===== */
.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;
}

/* links */
.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%;
}

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

/* ===== BOTTOM BAR ===== */
.footer-bottom {
    margin-top: 45px;
    text-align: center;
    padding: 22px 10px;
    font-size: 0.75rem;
    opacity: 0.6;
    color: #c7caff;
}

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

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 35px 25px;
        text-align: center;
    }

    .footer-col ul li {
        justify-content: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
}


