﻿:root {
    --pink: #E86BA3;
    --purple: #7A6AF2;
    --gradient: linear-gradient(135deg, #E86BA3, #7A6AF2);
    --bg-light: #F8F8FA;
    --text-dark: #1F1F1F;
    --text-muted: #6B6B6B;
}



body {
    font-family: 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    padding-top: 90px;
}
/*================Navbar================*/

/*.custom-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    padding: 18px 0;
}*/
.brand-logo {
    height: 50px;
    width: auto;
}

.custom-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 22px;
    font-weight: 700;
}

.brand-dot {
    height: 10px;
    width: 10px;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(135deg, #E86BA3, #7A6AF2) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(122,106,242,0.35);
    }

/* Nav links */
.nav-link {
    font-weight: 500;
    margin-right: 15px;
}

    .nav-link:hover {
        color: var(--purple) !important;
    }

    .nav-link.active {
        color: var(--purple) !important;
        font-weight: 600;
    }

        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -4px;
            width: 100%;
            height: 2px;
            background: var(--gradient);
            border-radius: 2px;
        }
/*================Footer================*/
.footer-section {
    background: #ffffff;
    color: var(--text-muted);
    padding: 70px 0 30px 0;
    /*margin-top: 80px;*/
    border-top: 1px solid rgba(0,0,0,0.05);
}

.footer-logo {
    height: 45px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        text-decoration: none;
        color: #CBD5E1;
        font-size: 14px;
        transition: 0.3s;
    }

        .footer-links a:hover {
            color: var(--purple);
        }

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0 15px 0; /* reduced from 40/20 */
}

.footer-bottom {
    font-size: 13px;
    color: #94A3B8;
}

@media (max-width: 768px) {

    .footer-section {
        padding: 40px 0 20px 0;
    }

        .footer-section .col-md-6,
        .footer-section .col-lg-3,
        .footer-section .col-lg-4,
        .footer-section .col-lg-2 {
            margin-bottom: 20px;
        }

    .footer-heading {
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 6px;
    }

    .social-icons {
        margin-top: 10px;
    }
}

.social-icons a {
    color: #CBD5E1;
    font-size: 18px;
    margin: 0 10px;
    transition: 0.3s ease;
}

    .social-icons a:hover {
        color: #2563EB;
        transform: translateY(-3px);
    }


.w-md-auto {
    width: auto !important;
}


/* ================= HERO SECTION ================= */

.hero-section {
    padding: 140px 0 120px 0;
    background: #F8F8FA;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #1F1F1F;
}

.highlight-text {
    background: linear-gradient(135deg, #E86BA3, #7A6AF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 18px;
    color: #6B6B6B;
    max-width: 520px;
    line-height: 1.7;
}

.hero-image {
    max-width: 90%;
    filter: drop-shadow(0 20px 40px rgba(122,106,242,0.15));
}

.btn-outline-light {
    border: 1px solid #E5E5E5;
    color: #1F1F1F;
    background: #ffffff;
    border-radius: 30px;
    transition: 0.3s ease;
}

    .btn-outline-light:hover {
        border-color: #7A6AF2;
        color: #7A6AF2;
    }

/* ================= SERVICES ================= */

.services-section {
    padding: 110px 0;
    background: #ffffff;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto;
    font-size: 17px;
}

/* Card */
.service-card {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.04);
}

    /* Subtle Hover */
    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(122,106,242,0.12);
        border-color: rgba(122,106,242,0.2);
    }

/* Icon Wrapper */
.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #E86BA3, #7A6AF2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.3s ease;
}

    .service-icon-wrapper i {
        font-size: 26px;
        color: #ffffff;
    }

/* Title */
.service-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #1F1F1F;
}

/* Description */
.service-card p {
    color: #6B6B6B;
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }

    .section-title {
        font-size: 30px;
    }
}

/* ================= STATS ================= */

.stats-section {
    padding: 110px 0;
    background: #ffffff;
    /*background: #F8F8FA;*/
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #E86BA3, #7A6AF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    color: #6B6B6B;
    font-size: 15px;
    margin: 0;
}

/* Subtle Divider Lines */
@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 50%;
        width: 1px;
        background: rgba(0,0,0,0.06);
    }
}
/* ================= PROCESS (TIMELINE STYLE) ================= */

.process-section {
    padding: 120px 0;
    background: #ffffff;
}

.process-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 60px;
}

    /* Horizontal Line */
    .process-timeline::before {
        content: "";
        position: absolute;
        top: 25px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #E86BA3, #7A6AF2);
        opacity: 0.3;
    }

/* Step */
.process-step {
    text-align: center;
    position: relative;
    flex: 1;
}

/* Circle */
.circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #E86BA3, #7A6AF2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Title */
.process-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1F1F1F;
}

/* Description */
.process-step p {
    color: #6B6B6B;
    font-size: 15px;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* Mobile */
@media (max-width: 992px) {
    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

        .process-timeline::before {
            display: none;
        }

    .process-step {
        margin-bottom: 40px;
    }
}
/* ================= PORTFOLIO ================= */

.portfolio-section {
    padding: 120px 0;
    background: #ffffff;
}

/* Card */
.portfolio-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.04);
    box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

    /* Hover */
    .portfolio-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(122,106,242,0.12);
        border-color: rgba(122,106,242,0.2);
    }

/* Image */
.portfolio-image {
    overflow: hidden;
}

    .portfolio-image img {
        width: 100%;
        transition: 0.4s ease;
    }

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.04);
}

/* Content */
.portfolio-content {
    padding: 30px;
}

    .portfolio-content h5 {
        font-weight: 600;
        margin-bottom: 12px;
        color: #1F1F1F;
    }

    .portfolio-content p {
        color: #6B6B6B;
        font-size: 14px;
        line-height: 1.6;
    }

/* Tech Stack */
.tech-stack {
    margin: 15px 0;
}

    .tech-stack span {
        display: inline-block;
        background: rgba(122,106,242,0.08);
        color: #7A6AF2;
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 12px;
        margin-right: 6px;
        margin-bottom: 6px;
        font-weight: 500;
    }

/* Link */
.portfolio-link {
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #E86BA3, #7A6AF2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.3s ease;
}

    .portfolio-link:hover {
        letter-spacing: 0.5px;
    }


/* ================= CTA ================= */

.cta-section {
    padding: 120px 0;
    background: #F8F8FA;
    border-top: 1px solid rgba(0,0,0,0.04);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1F1F1F;
}

.cta-subtext {
    font-size: 17px;
    color: #6B6B6B;
    max-width: 600px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.cta-section .btn-gradient {
    padding: 14px 36px;
    font-size: 16px;
}


/* ================= ABOUT HERO ================= */

.about-hero-section {
    padding: 120px 0 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%);
}

.about-main-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.25;
}

.about-main-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 520px;
}

.about-hero-image {
    max-width: 450px;
}

.about-intro-section {
    padding: 100px 0 60px 0;
}

.section-heading {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-description {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
}

.about-cards-section {
    padding: 60px 0 100px 0;
}

.about-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(122,106,242,0.08);
    transition: 0.3s ease;
}

    .about-card:hover {
        transform: translateY(-8px);
    }

.about-icon i {
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

    .values-list li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 15px;
    }

        .values-list li::before {
            content: "•";
            color: var(--purple);
            position: absolute;
            left: 0;
        }

.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.journey-section {
    padding: 100px 0;
}

.journey-line {
    height: 4px;
    background: var(--gradient);
    width: 70%;
    margin: 40px auto;
    border-radius: 10px;
}

.journey-item .year {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--gradient);
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
}


.founders-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f6f3ff 100%);
}

.founder-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(122,106,242,0.08);
    transition: 0.3s ease;
}

    .founder-card:hover {
        transform: translateY(-8px);
    }

.founder-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(122,106,242,0.2);
}

.founder-role {
    display: block;
    font-size: 14px;
    color: var(--purple);
    font-weight: 600;
    margin-top: 5px;
}



/* HERO */

.portfolio-hero {
    padding: 140px 0 120px 0;
    background: radial-gradient(circle at top right, #f4eefe 0%, #ffffff 60%);
}

.portfolio-title {
    font-size: 44px;
    font-weight: 700;
}

.portfolio-subtitle-2 {
    font-size: 28px;
    margin-top: 10px;
    font-weight: 500;
}

.portfolio-desc {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 520px;
}

.portfolio-hero-img {
    max-width: 480px;
}

/* FILTER */

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 500;
}

    .filter-btn.active {
        background: var(--gradient);
        color: #fff;
        border: none;
    }

/* CARDS */

.portfolio-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(122,106,242,0.08);
    transition: 0.3s ease;
}

    .portfolio-card:hover {
        transform: translateY(-10px);
    }

.case-btn {
    margin-top: 15px;
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #fff;
    color: var(--purple);
    font-weight: 600;
}

/* TESTIMONIAL */

.testimonial-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(122,106,242,0.08);
}

.stars {
    color: #f9a826;
    font-size: 18px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.client-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA */

.portfolio-cta {
    padding: 120px 0;
}

[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

    [data-aos].aos-animate {
        opacity: 1;
    }






/* ===== Service HERO ===== */

.services-hero {
    padding: 140px 0 120px 0;
    background: radial-gradient(circle at top right, #f4eefe 0%, #ffffff 60%);
}

.services-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.25;
}

.services-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: 18px;
    max-width: 520px;
}

.services-hero-img {
    max-width: 480px;
}

/* ================= BUTTON ================= */

.btn-light-outline {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #fff;
    color: var(--text-dark);
    font-weight: 500;
}

/* ================= SECTIONS ================= */

.expertise-section,
.detail-section {
    padding: 120px 0;
}

.alt-bg {
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
}

.section-subheading {
    color: var(--text-muted);
    margin-top: 10px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= CARD ================= */

.service-card {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(122,106,242,0.08);
    transition: 0.4s ease;
}

    .service-card:hover {
        transform: translateY(-10px);
    }

.service-icon {
    font-size: 42px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 18px;
}

.learn-btn {
    margin-top: 20px;
    padding: 8px 22px;
    border-radius: 20px;
    border: 1px solid #eee;
    background: #fff;
    color: var(--purple);
    font-weight: 600;
}

/* ================= FINAL CTA ================= */

.final-cta {
    padding: 120px 0;
}




/* ===== Contact HERO ===== */

/* HERO */

.contact-hero {
    padding: 140px 0 120px 0;
    background: radial-gradient(circle at top right, #f4eefe 0%, #ffffff 60%);
}

.contact-title {
    font-size: 44px;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 26px;
    margin-top: 10px;
}

.contact-desc {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 520px;
}

.contact-hero-img {
    max-width: 480px;
}

/* CONTACT INFO */

.contact-info-section {
    padding: 120px 0;
}

.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(122,106,242,0.08);
    transition: 0.3s ease;
}

    .contact-card:hover {
        transform: translateY(-10px);
    }

.contact-icon {
    font-size: 40px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* FORM */

.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f6ff 100%);
}

.contact-form-card {
    background: #fff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(122,106,242,0.08);
}

.custom-input {
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: #fafafa;
}

    .custom-input:focus {
        border-color: var(--purple);
        box-shadow: none;
    }

/* MAP */

.map-section {
    padding: 80px 0 120px 0;
}

.map-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(122,106,242,0.08);
}

    .map-card iframe {
        width: 100%;
        height: 400px;
    }