/* Pentara Capital main CSS file */ 

@import url(reset.css);

/* Start of styles from Ashia's Model (version 3) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --generaltext: rgba(26,26,46);
    --shadow: rgba(0,0,0,0.08);
    --orangeshadow: rgba(232,165,71,0.4);
    --light: rgba(248,249,250);
    --blue1: rgba(43,87,117);
    --blue2: rgba(84,118,147);
    --blue3: rgba(225,238,249);
    --gray1: rgba(108,117,125);
    --gray2: rgba(113,109,108);
    --gray3: rgb(209, 205, 204);
    --orange1: rgba(237,168,101);
    --red1: rgba(159,58,13);
    --lighttransp: rgba(255, 255, 255, 0.9);
    --blue1transp: rgba(43,87,117,0.7);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    line-height: 1.6;
    color: var(--generaltext);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--light);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 25px;
    box-shadow: 0 2px 20px var(--shadow);
}

.nav-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 100px;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray1);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--orange1);
}

.nav-contact-button {
}

    .cta-btn {
        background: var(--red1)!important;
        color: white!important;
        padding: 0.8rem 2rem;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s;
    }

        .cta-btn:hover {
            background: var(--orange1);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--orangeshadow);
        }

/* Hero with Background Image */
.hero {
    margin-top: 80px;
    padding: 50px 0;
    background: linear-gradient(var(--blue1), #000),url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1600" height="900"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230f4c75"/><stop offset="100%" style="stop-color:%231a1a2e"/></linearGradient></defs><rect width="1600" height="900" fill="url(%23g)"/><g opacity="0.1"><path d="M0,300 Q400,200 800,300 T1600,300 L1600,900 L0,900 Z" fill="%23fff"/></g><g opacity="0.05"><circle cx="200" cy="200" r="150" fill="%23fff"/><circle cx="1400" cy="600" r="200" fill="%23fff"/></g></svg>') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}

    .hero-content {
        max-width: 1200px;
        padding: 70px 0 70px 0;
        position: relative;
        z-index: 2;
    }

        .hero h1 {
            font-size: clamp(3rem, 7vw, 5.1rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -2px;
        }

        .hero-tagline {
            font-size: clamp(1.3rem, 2.5vw, 2rem);
            margin-bottom: 3rem;
            padding: 0 20px;
            opacity: 0.95;
            font-weight: 300;
        }

/* Section with Image Background */
.section-with-bg {
    position: relative;
    padding: 8rem 5%;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.section-with-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--lighttransp);
}

.section-with-bg .content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Who We Are */
.who-we-are {
    background-image: url('images/AdobeStock_1096394290.jpg');
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin: 10px 0 50px 0;
}

    .pillar {
        border-left: 3px solid var(--orange1);
        padding-left: 2rem;
    }

    .pillar h3 {
        font-size: 1.5rem;
        color: var(--blue1);
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .pillar p {
        color: var(--gray1);
        line-height: 30px;
        font-size: 1.1rem;
    }

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--orange1);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--generaltext);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--gray1);
    max-width: 800px;
    margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border-top: 4px solid var(--orange1);
}

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

.card h3 {
    font-size: 2rem;
    color: var(--blue1);
    margin-bottom: 1.5rem;
}

.card p {
    color: var(--gray1);
    line-height: 1.9;
    font-size: 1.1rem;
}

/* Differentiation Grid */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.diff-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.diff-card:hover {
    background: var(--blue3);
    color: white;
    transform: translateY(-5px);
}

.diff-card:hover h4 {
    color: var(--orange1);
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    min-height: 135px;
}

    .diff-icon img {
        width: 100px;
    }

.diff-card h4 {
    font-size: 1.3rem;
    color: var(--generaltext);
    font-weight: 700;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    height: 70px;
}

.diff-card p {
    color: var(--gray1);
    font-size: 0.95rem;
}

.diff-card:hover p {
    color: var(--orange1);
}

/* What We Do */
.what-we-do {
    background-image: url('images/AdobeStock_134071545.jpg');
}

.features-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.feature-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue1);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--orange1);
}

.feature-box p,
.feature-box ul li {
    color: var(--gray2);
}

.feature-box p {
    line-height: 32px;
}

.feature-box ul {
    list-style: none;
}

.feature-box ul li {
    padding: 1rem 0;
    color: var(--gray2);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.feature-box ul li:last-child {
    border-bottom: none;
}

.feature-box ul li::before {
    content: '✓';
    color: var(--orange1);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Image Banner */
.image-banner {
    background-image: url('images/AdobeStock_289316298.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.image-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--blue1transp);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 55px 5%;
}

.banner-content h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 75px;
}

.banner-content p {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.8;
    opacity: 0.95;
}

/* Why Now */
.why-now {
    background-image: url('images/AdobeStock_361431317.jpg');
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

.why-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.why-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue1);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--orange1);
}

.why-item {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--orange1);
}

.why-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--generaltext);
    margin-bottom: 0.8rem;
}

.why-item p {
    color: var(--gray2);
    line-height: 1.8;
}

/* Approach */
.approach {
    background-image: url('images/AdobeStock_84839421.jpg');
}

.approach-grid {
    display: grid;
    gap: 3rem;
    margin-top: 4rem;
}

.approach-step {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    align-items: center;
    transition: all 0.3s;
}

.approach-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.step-number {
    width: 100px;
    height: 100px;
    background: var(--red1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto;
}

.step-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue1);
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--gray2);
    line-height: 1.9;
    font-size: 1.1rem;
}

.responsible-box {
    background: linear-gradient(135deg, var(--blue1), #000);
    color: white;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    margin-top: 5rem;
}

.responsible-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--orange1);
    margin-bottom: 1.5rem;
}

.responsible-box p {
    font-size: 1.2rem;
    line-height: 1.9;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
}

.responsible-box-link {
    margin-top: 20px;
    font-style: italic;
}

    .responsible-box-link a {
        color: white;
    }

/* Team */
.team {
    background: var(--light);
    padding: 8rem 5%;
}

.team-section {
    max-width: 1400px;
    margin: 0 auto;
}

.team-category {
    margin-bottom: 5rem;
}

.team-category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--generaltext);
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--orange1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--orange1);
}

    .team-photo img {
        width: 100%;
    }

.team-name {
    font-size: 1.5rem;
    color: var(--gray2);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    color: var(--orange1);
    font-weight: 600;
    font-size: 1.05rem;
    min-height: 60px;
}

.team-linked-in-button {
    margin-top: 5px;
}

    .team-linked-in-button a {
        color: white;
    }

/* Bio */
.bio-body {
    background: var(--light);
    padding: 10px 50px 50px 35px;
}

    .bio-container {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 20px;
        margin: 0 auto;
        max-width: 1400px;
        padding: 200px 50px 50px 35px;
    }

        .bio-photo-box {
            width: 250px;
            height: 250px;
            border: 2px solid var(--orange1);
            border-radius: 50%;
        }

            .bio-photo-box img {
                width: 100%;
            }

        .bio-info-box {
            max-width: 75%;
        }

            .bio-name-box {
            }

                .bio-name-box h1 {
                    font-size: 2.5rem;
                    font-weight: 700;
                }

            .bio-position-box {
                font-size: 1.5rem;
                color: var(--gray2);
                font-style: italic;
                margin-bottom: 10px;
            }

            .bio-main-text-box {
                line-height: 23px;
            }

                .bio-main-text-box p {
                    margin-bottom: 10px;
                    line-height: 30px;
                    font-size: 1.25rem;
                }

/* Contact */
.contact {
    background: linear-gradient(135deg, var(--blue1), #000);
    padding: 8rem 5%;
    color: white;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--orange1);
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-details {
    margin-top: 3rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail a {
    color: white;
}

.contact-detail h4 {
    font-size: 0.9rem;
    color: var(--orange1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
    margin: 0;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(232, 165, 71);
    border-radius: 50%;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    margin-top: 1rem;
}

.social-link:hover {
    background: var(--orange1);
    color: white;
    transform: scale(1.1);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--generaltext);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray3);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    width: 100%;
    background: var(--orange1);
    color: white;
    padding: 1.2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

    .submit-button:hover {
        background: var(--orange1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(232, 165, 71, 0.4);
    }

/* Foot */
footer {
    background: var(--gray1);
    color: white;
    padding: 3rem 5%;
    text-align: center;
}

    footer p {
        opacity: 0.7;
        margin-bottom: 0.5rem;
    }

    footer a {
        color: var(--orange1);
        text-decoration: none;
        margin: 0 1rem;
        transition: opacity 0.3s;
    }

    footer a:hover {
        opacity: 0.8;
    }

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 580px) {
    .nav-links {
        gap: 0 22px;
    }
}

@media (max-width: 635px) {
    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-with-bg,
    .team,
    .contact {
        padding: 15rem 5%;
    }
}

@media (max-width: 827px) {
    .nav-contact-button {
        margin-top: 25px;
    }
}

@media (min-width: 636px) AND (max-width: 830px){
    .hero-content {
        padding: 170px 0 70px 0;
    }    
}

@media (max-width: 1024px) {
    .why-grid,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .approach-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Success */
.contact-success-body {
    width: 95%;
    margin: 200px 0 100px 0;
}

    .contact-success-body-container {
        width: 85%;
        margin: 30px auto 30px auto;
        padding: 10px;
        text-align: center;
        border: 2px solid var(--orange1);
    }

        .contact-success-body-container p {
            font-size: 1.73rem;
            color: var(--blue1);
        }

/* Contact List */
.contact-list-container {
    width: 95%;
    margin: 200px auto 100px auto;
}

    .contact-list-title {
        text-align: center;
        margin: 30px 0 30px 0;
        font-weight: bold;
        font-size: 2rem;
    }

/* Datatables */
.buttons-excel {
    margin-left: 20px;
}
/* End of styles from Ashia's Model (version 3) */

/* Splash Page */
.splash-container {
    background: radial-gradient(var(--blue1), #000);
}

    .splash-header {
        background-color: var(--light);
    }
    
        .splash-logo-box {
            margin: 0 auto;
            background-color: var(--light);
        }
            
    .splash-body {
        height: 100vh;
    }

        .splash-text-box {
            position: relative;
            top: 30%;
            width: 90%;
            margin: 0 auto;
            text-align: center;
        }

            .splash-text-box p {
                color: #fff;
                font-size: 3rem;
            }

    /* Splash responsive for the logo box */
    @media (max-width: 874px) {
        .splash-logo-box {
            width: 80%;
        }
    }

    @media (min-width: 875px) AND (max-width: 1039px) {
        .splash-logo-box {
            width: 65%;
        }
    }
    
    @media (min-width: 1040px) AND (max-width: 1324px) {
        .splash-logo-box {
            width: 55%;
        }
    }
    
    @media (min-width: 1325px){
        .splash-logo-box {
            width: 40%;
        }
    }

    /* Splash responsive for the text box */
    @media (max-width: 564px) {
        .splash-text-box p {
            font-size: 2rem;
        }
    }
    
    @media (min-width: 565px) AND (max-width: 739px) {
        .splash-text-box p {
            font-size: 2.3rem;
        }
    }