/* style.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #0f172a;
    overflow-x: hidden;
}

/* ==================== "OUR PROJECTS" TOP HEADER STYLING ==================== */
.projects-header-section {
    background-color: #f1f5f9;
    padding: 30px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.projects-header-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-title-box h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 6px;
}

.header-title-underline {
    width: 48px;
    height: 4px;
    background-color: #d81b60;
    border-radius: 2px;
}

.project-cards-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.project-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.7;
}

.project-preview-card:hover,
.project-preview-card.active {
    opacity: 1;
    transform: translateY(-4px);
}

.card-mockup-screen {
    width: 95px;
    height: 120px;
    background: linear-gradient(135deg, #99f6e4 0%, #5eead4 100%);
    border-radius: 10px;
    box-shadow: 0 6px 15px -3px rgba(0, 0, 0, 0.08);
    position: relative;
    padding: 10px;
    border: 2px solid transparent;
    display: flex;
}

.project-preview-card.active .card-mockup-screen {
    border-color: #d81b60;
    box-shadow: 0 8px 20px rgba(216, 27, 96, 0.2);
}

.mockup-icon-badge {
    width: 28px;
    height: 28px;
    background: #134e4a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.project-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* ==================== BANNER CONTAINER SLIDER STYLING ==================== */
.banner-container {
    position: relative;
    width: 100%;
    min-height: 560px;
    background-color: #d81b60; /* Full background hot pink */
    overflow: hidden;
}

.banner-slider-track {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.banner-slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Curved Background Vectors matching your design reference */
.curved-bg {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.shape-one {
    top: -40%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(194, 24, 91, 0.7) 0%, rgba(136, 14, 79, 0.4) 100%);
}

.shape-two {
    bottom: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.6) 0%, rgba(173, 20, 87, 0.3) 100%);
}

.shape-three {
    top: 20%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(45deg);
}

/* Banner Content Layout */
.banner-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 40px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.left-side, .right-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-side {
    justify-content: flex-start;
}

/* Vector Frame & Billing Icon Layout */
.vector-frame {
    position: relative;
    width: 280px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.billing-icon {
    width: 110px;
    height: 110px;
}

.billing-icon svg {
    width: 100%;
    height: 100%;
}

.corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 4px solid white;
}

.top-left { top: 0; left: 0; border-right: none; border-bottom: none; }
.top-right { top: 0; right: 0; border-left: none; border-bottom: none; }
.bottom-left { bottom: 0; left: 0; border-right: none; border-top: none; }
.bottom-right { bottom: 0; right: 0; border-left: none; border-top: none; }

/* Right Side Text & Menu Feature Tags */
.right-side {
    flex-direction: column;
    align-items: flex-start;
    color: white;
    gap: 12px;
}

.dots-container {
    display: flex;
    gap: 6px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
}

h1 {
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.divider {
    width: 90px;
    height: 4px;
    background-color: white;
    margin: 2px 0;
}

p {
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    max-width: 480px;
    opacity: 0.95;
}

/* Menu-Driven Feature Grid Badges */
.menu-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 100%;
    max-width: 480px;
    margin: 2px 0;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

/* Report Generation Section Styles */
.report-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 480px;
    margin-top: 4px;
}

.report-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.85;
    text-transform: uppercase;
}

.report-btn-group {
    display: flex;
    gap: 8px;
}

.report-action-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
}

.excel-chip {
    background: rgba(16, 185, 129, 0.25);
}

.excel-chip:hover {
    background: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.pdf-chip {
    background: rgba(239, 68, 68, 0.25);
}

.pdf-chip:hover {
    background: rgba(239, 68, 68, 0.4);
    transform: translateY(-2px);
}

.offer-box {
    margin-top: 4px;
    border: 2px solid white;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.offer-text {
    font-size: clamp(22px, 2.2vw, 30px);
    font-weight: 900;
    letter-spacing: 1.5px;
}

.website-link {
    margin-top: 2px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1.5px;
    transition: opacity 0.2s ease;
}

.website-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .projects-header-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .project-cards-grid {
        width: 100%;
        justify-content: flex-start;
    }
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
    .left-side, .right-side {
        justify-content: center;
        align-items: center;
    }
    .right-side {
        align-items: center;
    }
    .dots-container, .divider {
        margin-left: auto;
        margin-right: auto;
    }
    .menu-features-list {
        grid-template-columns: 1fr;
    }
    .report-actions-wrapper {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
}