.banner-desc-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.banner-desc-box-title {
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-align: center;
}

.banner-desc-box-content {
    color: #fff;
    font-size: 18px;
}

/* Why Choose Us Section Styles */
.why-choose-us-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.why-choose-us-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.hero-image {
    flex: 1;
    max-width: 760px;
    position: relative;
}

.hero-image>img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    min-height: 400px;
    object-fit: cover;
}

/* Brand Logos Overlay */
.brand-logos {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #faf6f2;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    height: 100%;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    min-height: 50px;
}

.logo-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-text {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.logo-item:hover .logo-text {
    color: #222;
    transform: scale(1.05);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    padding: 0;
}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .why-choose-us-section {
        padding: 60px 0;
    }

    .hero-section {
        gap: 40px;
        margin-bottom: 60px;
    }

    .hero-title {
        font-size: 36px;
    }

    .brand-logos {
        width: 85%;
        height: 85%;
        padding: 20px;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .logo-item {
        padding: 10px;
    }

    .logo-item img {
        max-height: 50px;
    }

    .features-grid {
        gap: 30px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 15px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .why-choose-us-section {
        padding: 40px 0;
    }

    .why-choose-us-section .container {
        padding: 0 15px;
    }

    .hero-section {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
    }

    .brand-logos {
        width: 90%;
        height: 90%;
        padding: 15px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .logo-item {
        padding: 8px;
    }

    .logo-item img {
        max-height: 40px;
    }

    .logo-text {
        font-size: 12px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .feature-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .feature-description {
        font-size: 14px;
    }
}

/* Process Section Styles */
.process-section {
    padding: 100px 0;
    background-color: #f7f7f7;
}

.process-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

/* Process Header */
.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.process-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.process-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0 auto;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.process-item {
    /* background: #ffffff; */
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    position: relative;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.process-icon svg {
    color: #333;
    transition: all 0.3s ease;
}

.process-icon img {
    width: 38px;
}


.process-step {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}

.process-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .process-section {
        padding: 80px 0;
    }

    .process-header {
        margin-bottom: 60px;
    }

    .process-title {
        font-size: 36px;
    }

    .process-description {
        font-size: 16px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .process-item {
        padding: 30px 25px;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .process-icon svg {
        width: 32px;
        height: 32px;
    }

    .process-step {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .process-text {
        font-size: 14px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .process-section {
        padding: 60px 0;
    }

    .process-section .container {
        padding: 0 15px;
    }

    .process-header {
        margin-bottom: 50px;
    }

    .process-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .process-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .process-description {
        font-size: 15px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .process-item {
        padding: 25px 20px;
        text-align: center;
    }

    .process-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 20px;
    }

    .process-icon svg {
        width: 28px;
        height: 28px;
    }

    .process-step {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .process-text {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Statistics Section Styles */
.statistics-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.statistics-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.statistics-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 80px;
    line-height: 1.2;
}

.statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 0 20px;
}

.stat-number {
    font-size: 40px;
    font-weight: 400;
    color: #000;
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

.stat-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.statistics-action {
    text-align: center;
}

.view-more-btn {
    background-color: #666;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.view-more-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .statistics-section {
        padding: 80px 0;
    }

    .statistics-title {
        font-size: 36px;
        margin-bottom: 60px;
    }

    .statistics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }

    .stat-item {
        padding: 0 10px;
    }

    .stat-number {
        font-size: 60px;
        margin-bottom: 15px;
    }

    .stat-label {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .stat-description {
        font-size: 14px;
        max-width: 250px;
    }

    .view-more-btn {
        padding: 12px 35px;
        font-size: 15px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .statistics-section {
        padding: 60px 0;
    }

    .statistics-section .container {
        padding: 0 15px;
    }

    .statistics-title {
        font-size: 28px;
        margin-bottom: 50px;
    }

    .statistics-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .stat-item {
        padding: 0 5px;
    }

    .stat-number {
        font-size: 48px;
        margin-bottom: 12px;
    }

    .stat-label {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .stat-description {
        font-size: 14px;
        max-width: 100%;
        line-height: 1.5;
    }

    .view-more-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Endless Support Section Styles */
.endless-support-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.endless-support-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 20px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    max-width: 900px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 60px 0;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.feature-row.reverse {
    flex-direction: row;
}

.feature-content {
    width:45%;
    padding: 50px;
}

.why-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin: 0;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .endless-support-section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 36px;
    }

    .section-description {
        font-size: 16px;
    }

    .features-list {
        gap: 60px;
    }

    .feature-row {
        gap: 50px;
        padding: 40px 0;
    }

    .feature-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .feature-desc {
        font-size: 15px;
    }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 767px) {
    .endless-support-section {
        padding: 60px 0;
    }

    .endless-support-section .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .section-description {
        font-size: 15px;
    }

    .features-list {
        gap: 40px;
    }

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
        padding: 30px 0;
        text-align: center;
    }

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

    .feature-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .feature-desc {
        font-size: 14px;
        line-height: 1.5;
    }

    .feature-image {
        max-width: 100%;
    }
}

.discover-more-btn {
    display: flex;
    background-color: #565656;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    width: 200px;
    margin: auto;
}

.discover-more-btn:hover {
    color: #fff;
}

.button-text-wrapper {
    display: inline-block;
    height: 1.2em;
    line-height: 1.2em;
    overflow: hidden;
    position: relative;
}

.button-text-original,
.button-text-hover {
    display: block;
    transition: transform 0.3s ease-in-out;
}

.button-text-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(100%);
}

.discover-more-btn:hover .button-text-original {
    transform: translateY(-100%);
}

.discover-more-btn:hover .button-text-hover {
    transform: translateY(0);
}

.site-footer{
    background:#fff !important;
}
