* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #ffffff;
    /* White background */
}

/* OUR VIEW SECTION */
#our-view {
    min-height: 100vh;
    background: #ffffff;
    /* White background */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.our-view-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Content Section */
.our-view-content {
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3176ba, #3d5073);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(49, 118, 186, 0.3);
}

.section-badge i {
    font-size: 1rem;
}

.our-view-title {
    font-size: 4rem;
    font-weight: 800;
    color: #2E2D29;
    margin-bottom: 30px;
    letter-spacing: -2px;
    line-height: 1.1;
    position: relative;
}

.our-view-title span {
    background: linear-gradient(135deg, #3176ba, #ea2528);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.our-view-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, rgba(49, 118, 186, 0.2), rgba(234, 37, 40, 0.2));
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineExpand 1s ease-out 1s forwards;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.our-view-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #3d5073;
    text-align: justify;
    font-weight: 400;
    margin-bottom: 40px;
    position: relative;
}

.highlight {
    background: linear-gradient(135deg, #3176ba, #3d5073);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(49, 118, 186, 0.2);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    animation: highlightPulse 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.highlight:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 118, 186, 0.3);
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 2px 8px rgba(49, 118, 186, 0.2);
    }

    50% {
        box-shadow: 0 4px 16px rgba(49, 118, 186, 0.4);
    }
}

/* Logo and Download Section */
.our-view-logo-container {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow:
        0 20px 60px rgba(46, 45, 41, 0.55),
        0 4px 20px rgba(49, 118, 186, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
}

.our-view-logo-container:hover {
    transform: translateY(-8px);
    box-shadow:
        0 30px 80px rgba(46, 45, 41, 0.7),
        0 8px 30px rgba(49, 118, 186, 0.15);
}

.logo-frame {
    /* box-sizing: content-box; */
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    /* background: linear-gradient(145deg, #ffffff, #f8fafc); */
    /* background-color: red; */
    padding: 40px;
    padding-bottom: 0;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: inset 0 4px 12px rgba(49, 118, 186, 0.05);
}

.company-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 8px 20px rgba(49, 118, 186, 0.12));
}

.company-logo:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 12px 30px rgba(49, 118, 186, 0.2));
}

/* Stats Row (moved under logo) */
.stats-row {
    display: flex;
    gap: 30px;
    margin: 10px 0 30px;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3176ba;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: #3d5073;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Download Button */
.download-button {
    /* background: linear-gradient(145deg, #3176ba, #4f46e5, #2563eb); */
    background: linear-gradient(145deg, #2563eb, #3176ba, #2563eb);
    color: #ffffff;
    border: none;
    padding: 18px 36px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    box-shadow:
        0 8px 25px rgba(49, 118, 186, 0.3),
        0 4px 12px rgba(79, 70, 229, 0.2);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.download-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 15px 40px rgba(49, 118, 186, 0.4),
        0 8px 25px rgba(79, 70, 229, 0.3);
}

.download-button i {
    font-size: 1.3rem;
    transition: all 0.4s ease;
}

.download-button:hover i {
    transform: translateY(-3px) rotate(-10deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .our-view-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 80px 30px;
    }

    .our-view-logo-container {
        order: -1;
    }

    .our-view-title {
        font-size: 3rem;
        text-align: center;
    }

    .our-view-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .our-view-container {
        padding: 40px 20px;
    }

    .our-view-title {
        font-size: 2.5rem;
    }

    .our-view-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .company-logo {
        max-width: 200px;
    }

    .download-button {
        padding: 15px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .our-view-container {
        padding: 30px 15px;
    }

    .our-view-logo-container {
        padding: 30px 20px;
    }

    .our-view-title {
        font-size: 2rem;
    }

    .stats-row {
        gap: 15px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .company-logo {
        max-width: 150px;
    }

    .download-button {
        padding: 12px 20px;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}

/* Add this to ensure proper scaling */
@media (max-width: 360px) {
    .our-view-container {
        padding: 20px 10px;
    }

    .our-view-text {
        font-size: 0.9rem;
    }

    .company-logo {
        max-width: 120px;
    }
}