/*
|--------------------------------------------------------------------------
| Shuvam Infotech - About Page CSS
|--------------------------------------------------------------------------
| Page-specific styles only.
| Shared header/footer styles remain in the master style.css.
|--------------------------------------------------------------------------
*/

/* ==========================================
           PAGE HEADER (Breadcrumb)
        ========================================== */
        .page-header {
            background: var(--gradient-dark);
            color: white;
            padding: 80px 0 50px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.10;
            z-index: 0;
        }

        .page-header .container {
            position: relative;
            z-index: 1;
        }

        .page-header h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .page-header p {
            font-size: 1.1rem;
            opacity: 0.8;
            max-width: 600px;
            margin: 0 auto;
        }

        .breadcrumb {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            opacity: 1;
        }

        .breadcrumb span {
            color: var(--secondary);
        }

        /* ==========================================
           ABOUT HERO SECTION
        ========================================== */
        .about-hero {
            background: white;
            padding: 80px 0;
        }

        .about-hero .row {
            display: flex;
            align-items: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .about-hero .content {
            flex: 1;
            min-width: 300px;
        }

        .about-hero .image {
            flex: 1;
            min-width: 300px;
        }

        .about-hero .image img {
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .about-hero .image img:hover {
            transform: scale(1.02);
        }

        .about-hero .tag {
            display: inline-block;
            background: var(--gradient-primary);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            padding: 5px 20px;
            border-radius: 50px;
            margin-bottom: 15px;
        }

        .about-hero h2 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .about-hero h2 span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .about-hero p {
            color: var(--gray);
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .about-hero .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 25px;
        }

        .about-hero .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .about-hero .feature-item i {
            color: var(--secondary);
            font-size: 1.2rem;
        }

        .about-hero .feature-item span {
            font-weight: 600;
            color: var(--dark);
        }

        /* ==========================================
           OUR MISSION & VISION
        ========================================== */
        .mission-vision {
            background: var(--light-gray);
            padding: 70px 0;
        }

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

        .mv-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px 30px;
            text-align: center;
            border: 1px solid rgba(94, 91, 255, 0.06);
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .mv-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: rgba(94, 91, 255, 0.15);
        }

        .mv-card .icon-box {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            color: white;
            margin: 0 auto 18px;
            box-shadow: 0 10px 30px rgba(94, 91, 255, 0.25);
            transition: var(--transition);
        }

        .mv-card:hover .icon-box {
            transform: rotate(-5deg) scale(1.05);
        }

        .mv-card:nth-child(2) .icon-box {
            background: linear-gradient(135deg, #10B981, #34D399);
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.25);
        }

        .mv-card:nth-child(3) .icon-box {
            background: linear-gradient(135deg, #f093fb, #f5576c);
            box-shadow: 0 10px 30px rgba(245, 87, 108, 0.25);
        }

        .mv-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .mv-card p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

       /* =========================================================
   JOURNEY TIMELINE - ALTERNATING
========================================================= */

.timeline {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    padding: 20px 0;
}


/* CENTER LINE */

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #793a85;
    transform: translateX(-50%);
}


/* EACH ITEM */

.timeline-item {
    position: relative;
    width: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
}


/* =========================================================
   LEFT ITEM
========================================================= */

.timeline-left {
    justify-content: flex-start;
    padding-right: calc(50% + 45px);
    text-align: right;
}


/* =========================================================
   RIGHT ITEM
========================================================= */

.timeline-right {
    justify-content: flex-end;
    padding-left: calc(50% + 45px);
    text-align: left;
}


/* =========================================================
   CARD
========================================================= */

.timeline-content {
    width: 100%;
    max-width: 430px;
    padding: 25px 28px;

    background: #ffffff;

    border: 1px solid #e8e8ef;
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


.timeline-content:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(121, 58, 133, 0.12);

    border-color: rgba(121, 58, 133, 0.25);
}


/* YEAR */

.timeline-year {
    display: inline-block;

    padding: 6px 14px;
    margin-bottom: 10px;

    border-radius: 20px;

    background: rgba(121, 58, 133, 0.08);

    color: #793a85;

    font-size: 13px;
    font-weight: 800;
}


/* TITLE */

.timeline-content h4 {
    margin: 5px 0 10px;

    color: #343a40;

    font-size: 20px;
    font-weight: 800;
}


/* TEXT */

.timeline-content p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   CENTER DOT
========================================================= */

.timeline-item::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 50%;

    width: 18px;
    height: 18px;

    background: #ffffff;

    border: 4px solid #793a85;

    border-radius: 50%;

    transform: translate(-50%, -50%);

    z-index: 5;

    box-shadow:
        0 0 0 5px rgba(121, 58, 133, 0.10);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .timeline {
        padding-left: 35px;
    }


    .timeline::before {
        left: 10px;
        transform: none;
    }


    .timeline-item,
    .timeline-left,
    .timeline-right {

        width: 100%;

        min-height: auto;

        margin-bottom: 25px;

        padding-left: 30px;
        padding-right: 0;

        justify-content: flex-start;

        text-align: left;
    }


    .timeline-item::before {

        left: 2px;
        top: 35px;

        width: 16px;
        height: 16px;

        transform: translateY(-50%);
    }


    .timeline-content {
        max-width: 100%;
    }

}

        /* ==========================================
           STATS SECTION
        ========================================== */
        .stats-about {
            background: var(--gradient-dark);
            color: white;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-about::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(94, 91, 255, 0.08) 0%, transparent 60%);
            animation: pulseBg 8s ease-in-out infinite;
        }

        @keyframes pulseBg {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .stats-about .container {
            position: relative;
            z-index: 1;
        }

        .stats-about-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
        }

        .stats-about-item .number {
            font-size: 3rem;
            font-weight: 800;
            font-family: 'Plus Jakarta Sans', sans-serif;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stats-about-item .label {
            font-size: 1rem;
            opacity: 0.8;
            margin-top: 5px;
        }

        /* ==========================================
           CTA SECTION
        ========================================== */
        .cta-section {
            background: white;
            padding: 60px 0;
        }

        .cta-box {
            background: var(--gradient-dark);
            color: white;
            padding: 50px 60px;
            border-radius: var(--border-radius-lg);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
            position: relative;
            overflow: hidden;
        }

        .cta-box::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(94, 91, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .cta-box .content {
            position: relative;
            z-index: 1;
        }

        .cta-box .content h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .cta-box .content p {
            opacity: 0.8;
            font-size: 1rem;
        }

        .cta-box .buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-cta-primary {
            background: white;
            color: var(--primary);
            border: none;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
        }

        .btn-cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(255, 255, 255, 0.2);
        }

        .btn-cta-outline {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 700;
            transition: var(--transition);
            cursor: pointer;
            display: inline-block;
            text-decoration: none;
        }

        .btn-cta-outline:hover {
            background: white;
            color: var(--dark);
            transform: translateY(-3px);
        }

/* ==========================================
           RESPONSIVE
        ========================================== */
        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .why-about-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .stats-about-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .navbar-toggler {
                display: block;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                width: 100%;
                padding: 16px 0;
                gap: 4px;
            }
            .nav-menu.open {
                display: flex;
            }
            .nav-menu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                background: transparent;
                display: none;
            }
            .nav-menu li:hover .dropdown-menu {
                display: none;
            }
            .nav-menu li.open .dropdown-menu {
                display: block;
            }

            .topnav .container {
                flex-direction: column;
                gap: 4px;
                text-align: center;
            }

            .page-header h1 {
                font-size: 2.2rem;
            }
            .page-header {
                padding: 60px 0 40px;
            }

            .about-hero {
                padding: 50px 0;
            }
            .about-hero .row {
                flex-direction: column;
            }
            .about-hero h2 {
                font-size: 2rem;
            }
            .about-hero .features {
                grid-template-columns: 1fr;
            }

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

            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
                justify-content: flex-start;
            }
            .timeline-item:nth-child(odd) {
                padding-right: 0;
            }
            .timeline-item:nth-child(even) {
                padding-left: 50px;
            }
            .timeline-item .dot {
                left: 12px !important;
                right: auto !important;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .team-card img {
                height: 200px;
            }

            .why-about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }

            .stats-about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .stats-about-item .number {
                font-size: 2.2rem;
            }

            .cta-box {
                padding: 30px 25px;
                flex-direction: column;
                text-align: center;
            }
            .cta-box .content h3 {
                font-size: 1.5rem;
            }
            .cta-box .buttons {
                justify-content: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .footer-bottom .container {
                flex-direction: column;
                text-align: center;
            }
            .footer-policy-links {
                justify-content: center;
            }
            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .page-header h1 {
                font-size: 1.8rem;
            }
            .about-hero h2 {
                font-size: 1.6rem;
            }
            .team-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .why-about-grid {
                grid-template-columns: 1fr;
                max-width: 320px;
                margin: 0 auto;
            }
            .stats-about-grid {
                grid-template-columns: 1fr 1fr;
                gap: 15px;
            }
            .stats-about-item .number {
                font-size: 1.8rem;
            }
            .stats-about-item .label {
                font-size: 0.85rem;
            }
            .mv-card {
                padding: 25px 20px;
            }
            .mv-card h3 {
                font-size: 1.2rem;
            }
            .timeline-item .content {
                padding: 18px 20px;
            }
            .timeline-item .content h4 {
                font-size: 1rem;
            }
        }
/* =========================================================
   WHY CHOOSE US - ABOUT PAGE
========================================================= */

.why-about {
    padding: 90px 0;
    background: #f8fafc;
}


.why-about .section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}


.why-about .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}


.why-about .section-header h2 {
    margin: 15px 0;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #343a40;
}


.why-about .section-header h2 span {
    color: #793a85;
}


.why-about .section-header p {
    margin: 0;
    color: #64748b;
    line-height: 1.7;
}


/* =========================================================
   WHY CARDS
========================================================= */

.why-about-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 24px;
}


.why-about-item {
    position: relative;

    padding: 32px 24px;

    background: #ffffff;

    border: 1px solid #e8e8ef;

    border-radius: 16px;

    text-align: center;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


.why-about-item:hover {
    transform: translateY(-7px);

    border-color:
        rgba(121, 58, 133, 0.20);

    box-shadow:
        0 18px 40px
        rgba(121, 58, 133, 0.10);
}


/* ICON */

.why-about-item .icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #9b59b6
        );

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 10px 25px
        rgba(121, 58, 133, 0.18);
}


.why-about-item h5 {
    margin: 0 0 12px;

    color: #343a40;

    font-size: 17px;

    font-weight: 800;
}


.why-about-item p {
    margin: 0;

    color: #64748b;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta-section {
    padding: 70px 0;
    background: #ffffff;
}


.cta-box {
    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 35px;

    padding: 45px 50px;

    overflow: hidden;

    border-radius: 20px;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #542968
        );

    box-shadow:
        0 20px 50px
        rgba(121, 58, 133, 0.18);
}


/* Decorative circle */

.cta-box::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -80px;
    top: -100px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.12);
}


.cta-box::after {
    content: "";

    position: absolute;

    width: 160px;
    height: 160px;

    left: -70px;
    bottom: -80px;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,0.10);
}


/* CTA CONTENT */

.cta-box .content {
    position: relative;

    z-index: 2;

    flex: 1;
}


.cta-box .content h3 {
    margin: 0 0 10px;

    color: #ffffff;

    font-size: 30px;

    font-weight: 800;
}


.cta-box .content p {
    margin: 0;

    color:
        rgba(255,255,255,0.80);

    font-size: 15px;

    line-height: 1.7;
}


/* CTA BUTTONS */

.cta-box .buttons {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


.btn-cta-primary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 13px 24px;

    border-radius: 8px;

    background: #ffc107;

    color: #343a40;

    font-size: 14px;

    font-weight: 800;

    text-decoration: none;

    transition: 0.3s ease;
}


.btn-cta-primary:hover {
    color: #343a40;

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(0,0,0,0.15);
}


.btn-cta-outline {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 12px 23px;

    border: 1px solid
        rgba(255,255,255,0.55);

    border-radius: 8px;

    background: transparent;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.btn-cta-outline:hover {
    background: #ffffff;

    color: #793a85;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .why-about-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .why-about {
        padding: 65px 0;
    }


    .why-about .section-header h2 {
        font-size: 30px;
    }


    .why-about-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .cta-section {
        padding: 55px 0;
    }


    .cta-box {
        flex-direction: column;

        align-items: flex-start;

        padding: 35px 25px;
    }


    .cta-box .content h3 {
        font-size: 25px;
    }


    .cta-box .buttons {
        width: 100%;

        flex-wrap: wrap;
    }


    .btn-cta-primary,
    .btn-cta-outline {
        flex: 1;

        min-width: 130px;
    }

}


@media (max-width: 480px) {

    .why-about-item {
        padding: 28px 20px;
    }


    .cta-box {
        padding: 30px 20px;
    }


    .cta-box .buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
    }

}