* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;

}

body {
    background: rgb(36, 41, 45);
    color: white;
    line-height: 1.5;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    background: radial-gradient(circle at top right,
            rgba(91, 139, 255, 0.15),
            transparent 60%);

    padding: 40px 20px;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #5b8bff, #9d5bff, #ffad3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.hero-text {
    margin-top: 20px;
    font-size: 1rem;
    color: #b0b0b0;
    letter-spacing: 0.6px;
}

/* --- Instagram "Pill" Link Styling --- */
.instagram-pill {
    display: flex;
    margin: 10px auto;
    max-width: fit-content;
    align-items: center;
    align-self: center;
    gap: 10px;
    text-decoration: none;
    /* Subtle dark background pill */
    /* background: rgba(255, 255, 255, 0.05); */
    padding: 10px 24px 10px 20px;
    border-radius: 30px;
    /* Makes it pill-shaped */
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    /* Optional frosted glass effect */

    border-color: rgba(187, 187, 187, 0.05);

    background: rgba(177, 177, 177, 0.08);
    /* transform: translateY(-2px); */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.instagram-pill img {
    height: 24px;
    width: 24px;
    opacity: 0.7;
    /* Slightly muted initially */
    transition: 0.3s ease;
}

.instagram-pill span {
    font-family: 'Anton', sans-serif;
    /* Assuming you have this loaded */
    font-size: 18px;
    letter-spacing: 1px;
    color: #bcbcbc;
    transition: 0.3s ease;
}

/* Hover Effects for the Pill */
.instagram-pill:hover {
    /* Glow effect using the accent color */
    border-color: rgba(187, 187, 187, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.instagram-pill:hover img {
    opacity: 1;
    /* Optional: filter the icon to the accent color if it's a white icon */
    /* filter: sepia(1) saturate(5) hue-rotate(5deg); */
}

.instagram-pill:hover span {
    color: white;
    /* Text turns bright white */
}



/* Scroll Indicator */
.scroll-indicator {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
}

.scroll-indicator span {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b0b0b0;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    animation: scrollMove 1.8s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(15px);
        opacity: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }
}



.section-title {
    position: relative;
    text-align: center;
    font-size: 2.2rem;
    /* Using the theme gradient for text color */
    /* background: linear-gradient(135deg, #5b8bff, #9d5bff, #ffad3b); */
    background: linear-gradient(90deg, #5b8bff 10%, #9d5bff, #ffad3b 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    width: 100%;
    /* color: linear-gradient(45deg, #5b8bff, #9d5bff, #ffad3b); */
    /* margin-top: 200px; */
    margin-bottom: 20px;

}


.what-we-do-text {
    padding: 0px 10px;

    max-width: 800px;
    /* margin: 14px auto 80px auto; */
    margin: 30px auto;

    text-align: left;

    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0.4px;

    /* color: #b0b0b0; */
    color: #e2e2e2;
    /* color: #dedede; */

    opacity: 0.9;

}


/* ------------------------- SECTION TWO ------------------------- */
.section-two {
    max-width: 900px;
    margin: 20px auto;
    padding: 0px 30px;
    /* smaller padding */

    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    /* smaller gap */

    background: none;
    /* background-color: rgb(255, 255, 255); */

    border-radius: 16px;
    /* ----------------- ( Updates) ---------------- */
}

/* SERVICE LIST - Bullet Notes */
.service-list {
    /* Prevent centering */
    margin: auto;
    list-style: disc;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-list li {
    font-size: 15px;
    color: #b0b0b0;
    padding: 2px 0;
    transition: 0.3s;
    text-align: left;
    /* Explicit left text */
}

.service-list li:hover {
    color: #ffad29;
    transform: translateY(-2px);
}

/* BIG CARDS WRAPPER */
.big-cards {
    margin: auto;
    height: max-content;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    flex-direction: row;
    gap: 18px;
    /* smaller spacing */
    flex-wrap: wrap;
    flex-wrap: nowrap;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.22);
    background: linear-gradient(135deg, #5b8bff, #9d5bff, #ffad3b);

}

/* BIG CARDS - Gradient Cards */
.big-card {
    width: 170px;
    width: 170px;
    height: 170px;
    /* shortened height */
    padding: 18px 12px;
    /* tighter spacing */
    border-radius: 16px;
    text-align: center;
    color: white;
    background-color: #ffffff30;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.big-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.big-card img {
    /* width: 28px; */
    width: 60px;
    margin-bottom: 20px;
    /* reduced spacing */
    /* background-color: rgb(80, 80, 80); */
}

.Contect-Us img {
    width: 80px;
    margin-top: -10px;
    margin-bottom: 20px;
    /* reduced spacing */
}

.big-card h4 {
    font-size: 16px;
    /* slightly smaller text */
    margin: 0;
}

/* ------------------------- SECTION THREE ------------------------- */
.section-three {
    max-width: 900px;
    /* max-width: 850px; */
    height: 410px;
    border-radius: 10px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #d2dfff, #e8d8fe, #fbefc9);
    border-radius: 12px;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.section-three h2 {
    color: #767676;
    margin-bottom: 20px;
}

.image-row {
    display: flex;
    gap: 20px;
    justify-content: center;

}

.image-row img {
    width: 170px;
    object-fit: cover;
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 10px 10px 10px rgb(0, 0, 0, .2);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.image-row img:hover {
    transform: scale(1.03);
}


/* Add to style.css */
.cta-btn h3 .fas,
.cta-card h3 .fas {
    margin-right: 8px;
}



@media (max-width: 800px) {
    .what-we-do-text {
        font-size: 14px;
        line-height: 1.65;
        padding: 0 16px;
        max-width: 600px;
        /* padding: 0px 40px; */
        /* max-width: 650px; */
        margin: 14px auto;
        /* margin: 14px ; */
    }

    .section-three {
        max-width: 700px;
        max-height: 350px;
    }

    .image-row img {
        width: 140px;
        object-fit: cover;
    }


    .service-list {
        display: grid;
        grid-template-columns: repeat(3, 2fr);

        gap: 16px;
        padding: 20px;
        list-style: none;
    }

    .service-list li {
        display: flex;
        align-items: center;
        justify-content: center;

        text-align: center;
        padding: 14px 10px;

        background: rgba(255, 255, 255, 0.04);
        border-radius: 14px;

        font-size: 14px;
        color: #b0b0b0;

        cursor: pointer;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;

        transition: 0.25s ease;
    }

    .service-list li:hover,
    .service-list li.active {
        color: #ffad29;
        /* background: rgba(255, 173, 41, 0.12); */
        background: rgba(255, 220, 163, 0.12);
        transform: translateY(-2px);
    }

    .section-two {
        flex-direction: column;
        flex-direction: column-reverse;
    }

    .big-cards {
        margin: 0px auto;
        height: max-content;
        max-width: 500px;
    }


    .section-title {
        /* margin-top: 50px; */
        margin-bottom: 20px;

    }


}


















/* ================= ABOUT FOUNDER ================= */
.about-ceo-section {
    /* max-width: 1100px; */
    width: auto;
    /* height: 100vw; */

    margin: 20vh auto;
    padding: 30px;
    background-color: whitesmoke;
}

.about-ceo-inner {
    /* background-color: red; */
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    display: flex;
    gap: 60px;
    align-items: center;

}

.ceo-image-wrap {
    flex: 1;
    align-items: center;
}

.ceo-image-wrap img {
    box-shadow: 0 10px 25px rgba(33, 33, 33, 0.4);
    /* background-color: #1e2228; */
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
}

.ceo-image-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #2b2f36, #1e2228);
    border-radius: 18px;
}

.ceo-message-block {
    flex: 1.3;
    align-items: center;
    justify-content: center;
}

.ceo-quote {
    /* color: #b0b0b0; */
    color: #606060;
    font-size: 15px;
    line-height: 1.7;
    margin: 30px auto;
    /* border-left: 3px solid #5b8bff; */
    /* padding-left: 20px; */
}

.ceo-signature { 
    width: auto;
    margin-left: 40%;

    font-size: 14px;
    color: #ffad3b;
    letter-spacing: 0.05em;
}


/* ================= TEAM ================= */
/* height:60vw; */
.team-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 50px 30px 100px 30px;
    text-align: center;
}

.section-subtitle {
    color: #9b9b9b;
    font-size: 14px;
    max-width: 600px;
    margin: 15px auto 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 30px 25px;
    text-align: left;
}

.card-image-placeholder {
    width: 100%;
    min-width: 200px;
    max-height: 200px;
    aspect-ratio: 4 / 5;
    /* Cinematic portrait ratio */
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 20px;
    display: block;
    background-color: #1f2328;
}

.team-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: #b0b0b0;
}

.team-card img {
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.team-card:hover img {
    transform: scale(1.02);
    opacity: 0.96;
}

@media (max-width: 900px) {

    .team-grid {
        grid-template-columns: repeat(2, 2fr);

        /* grid-template-columns: 1fr; */
        justify-items: center;
        /* Center cards horizontally */
    }
 
   .ceo-signature { 
        margin-left: 45%;
   }

    .team-card {
        max-width: 320px;
        width: 100%;
        text-align: center;
    }

    .card-image {
        max-height: 180px;
    }

    .card-image-placeholder {
        width: 100%;
        aspect-ratio: 1 / 1;
        max-height: 180px;
        margin: 0 auto 16px;
        /* Center image inside card */
        object-fit: cover;
    }

    .team-card h3 {
        font-size: 15px;
    }

    .team-card p {
        font-size: 13px;
    }

}

/* ================= CTA ================= */
.main-cta-block {
    max-width: 1100px;
    margin: 120px auto;
    padding: 0 30px;
}

.cta-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 30px;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-card.active {
    background: linear-gradient(135deg, #5b8bff, #9d5bff);
}

.card-subtitle {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffad3b;
}

.cta-card h3 {
    margin: 10px 0;
}

.cta-card p {
    font-size: 14px;
    color: #d0d0d0;
}


/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .about-ceo-inner {
        flex-direction: column-reverse;
    }

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