/* Estilos específicos para Home - extraídos de home.php */

/* CSS Reset y Base - Solo para elementos específicos de home */
/* Los estilos del navbar y footer se manejan en sus respectivos archivos CSS */

/* Fondo del body */
body {
    background-color: #F7FAFF;
}

/* Hero Section */
.hero {
    position: relative;
    top: 62px;
    height: 980px;
    background-size: cover;
    color: white;
    padding: 100px 50px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    margin-top: 70px;
    margin-left: 100px;
}

.hero h1 {
    font-size: 70px;
    width: 539px;
    font-weight: 100;
    line-height: 0.9;
    margin-bottom: 20px;
    color: #EDF3FD;
}

.webtools-label {
    font-size: 22px;
    margin-top: 50px;
    font-weight: lighter;
    margin-bottom: 50px;
    margin-left: 20px;
}

.service-buttons {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.service-btn {
    background-color: #E8EFFC;
    border-radius: 68px;
    height: 136px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #002266;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-btn-content {
    width: 341px;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.service-btn-content span {
    align-self: center;
    z-index: 100;
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s ease;
}

.schedule-btn {
    font-size: 18px;
}

.schedule-btn span {
    left: 10%;
}

.service-icon {
    width: 92px;
    height: 92px;
    background-color: #00285e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    z-index: 20;
    margin-left: 50%;
}

.service-icon img {
    z-index: 20;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 92px;
    height: 92px;
    background-color: #00285e;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.83, 0.06, 0.38, 0.9);
    z-index: 0;
}

.service-btn:hover .service-icon::before {
    transform: scale(7);
}

.service-btn:hover .service-btn-content span {
    color: white;
    transition: all 0.4s ease;
}

/* Why Choose Us Section */
.why-choose-section {
    background-color: #fff;
    border-radius: 22px;
    position: relative;
    margin: 0px 17px;
    top: -7px;
    z-index: 10;
    height: auto;
    min-height: 726px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-top: 100px;
    padding-bottom: 78px;
}

.why-choose-container {
    display: flex;
    gap: 130px;
}

.why-choose-wrapper {
    margin: 0px 150px;
}

.why-choose-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.why-title {
    color: #00285e;
    font-size: 1.5rem;
    font-weight: bold;
}

.why-text {
    color: #7B88A3;
    line-height: 1.6;
    max-width: 450px;
    margin-bottom: 38px;
    font-size: 21px;
    font-weight: lighter;
}

.why-choose-right-title {
    color: #002266;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 30px;
}

.about-us-btn {
    display: inline-block;
    padding: 16px 37px;
    border: 1px solid #002266;
    border-radius: 27px;
    color: #002266;
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: transparent;
}

.about-us-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 34, 102, 0.15);
    background: rgba(0, 34, 102, 0.05);
}

.about-us-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 34, 102, 0.2);
}

.advantages-container {
    display: flex;
    flex-direction: column;
}

.advantages-cards-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 312px));
    gap: 20px;
}

.advantage-card {
    background-color: #e8effc;
    border-radius: 20px;
    height: 200px;
    width: 100%;
    overflow: hidden;
    transition: height 0.3s ease;
}

.blue-card {
    background-color: #002266;
}

.blue-card .advantage-title {
    color: #fff;
}

.blue-card .advantage-description {
    color: #fff;
}

.blue-card.active {
    height: 330px !important;
}

.advantage-card.active {
    height: 300px;
}

.advantage-card.active .advantage-arrow-button {
    transform: rotate(90deg);
}

.advantage-image {
    height: 87px;
    width: 143px;
    border-radius: 44px;
    margin-top: 19px;
    margin-left: 28px;
}

.advantage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.advantage-content {
    padding: 25px 30px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.advantage-description {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 300;
    line-height: 15px;
    color: #7B88A3;
    padding: 0 30px;
    margin: 0;
    margin-bottom: 40px;
}

.advantage-title {
    width: 173px;
    color: #002266;
    font-weight: 400;
    font-size: 24px;
    line-height: 15px;
}

.arrow-blue-container {
    width: 49px;
    height: 49px;
    background-color: #0044a6;
    border-radius: 50%;
}

.advantage-arrow-button {
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    background-color: #0044a6;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.stats-container {
    display: flex;
    justify-content: space-around;
}

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

.stat-value {
    font-size: 80px;
    font-family: var(--font-fallback);
    color: #00285e;
    position: relative;
}

.stat-label {
    color: #00285e;
    font-weight: 500;
    margin-top: 10px;
}

hr.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin-top: 54px;
    margin-bottom: 71px;
}

/* Offices Section */
.offices {
    width: 98%;
    margin: 0 auto;
    height: 614px;
    max-width: 1896px;
    margin-bottom: 30px;
    margin-top: 45px;
}

.offices__container {
    width: 100%;
    height: 100%;
    background-color: #002266;
    background: radial-gradient(ellipse 600px 300px at 50% 92%, #003B97 20%, #002266 100%);
    background-image: url('../../public/banner-the-first-nlo.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    border-radius: 27px;
}

.offices__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}

.offices__content h2 {
    font-size: 18px;
    color: #E8EFFC;
    font-weight: 600;
    width: 240px;
    letter-spacing: 7px;
    text-align: center;
    font-family: var(--font-primary);
    padding-top: 72px;
}

.offices__content h1 {
    width: 240px;
    font-size: 112px;
    color: #E8EFFC;
    font-weight: 800;
    font-family: var(--font-primary);
    margin: 0;
    margin-bottom: 72px;
    text-align: center;
}

.offices__content img {
    width: 46px;
    height: 46px;
    object-fit: cover;
}

.offices__content p {
    font-size: 17px;
    color: #C4D2EB;
    font-weight: lighter;
    font-family: var(--font-primary);
}

/* Services Section */
.services-section {
    padding: 60px 0;
    margin: 0px 153px;
}

.services-header {
    margin-bottom: 40px;
}

.title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 55px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 40px;
    height: 40px;
    background-color: #0044a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 3px;
    margin: 0 auto;
}

.dot {
    width: 7px;
    height: 7px;
    background-color: #e1f0f4;
    border-radius: 50%;
}

.services-title {
    font-size: 36px;
    font-weight: normal;
    color: #002266;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
}

.service-card-container {
    position: relative;
    height: auto;
    min-height: 316px;
    width: 100%;
}

.service-card {
    background: #f7faff;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    height: 316px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    z-index: 1;
}

.service-card:hover {
    height: 395px;
    background: #FFFFFF;
    box-shadow: 0px 5px 38px #00113334;
}

.service-image {
    width: 259px;
    height: 120px;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    margin: 15px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.service-card:hover .service-image {
    width: 100%;
    height: 225px;
    object-fit: cover;
    margin: 0px;
    border-radius: 15px 15px 0px 0px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-info-wrapper {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    justify-content: space-between;
}

.service-card:hover .service-info-wrapper {
    padding: 25px;
}

.service-name {
    font-size: 38px;
    line-height: 30px;
    color: #0a2269;
    font-weight: normal;
    margin: 0px;
    margin-bottom: 20px;
}

.service-description {
    color: #002266;
    font-size: 18px;
    margin: 0px;
}

.arrow-button {
    min-width: 57px;
    height: 57px;
    background-color: #0044a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.arrow-button:hover {
    background-color: #003d7a;
}

.arrow-button img {
    width: 24px;
    height: 24px;
}

.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.view-all-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #0054a6;
    color: #E8EFFC;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 19px;
    font-weight: 300;
    transition: all 0.3s ease;
    width: 150px;
    height: 54px;
}

.view-all-button:hover {
    transform: translateY(-5px);
    background-color: #0360bd;
}






/* Contact Us Section */
.contact-us-section {
    width: 98%;
    margin: 13px auto;
    margin-top: 30px;
    background: transparent linear-gradient(177deg, #00122B 0%, #00122B00 100%) 0% 0% no-repeat padding-box;
    background-image: url(../../public/contact-us-background-image.png);
    background-size: cover;
    border-radius: 22px;
    height: 581px;
}

.contact-us-container {
    display: flex;
    color: #E8EFFC;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.contact-us-container h2 {
    font-size: 18px;
    letter-spacing: 7.2px;
    font-weight: 300;
}

.contact-us-container h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 27px;
    margin-top: 0px;
}

.contact-us-container p {
    font-size: 14px;
    margin-bottom: 57px;
    text-align: center;
    font-weight: lighter;
    max-width: 25%;
    line-height: 15px;
}

/* FSL Button */
.fsl-button-container {
    background-color: none;
    margin: 0px auto 38px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 101px;
    position: relative;
}

.fsl-button {
    display: block;
    width: 268px;
    height: 88px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 200px;
    text-decoration: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    transition: all 0.3s ease, background-color 0.6s ease-out;
}

.fsl-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
}

.fsl-button-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    z-index: 2;
}

.fsl-button-text {
    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: 500;
    color: #E8EFFC;
    transition: font-size 0.3s ease;
}

.fsl-button-image {
    width: 61px;
    height: 61px;
    background-color: #012266;
    border-radius: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fsl-button-image img {
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 17px;
    height: 17px;
    position: absolute;
}

.arrow-main {
    transform: translateX(0);
}

.arrow-secondary {
    transform: translateX(-250%);
}

.fsl-button:hover .fsl-button-image {
    width: 76px;
    height: 76px;
}

.fsl-button:hover .fsl-button-image img {
    width: 24px;
    height: 24px;
}

.fsl-button:hover .arrow-main {
    transform: translateX(250%);
}

.fsl-button:hover .arrow-secondary {
    transform: translateX(0);
}

.fsl-button:active .arrow-main {
    transform: translateX(80%);
}

.fsl-button:active .arrow-secondary {
    transform: translateX(-20%);
}

.bg-animation {
    width: 0%;
    height: 100%;
    background: transparent linear-gradient(90deg, #012266 0%, #0044A6 100%) 0% 0% no-repeat padding-box;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 200px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    z-index: 1;
}

.fsl-button:hover .bg-animation {
    width: 100%;
    transition: width 0.03s ease-in, opacity 0.03s ease-in;
    animation: moveGradient 3s linear infinite;
    opacity: 1;
}

.fsl-button:not(:hover) .bg-animation {
    opacity: 0;
    width: 0%;
}

@keyframes moveGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* Responsive Styles */

/* Breakpoint específico para why-choose-wrapper entre 1532px y 1201px */
@media (max-width: 1532px) and (min-width: 1201px) {
    .why-choose-wrapper {
        margin: 0px 100px;
    }
    
    .why-choose-container {
        gap: 100px;
    }
    
    .why-choose-section {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .why-title {
        font-size: 1.4rem;
    }
    
    .why-text {
        font-size: 20px;
        max-width: 400px;
        margin-bottom: 35px;
    }
    
    .why-choose-right-title {
        font-size: 23px;
        margin-bottom: 25px;
    }
    
    .advantages-cards-container {
        grid-template-columns: repeat(3, minmax(230px, 280px));
        gap: 18px;
    }
    
    .advantage-card {
        height: 175px;
    }
    
    .advantage-image {
        height: 80px;
        width: 130px;
        border-radius: 40px;
        margin-top: 17px;
        margin-left: 25px;
    }
    
    .advantage-title {
        font-size: 22px;
        width: 160px;
    }
    
    .advantage-description {
        font-size: 12px;
        line-height: 14px;
        padding: 0 25px;
        margin-bottom: 35px;
    }
}

/* Contact-us responsive styles */
@media (max-width: 1200px) {
    .contact-us-section {
        height: 520px;
    }

    .contact-us-container h2 {
        font-size: 16px;
        letter-spacing: 6px;
        margin-bottom: 40px;
    }

    .contact-us-container h1 {
        font-size: 38px;
        margin-bottom: 24px;
    }

    .contact-us-container p {
        font-size: 14px;
        max-width: 80%;
        margin-bottom: 50px;
    }
}

@media (max-width: 992px) {
    .contact-us-section {
        height: 480px;
    }

    .contact-us-container h2 {
        font-size: 15px;
        letter-spacing: 5px;
        margin-bottom: 35px;
    }

    .contact-us-container h1 {
        font-size: 34px;
        margin-bottom: 20px;
        text-align: center;
    }

    .contact-us-container p {
        max-width: 90%;
        margin-bottom: 45px;
    }

    /* Ajustes para el botón */
    .fsl-button {
        width: 240px;
        height: 78px;
    }

    .fsl-button:hover {
        height: 90px;
    }

    .fsl-button-text {
        font-size: 18px;
    }

    .fsl-button:hover .fsl-button-text {
        font-size: 21px;
    }

    .fsl-button-image {
        width: 56px;
        height: 56px;
    }

    .fsl-button:hover .fsl-button-image {
        width: 68px;
        height: 68px;
    }
    
    .arrow-main {
        transform: translateX(0);
        opacity: 1;
    }
    
    .arrow-secondary {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-main {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-secondary {
        transform: translateX(0);
        opacity: 1;
    }
    
    .fsl-button:active .arrow-main {
        transform: translateX(80%);
        opacity: 0;
    }
    
    .fsl-button:active .arrow-secondary {
        transform: translateX(-20%);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .contact-us-section {
        height: 450px;
        background-position: center center;
    }

    .contact-us-container h2 {
        font-size: 14px;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }

    .contact-us-container h1 {
        font-size: 30px;
        margin-bottom: 18px;
        padding: 0 15px;
        line-height: 1.3;
    }

    .contact-us-container p {
        font-size: 13px;
        line-height: 1.5;
        max-width: 95%;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    /* Más ajustes para el botón */
    .fsl-button-container {
        height: 90px;
        margin: 0px auto 30px auto;
    }

    .fsl-button {
        width: 220px;
        height: 70px;
    }

    .fsl-button:hover {
        height: 80px;
    }

    .fsl-button-text {
        font-size: 17px;
    }

    .fsl-button:hover .fsl-button-text {
        font-size: 19px;
    }

    .fsl-button-image {
        width: 50px;
        height: 50px;
    }

    .fsl-button:hover .fsl-button-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 576px) {
    .contact-us-section {
        height: 420px;
        border-radius: 16px;
    }

    .contact-us-container h2 {
        font-size: 12px;
        letter-spacing: 3px;
        margin-bottom: 25px;
    }

    .contact-us-container h1 {
        font-size: 26px;
        margin-bottom: 16px;
        padding: 0 10px;
    }

    .contact-us-container p {
        font-size: 12px;
        max-width: 100%;
        padding: 0 25px;
        margin-bottom: 35px;
    }

    /* Ajustes adicionales para el botón */
    .fsl-button-container {
        height: 80px;
        margin: 0px auto 25px auto;
    }

    .fsl-button {
        width: 200px;
        height: 60px;
    }

    .fsl-button:hover {
        height: 70px;
    }

    .fsl-button-text {
        font-size: 16px;
    }

    .fsl-button:hover .fsl-button-text {
        font-size: 18px;
    }

    .fsl-button-image {
        width: 45px;
        height: 45px;
    }

    .fsl-button-image img {
        width: 14px;
        height: 14px;
    }

    .fsl-button:hover .fsl-button-image {
        width: 54px;
        height: 54px;
    }

    .fsl-button:hover .fsl-button-image img {
        width: 18px;
        height: 18px;
    }
    
    .arrow-main {
        transform: translateX(0);
        opacity: 1;
    }
    
    .arrow-secondary {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-main {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-secondary {
        transform: translateX(0);
        opacity: 1;
    }
    
    .fsl-button:active .arrow-main {
        transform: translateX(80%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-secondary {
        transform: translateX(-20%);
        opacity: 1;
    }
}

@media (max-width: 375px) {
    .contact-us-section {
        height: 380px;
        border-radius: 14px;
    }

    .contact-us-container h2 {
        font-size: 10px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .contact-us-container h1 {
        font-size: 22px;
        margin-bottom: 14px;
        padding: 0 8px;
    }

    .contact-us-container p {
        font-size: 11px;
        line-height: 1.4;
        padding: 0 18px;
        margin-bottom: 30px;
    }

    /* Ajustes finales para el botón */
    .fsl-button-container {
        height: 70px;
        margin: 0px auto 20px auto;
    }

    .fsl-button {
        width: 180px;
        height: 55px;
    }

    .fsl-button:hover {
        height: 62px;
    }

    .fsl-button-text {
        font-size: 14px;
    }

    .fsl-button:hover .fsl-button-text {
        font-size: 16px;
    }

    .fsl-button-image {
        width: 40px;
        height: 40px;
    }

    .fsl-button-image img {
        width: 12px;
        height: 12px;
    }

    .fsl-button:hover .fsl-button-image {
        width: 46px;
        height: 46px;
    }

    .fsl-button:hover .fsl-button-image img {
        width: 14px;
        height: 14px;
    }
    
    .arrow-main {
        transform: translateX(0);
        opacity: 1;
    }
    
    .arrow-secondary {
        transform: translateX(-100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-main {
        transform: translateX(100%);
        opacity: 0;
    }
    
    .fsl-button:hover .arrow-secondary {
        transform: translateX(0);
        opacity: 1;
    }
    
    .fsl-button:active .arrow-main {
        transform: translateX(80%);
        opacity: 0;
    }
    
    .fsl-button:active .arrow-secondary {
        transform: translateX(-20%);
        opacity: 1;
    }
}

/* Responsive Styles */

/* Breakpoint específico para services-grid entre 1200px y 768px */
@media (max-width: 1200px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .service-card {
        height: 350px;
    }
    
    .service-card:hover {
        height: 430px;
    }
    
    .service-image {
        width: 100%;
        height: 140px;
        margin: 20px;
        border-radius: 70px;
    }
    
    .service-card:hover .service-image {
        height: 250px;
        margin: 0px;
    }
    
    .service-name {
        font-size: 32px;
    }
    
    .service-description {
        font-size: 16px;
    }
    
    .services-section {
        margin: 0px 80px;
        padding: 50px 0;
    }
    
    .title-container {
        margin-bottom: 45px;
    }
    
    .services-title {
        font-size: 32px;
    }
}

@media (max-width: 990px) {
    .hero {
        height: auto;
        min-height: 800px;
        padding: 60px 20px;
        top: 40px;
    }

    .hero-content {
        margin-left: 20px;
        margin-top: 90px;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.2;
    }

    .service-buttons {
        justify-content: center;
    }

    .service-btn {
        width: 100%;
        max-width: 300px;
        height: 100px;
    }

    .service-btn-content {
        width: 100%;
        padding: 0 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-left: 85%;
    }

    .why-choose-wrapper {
        margin: 0px 20px;
    }

    .why-choose-container {
        flex-direction: column;
        gap: 40px;
    }

    .advantages-cards-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .advantage-card {
        width: 100%;
        max-width: 400px;
        height: fit-content;
        height: 175px;
    }

    .advantage-image {
        width: 120px;
        height: 70px;
    }

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

    .stat-value {
        font-size: 50px;
    }

    .stat-label {
        font-size: 14px;
    }

    .services-section {
        margin: 0px 20px;
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }


}





















/* Add more responsive breakpoints for better layout */
@media (max-width: 1200px) {
    .hero {
        padding: 80px 30px;
    }

    .hero-content {
        margin-left: 50px;
    }

    .hero h1 {
        font-size: 60px;
        width: 100%;
        max-width: 500px;
    }

    .service-buttons {
        flex-wrap: wrap;
        gap: 15px;
    }

    .service-btn {
        height: 120px;
    }

    .service-btn-content {
        width: 280px;
    }

    .why-choose-wrapper {
        margin: 0px 80px;
    }

    .why-choose-container {
        gap: 60px;
    }

    .advantages-cards-container {
        grid-template-columns: repeat(2, minmax(250px, 312px));
        justify-items: center;
    }

    .stat-value {
        font-size: 60px;
    }
}

@media (max-width: 1024px) {
    .advantages-cards-container {
        grid-template-columns: repeat(2, minmax(250px, 312px));
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 700px;
        top: 40px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        margin: 0 auto 15px auto;
    }

    .webtools-label {
        margin: 30px 0;
    }

    .service-btn {
        height: 80px;
    }

    .service-btn-content {
        font-size: 18px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .service-icon::before {
        width: 65px;
        height: 65px;
    }

    .why-choose-section {
        padding: 40px 0;
    }

    .why-choose-wrapper {
        margin: 0px 15px;
    }

    .why-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .why-text {
        font-size: 16px;
        text-align: center;
    }

    .about-us-btn {
        display: block;
        text-align: center;
        margin: 0 auto;
        max-width: 200px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .why-choose-right-title {
        text-align: center;
        font-size: 20px;
    }

    .advantage-image {
        margin-left: 15px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
    }

    .stat-item {
        width: 100%;
        margin-bottom: 30px;
    }

    .stat-value {
        font-size: 40px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-card {
        height: 250px;
    }

    .service-card:hover {
        height: 320px;
    }

    .view-all-button {
        width: 140px;
        height: 50px;
        font-size: 16px;
    }
}
