@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Source+Code+Pro:wght@400;600&display=swap');

:root {
    --primary-color: #d81c6f;
    --secondary-color: #2b32b2;
    --accent-color: #00ff9d;
    --dark-bg: #0a192f;
    --darker-bg: #05101f;
    --card-bg: #fff;
    --text-primary: #ffffff;
    --text-secondary: #8892b0;
    --text-codegreen: #d81c6f;
    --code-font: 'Source Code Pro', monospace;
}

body {
    background-color:#1f0159;
    color: var(--text-primary);
    overflow-x: hidden;
}


.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
}

/* ===== Background Elements ===== */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(0, 200, 255, 0.1) 1px, transparent 1px),
        radial-gradient(rgba(0, 200, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 20px 20px;
    opacity: 0.3;
    z-index: 0;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(110deg, #d81c6f 0%, #081528 50%), linear-gradient(235deg, #2563eb 0%, #2563eb 50%); */
    z-index: 0;
}

.vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, transparent 40%, var(--darker-bg) 100%);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    z-index: 1;
    position: relative;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 140px;
}

.company-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 200, 255, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border-left: 3px solid var(--primary-color);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards;
}

.company-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

.hero-pretitle {
    font-family: var(--code-font);
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 0.2s;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 0.4s;
}

.hero-title .highlight {
    color: #d81c6f;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(0, 200, 255, 0.2);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 0.6s;
    text-transform: capitalize;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 0.8s;
}

.key-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 1s;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(13, 30, 58, 0.6);
    border: 1px solid rgb(255 255 255 / 20%);
    border-radius: 4px;
    font-size: 0.9rem;
    color: #fff;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(0, 200, 255, 0.1);
    border-color: rgba(0, 200, 255, 0.4);
    color: var(--text-primary);
}

.feature-tag i {
    color: #ffffff;
    font-size: 0.9rem;
}

.cta-container {
    display: flex;
    gap: 1.5rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.5s forwards 1.2s;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(90deg, #2f035b, #d81c6f);
    border: 2px solid #fff;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 200, 255, 0.3);
    z-index: 1;
}

.primary-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 30px rgba(0, 200, 255, 0.4);
}

.primary-btn:hover::before {
    width: 100%;
}

.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 1px solid rgb(255 255 255 / 30%);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: rgba(0, 200, 255, 0.05);
    border-color: var(--primary-color);
}

/* ===== Right Section ===== */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-sphere {
    width: 450px;
    height: 450px;
    position: relative;
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

.code-terminal {
    right: 372px;
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--darker-bg);
    border-radius: 10px;
    padding: 1rem;
    border: 1px solid rgb(216 28 111);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 0 20px rgba(0, 200, 255, 0.05),
        0 0 15px rgba(0, 200, 255, 0.2);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    z-index: 2;
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.terminal-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #27c93f;
}

.terminal-title {
    margin-left: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-family: var(--code-font);
}

.terminal-content {
    font-family: var(--code-font);
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.typed-cursor {
    display: inline-block;
    width: 8px;
    height: 18px;
    background-color: var(--accent-color);
    animation: blink 1s infinite;
    vertical-align: middle;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.command {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.command::before {
    content: '$ ';
    color: var(--primary-color);
}

.result {
    color: var(--text-codegreen);
    margin-bottom: 0.5rem;
}

/* ===== 3D Elements ===== */
.sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgb(216 28 111);
    animation: rotate 40s linear infinite;
}

.sphere-1 {
    transform: rotateX(70deg) rotateY(20deg);
}

.sphere-2 {
    transform: rotateX(40deg) rotateY(70deg);
}

.sphere-3 {
    transform: rotateX(10deg) rotateY(50deg);
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 200, 255, 0.2);
    color: var(--primary-color);
    font-size: 1.5rem;
    animation: float 6s ease-in-out infinite;
}

.icon-1 {
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.icon-2 {
    top: 50%;
    right: -6%;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.icon-3 {
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.icon-4 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    animation-delay: 3s;
}

.tech-card {
    position: absolute;
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.2rem;
    border: 1px solid rgba(0, 200, 255, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(0, 200, 255, 0.1);
    backdrop-filter: blur(8px);
    width: 220px;
    opacity: 0;
    transform: translateY(20px);
}

.card-1 {
    bottom: -15%;
    right: 5%;
    animation: fadeInUp 0.5s forwards 1.5s;
}

.card-2 {
    top: 72%;
    left: -5%;
    animation: fadeInUp 0.5s forwards 1.7s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    background: #d3e5ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.card-title {
    font-weight: 600;
    font-size: 1rem;
}

.card-stat {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ===== Particles ===== */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    display: block;
    background: var(--primary-color);
    width: 3px;
    height: 3px;
    border-radius: 50%;
    opacity: 0;
    animation: particleAnimation 8s linear infinite;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.about_img {
    width: 360px;
    position: absolute;
    right: 81px;
    z-index: 9;
    top: 82px;
    animation: fadeInUp 0.8s forwards 1.7s;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes particleAnimation {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.5;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translateY(-2000%) translateX(20px);
        opacity: 0;
    }
}

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        display: block;
        max-width: -webkit-fill-available;
        text-align: center;
    }

    .company-badge,
    .key-features,
    .cta-container {
        justify-content: center;
    }

    .company-badge {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    .tech-sphere {
        margin-top: 3rem;
    }

    .tech-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .story-body p {
        font-size: 11px;
    }

    .hero-content{margin-top: 60px;}

    .hero-title {
        font-size: 45px;
        margin-top: 20px;
    }

    .hero-section {
        padding: 10px;
    }

    .hero-description {
        font-size: 14px;
        color: #fff;
    }

    .hero-visual {
        transform: scale(0.8);
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-tag {
        font-size: 0.8rem;
    }
}

.about-section {
    padding: 6rem 2rem;
    position: relative;
    background-color: #1f0159;
    color: var(--text-primary);
    overflow: hidden;
    padding-bottom: 0px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgb(255 255 255);
    color: #2f035b;
    padding: 0.5rem 1.2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border-left: 3px solid #2f035b;
}

.section-badge i {
    margin-right: 8px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: block;
    color: #d81c6f;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(99, 102, 241, 0.3);
}
.section-hero {
    background-color: #d81c6f;
    font-size: 62.5%;
    padding: 3.4rem 0 0.6rem 0;
}
.section-title .highlight {
    color: #fff;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    background: #fff;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 200, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}
.delivered-imgs {
    width: 150px;
}
.hero .btn:hover{
    background: linear-gradient(45deg, var(--accent), var(--primary));
}
.footer-section{opacity: 1;}
.story-icon {
    width: 50px;
    height: 50px;
    background: #d81c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.story-title {
    font-size: 17px;
    font-weight: 600;
    color: #2f035b;
}

.story-body p {
    font-size: 14px;
    text-align: justify;
    color: #2f035b;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vm-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 26px 40px;
    border: 1px solid rgba(0, 200, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 200, 255, 0.1);
}

.vm-icon {
    width: 60px;
    height: 60px;
    background: #d81c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto;
}

.vm-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2f035b;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 1rem;
}

.vm-text {
    font-size: 14px;
    color: #000;
    text-align: center;
    line-height: 1.7;
}

.values-section {
    margin-bottom: 4rem;
}

.values-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #621847);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 200, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 200, 255, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #d81c6f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #fff;
    font-size: 1.5rem;
}

.value-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f035b;
    margin-bottom: 0.8rem;
}

.value-card p {
    color: #000;
    font-size: 0.9rem;
    line-height: 1.6;
}

.expertise-section {
    margin-bottom: 4rem;
}

.expertise-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.expertise-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d81c6f, #1f1630);
}

.expertise-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 200, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 200, 255, 0.1);
}

.expertise-icon {
    width: 50px;
    height: 50px;
    background: #d81c6f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.expertise-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2f035b;
    margin-bottom: 1rem;
}

.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    color: #000;
    font-size: 12px;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.expertise-list li:last-child {
    border-bottom: none;
}

/* Team Section */
.team-section {
    margin-bottom: 4rem;
}

.team-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #d81c6f, #081528);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.team-card {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    border: 2px solid rgb(0 200 255 / 30%);
    border-radius: 20px;
    box-shadow: 0 5px 7px #0b1d3b;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(0, 200, 255, 0.1);
}

.team-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-image img {
    position: relative;
    top: 54px;
    width: -webkit-fill-available;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teamcolflex {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1.5rem 0;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-name {
    font-size: 28px;
    font-weight: 600;
    margin: 1.2rem 0 0.3rem;
}

.team-position {
    color: #d81c6f;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-bio {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 20px;
}
.sfc-magic-success{
    margin: 50px 0;
}
.brand_logo {
    margin-top: 40px;
}
.stat-card {
    background: #fff;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid rgba(0, 200, 255, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #d81c6f;
    margin-bottom: 0.5rem;
}
/* .section-header .section-title {
    font-size: 3.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: rgba(0, 0, 0, 0.05) 2px 2px 4px;
    letter-spacing: -0.5px;
} */

.stat-label {
    color: #2f035b;
    font-size: 1rem;
}

.cta-section {
    background: linear-gradient(135deg, #d81c6f 0%, #2f035b 100%);
    border-radius: 10px;
    text-align: center;
    padding: 15px;
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #fff;
    font-size: 16px;
    line-height: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1200px) {

    .vision-mission,
    .values-grid,
    .expertise-cards,
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vm-text {
        font-size: 12px;
    }

    .cta-section p {
        font-size: 12px;
    }

    .team-card {
        display: block;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .vision-mission,
    .values-grid,
    .expertise-cards,
    .team-grid,
    .stats-section {
        grid-template-columns: 1fr;
    }

    .about-story {
        padding: 1.5rem;
    }
}

.about_img img{
    width: 100%;
}
.section-title::after{top:65px}