/* ================= GLOBAL ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    background: #05081c;
}

/* ================= HERO SECTION ================= */
.hero-main-section {
    width: 100%;
    height: 100vh;
    background-image: url("../images/hero-section_bg-blue_img.jpg");
    background-size: cover;
    background-position: center;
}

.hero-main-img-section {
    width: 100%;
    height: 100vh;
    display: flex;
    background-image: url("../images/abstract lines vector background design.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-main-section-transparents-div {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #15142692;
    position: relative; /* Added to keep absolute nav contained */
}

/* ================= HERO CONTENT ================= */
.hero-section-bottom {
    width: 100%;
    height: 100vh; /* Changed from 85vh to 100vh since nav is now absolute */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    color: white;
}

.hero-section-heading-section {
    text-align: center;
    font-size: 2.5rem;
}

.hero-section-para-section {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 100px;
}

.hero-section-explore-btn {
    font-size: 0.7rem;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 5px;
}

.hero-section-explore-btn a {
    color: white;
    text-decoration: none;
}

/* ================= TYPING EFFECT ================= */
.hero-section-heading-section .typed-text {
    font-weight: 600;
    color: #dd7732;
}

.hero-section-heading-section .cursor {
    display: inline-block;
    width: 3px;
    background-color: #ccc;
    margin-left: 3px;
    animation: blink 1s infinite;
}

@keyframes blink {
    50% { background-color: transparent; }
}

/* ================= RESPONSIVE (UI LOCKED) ================= */
/* Tablets & small laptops */
@media (max-width: 768px) {
    .hero-section-heading-section {
        font-size: 1.8rem;
    }

    .hero-section-para-section {
        font-size: 0.8rem;
        margin-bottom: 40px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-section-heading-section {
        font-size: 1.5rem;
    }
}

/* =========================
   WHO WE ARE SECTION
========================= */

.about-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, #0b0f2a, #0a0d22);
    color: #ffffff;
}

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

/* LEFT TEXT */
.about-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    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 {
    font-size: 1rem;
    line-height: 1.8;
    color: #dcdcdc;
    margin-top: 30px;
}

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

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

.about-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ffffff;
}

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

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-icon {
    font-size: 1.4rem;
    color: #dd7732;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* refined hover effect */
.about-card {
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(221, 119, 50, 0.15),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card:hover::before {
    opacity: 1;
}

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

.about-card:hover .about-icon {
    transform: scale(1.15);
}


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

    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

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


/* =========================
   OUR OFFERINGS SECTION
========================= */

.offerings-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #0a0d22, #070a1a);
    color: #ffffff;
}

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

.offerings-header {
    text-align: center;
    max-width: 650px;
    margin: auto;
    margin-bottom: 70px;
}

.offerings-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.offerings-header p {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
}

/* GRID */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.offering-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 35px 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
    opacity: 0;
    transform: translateY(40px);
}

.offering-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(221, 119, 50, 0.18),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
}

/* ICON */
.offering-icon {
    font-size: 1.8rem;
    color: #dd7732;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.offering-card:hover .offering-icon {
    transform: scale(1.15);
}

/* TEXT */
.offering-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.offering-card ul {
    list-style: none;
}

.offering-card ul li {
    font-size: 0.9rem;
    color: #d4d4d4;
    margin-bottom: 8px;
    position: relative;
    padding-left: 14px;
}

.offering-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #dd7732;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .offerings-grid {
        grid-template-columns: 1fr;
    }
}



/* =========================
   WHY POTENT SECTION
========================= */

.why-potent-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #070a1a, #0a0d22);
    color: #ffffff;
}

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

/* HEADER */
.why-potent-header {
    max-width: 750px;
    margin-bottom: 60px;
}

.why-potent-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.why-potent-header p {
    font-size: 1rem;
    color: #cfcfcf;
    line-height: 1.7;
}

/* POINTS */
.why-potent-points {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.why-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.45s ease;
}

.why-point:hover {
    background: rgba(255, 255, 255, 0.08);
}

.check {
    color: #dd7732;
    font-size: 1.2rem;
    line-height: 1.2;
}

.why-point p {
    font-size: 0.95rem;
    color: #e0e0e0;
    line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
    .why-potent-container {
        width: 90%;
    }
}





/* trust section
*/

.trusted-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a0d22, #070a1a);
    color: #ffffff;
}

.trusted-container {
    width: 85%;
    margin: auto;
    text-align: center;
}

.trusted-heading {
    font-size: 2.8rem;
    font-weight: 700;
}

.trusted-title {
    margin-top: 10px;
    margin-bottom: 60px;
    font-size: 1.2rem;
    line-height: 1.6;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 40px 50px;
    align-items: center;
}

.trusted-logos img {
    max-width: 140px;
    margin: auto;
    border-radius: 5px;
}

.trusted-logos img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}



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

/* soft glow */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 10%, rgba(120,90,255,0.18), transparent 40%),
}

.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);
}

.footer-iso-img {
    display: flex;
    align-items: center;
    gap: 10px;
    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;
    border-radius: 20px;
    margin-top: 15px;
    padding: 10px 5px;
}

.footer-iso-img img {
    max-width: 70px;
    border-radius: 50%;
}

.footer-iso-img:not(.brand):hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 70px 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;
    }
}