

.roll-hero-wrapper {
    background-color: #ffffff; /* White gap color */
    padding: 15px;
    width: 100%;
    
}

.roll-hero-section {
    position: relative;
    width: 100%;
    margin: 0;
    height: 80vh;
    min-height: 500px;
    background-color: #000;
    overflow: hidden;
    display: flex;
    align-items: center;
    /* border-radius: 24px; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.roll-hero-video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
}

.roll-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.roll-hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

.roll-hero-content-area {
    position: relative;
    width: 45%;
    height: 100%;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-left: 8%;
    padding-right: 5%;
}

.roll-hero-content-area::before {
    content: '';
    position: absolute;
    top: -10%;
    bottom: -10%;
    left: -50%;
    right: 0;
    background: linear-gradient(135deg, #67c0ffd9 0%, #f4f7fa 100%);
    border-radius:  0 250px 250px 0 / 0 50% 50% 0;
    z-index: -1;
    box-shadow: 15px 0 40px rgba(0,0,0,0.2);
    border-color: #0a63cf;
    border-width: 8px;
    border-style: solid;
}

.roll-hero-text {
    width: 100%;
    max-width: 650px;
    position: relative;
    z-index: 4;
}

.text-blue {
    color: #0d6efd !important;
}

.text-dark {
    color: #111111 !important;
}

.roll-title {
    display: block;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    font-family: 'Arial Black', Impact, sans-serif;
    letter-spacing: -1px;
}

.roll-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

.roll-desc {
    display: block;
    font-size: 16px;
    color: #555;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 25px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    max-width: 90%;
}

.hero-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    max-width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid rgba(13, 110, 253, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.4);
}

.hero-feature-item i {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-item span {
    font-size: 0.8rem;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

@media (max-width: 1400px) {
    .hero-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .hero-feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}
.delay-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.roll-features .feature-text {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.roll-btn-primary {
    background: #0d6efd !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
    transition: 0.3s;
    text-decoration: none;
}

.roll-btn-primary:hover {
    background: #0b5ed7 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 94, 215, 0.4);
    color: #fff !important;
}

.roll-btn-outline {
    background: #f8f9fa !important;
    color: #0d6efd !important;
    font-weight: 700;
    font-size: 14px;
    padding: 11px 24px;
    border-radius: 4px;
    border: 2px solid #0d6efd;
    transition: 0.3s;
    text-decoration: none;
}

.roll-btn-outline:hover {
    background: #0d6efd !important;
    color: #fff !important;
}

@media (max-width: 1400px) {
    .roll-title {
        font-size: 52px;
    }
    .roll-subtitle {
        font-size: 18px;
    }
    .roll-desc {
        font-size: 15px;
        margin-bottom: 20px;
    }
    .roll-hero-content-area {
        width: 50%;
        padding-left: 6%;
    }
    .roll-hero-video-wrapper {
        width: 65%;
    }
}

@media (max-width: 1199px) {
    .roll-title {
        font-size: 44px;
    }
    .roll-hero-content-area {
        width: 55%;
        padding-left: 5%;
    }
    .roll-hero-video-wrapper {
        width: 70%;
    }
}

@media (max-width: 991px) {
    .roll-hero-wrapper {
        padding: 20px;
    }
    .roll-hero-section {
        width: 100%;
        margin: 0;
        height: auto;
        min-height: calc(100vh - 40px);
        align-items: center;
        border-radius: 16px;
    }
    .roll-hero-video-wrapper {
        width: 100%;
        height: 100%;
    }
    .roll-hero-video-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    .roll-hero-content-area {
        width: 100%;
        padding: 100px 20px;
        background: transparent;
    }
    .roll-hero-content-area::before {
        display: none;
    }
    .roll-title {
        font-size: 40px;
        color: #fff !important;
    }
    .roll-title .text-dark {
        color: #fff !important;
    }
    .roll-subtitle {
        color: #f8f9fa;
    }
    .roll-desc {
        color: #e9ecef;
    }
}

@media (max-width: 575px) {
    .roll-hero-section {
        min-height: auto;
    }
    .roll-hero-content-area {
        padding: 40px 15px;
    }
    .roll-hero-text {
        max-width: 100%;
    }
    .roll-title {
        font-size: 25px;
        margin-bottom: 12px;
    }
    .roll-subtitle {
        font-size: 15px;
    }
    .roll-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .roll-features .feature-text {
        font-size: 11px;
    }
    .roll-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px !important;
    }
    .roll-btn-primary, .roll-btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* =========================
   ROLL STATS BANNER
========================= */

.roll-stats-section {
    background: #002255;
    padding: 60px 0;
}

.roll-stats-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.roll-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    padding: 0 15px;
}

.roll-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.roll-stat-item:last-child::after,
.roll-stat-item.border-0::after {
    display: none;
}

.roll-stat-item .stat-icon {
    margin-bottom: 15px;
}

.roll-stat-item .stat-icon i {
    font-size: 32px;
    color: #fff;
}

.roll-stat-item .stat-text {
    color: #fff;
}

.roll-stat-item .stat-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.roll-stat-item .stat-text p {
    font-size: 13px;
    font-weight: 400;
    margin: 0;
    opacity: 0.85;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .roll-stats-banner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px 0;
    }

    .roll-stat-item {
        width: 50%;
        flex: 0 0 50%;
        justify-content: flex-start;
        padding: 0 10px;
    }

    .roll-stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .roll-stats-banner {
        gap: 35px 0;
    }
    .roll-stat-item {
        width: 100%;
        flex: 0 0 100%;
    }
    .roll-stat-item::after {
        display: none;
    }
}

/* ================= MACHINE CATEGORIES ================= */
.machine-categories-section {
    background-color: #fff;
    padding: 80px 0;
}

.machine-categories-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.machine-categories-line {
    width: 60px;
    height: 3px;
    background-color: #003477;
    margin: 0 auto;
}

.machine-categories-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-bottom: 20px;
}

.category-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.category-img-box {
    position: relative;
    padding: 0;
    border-radius: 12px 12px 0 0;
    background-color: #f8f9fa;
    margin-bottom: 25px;
}

.category-img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.category-icon {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background-color: #003477;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.category-body {
    padding: 0 20px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-body h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    line-height: 1.3;
}

.category-body p {
    display: none;
}

.category-link {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0d6efd;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: color 0.3s;
}

.category-link:hover {
    color: #003477;
}

@media (max-width: 1200px) {
    .machine-categories-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .machine-categories-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .machine-categories-wrapper {
        grid-template-columns: 1fr;
    }
    .category-card {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* Breadcrumb Strip */
.breadcrumb-strip {
    background-color: #f4f6f9;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-strip .custom-container {
    padding-left: 15px;
    padding-right: 15px;
}

.breadcrumb-content {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-content a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb-content a:hover {
    color: #0d6efd;
}

.breadcrumb-content .separator {
    color: #999;
    font-size: 12px;
}

.breadcrumb-content .current {
    color: #6c757d;
}

/* ================= MANUFACTURING PROCESS ================= */
.manufacturing-process-section {
    background-color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
}

.manufacturing-process-title {
    font-size: 2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.manufacturing-process-line {
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    margin: 0 auto;
}

.manufacturing-process-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding-bottom: 20px;
    margin-top: 40px;
}

.process-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    width: 100%;
    flex: 1 1 0;
    text-align: center;
    padding-bottom: 1.8rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.process-img-wrapper {
    position: relative;
    border-radius: 12px 12px 0 0;
    margin-bottom: 25px;
}

.process-img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 11px 11px 0 0;
}

.process-number {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background-color: #003477;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.95rem;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.process-body {
    padding: 0 18px;
}

.process-body h4 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #000;
}

.process-body p {
    font-size: 0.92rem;
    color: #555;
    margin-bottom: 0;
    line-height: 1.5;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    background-color: #003477;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@media (max-width: 1199px) {
    .process-body h4 {
        font-size: 0.85rem;
    }
    .process-body p {
        font-size: 0.75rem;
    }
    .arrow-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    .process-img {
        height: 170px;
    }
}

@media (max-width: 991px) {
    .manufacturing-process-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .process-card {
        max-width: 400px;
        flex: none;
    }
    .process-arrow {
        transform: rotate(90deg);
    }
    .process-img {
        height: 230px;
    }
}

@media (max-width: 575px) {
    .process-card {
        max-width: 100%;
    }
    .process-img {
        height: 190px;
    }
}

/* ================= WHY CHOOSE SECTION ================= */
.why-choose-section {
    background-color: #fcfcfc;
    padding: 80px 0;
}

.why-choose-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
    margin-bottom: 15px;
}

.why-choose-line {
    width: 60px;
    height: 3px;
    background-color: #003477;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
}

.why-choose-list li i {
    font-size: 1.2rem;
    color: #003477;
    margin-right: 15px;
}

/* Image Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

.grid-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.grid-item img,
.grid-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img,
.grid-item:hover video {
    transform: scale(1.05);
}

.grid-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 2;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

.grid-item:hover .grid-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.grid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 15px 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.grid-overlay p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.item-1 { grid-column: span 2; }
.item-2 { grid-column: span 2; }
.item-3 { grid-column: span 2; }
.item-4 { grid-column: span 3; }
.item-5 { grid-column: span 3; }

@media (max-width: 991px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: span 1;
    }
    .item-3 {
        grid-column: span 2;
    }
}

@media (max-width: 575px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }
    .item-1, .item-2, .item-3, .item-4, .item-5 {
        grid-column: span 1;
    }
}

/* ================= STATS COUNTER SECTION ================= */
.stats-counter-section {
    background-color: #003477;
    padding: 30px 0;
}

.stats-counter-row {
    padding: 0 15px;
}

.stats-counter-item {
    position: relative;
    color: #fff;
    padding: 15px 0;
}

.stats-counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
}

.stats-icon {
    font-size: 2.8rem;
    margin-right: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.stats-text h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stats-text p {
    font-size: 0.75rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .stats-counter-item:nth-child(2)::after {
        display: none;
    }
    .stats-counter-item:nth-child(1),
    .stats-counter-item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .stats-counter-item {
        padding: 30px 0;
    }
}

@media (max-width: 575px) {
    .stats-counter-item::after {
        display: none !important;
    }
    .stats-counter-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 25px 0;
    }
    .stats-counter-item:last-child {
        border-bottom: none;
    }
    .stats-icon {
        font-size: 2.5rem;
    }
    .stats-text h3 {
        font-size: 2rem;
    }
}

/* ================= CTA BANNER SECTION ================= */
.cta-banner-section {
    position: relative;
    padding: 60px 0;
    background: url('img/cta_bg.png') no-repeat center center;
    background-size: cover;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 25, 60, 0.9);
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0;
    color: #e0e0e0;
    line-height: 1.5;
}

.cta-btn-primary {
    background-color: #0d6efd !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-btn-primary:hover {
    background-color: #0b5ed7 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.4);
}

.cta-btn-outline {
    background-color: transparent !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: #fff;
}

@media (max-width: 991px) {
    .cta-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 575px) {
    .cta-title {
        font-size: 1.5rem;
    }
    .cta-btn-primary, .cta-btn-outline {
        width: 100%;
    }
}

/* =========================
   ROLL PROFILES COMPONENTS SECTION
========================= */

.roll-components-section {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #ffffff;
}

.roll-component-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 0;
    text-align: center;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.roll-component-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #003477;
}

.roll-component-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 0;
}

.roll-component-card p {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 15px;
    background: #fdfdfd;
}

/* RIGHT SIDE: WHY OUR PROFILES */
.why-profiles-box {
    background: #003477;
    border-radius: 12px;
    padding: 35px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 52, 119, 0.2);
}

.why-profiles-box h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 18px;
    line-height: 1.4;
}

.why-list li:last-child {
    margin-bottom: 0;
}

.why-list li i {
    color: #36a5fc;
    font-size: 18px;
    margin-top: 2px;
}

.componentsSwiper {
    padding-bottom: 20px;
}
