/* Vazir - Main UI font */
@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir.woff2') format('woff2'),
        url('../fonts/Vazir.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Vazir';
    src: url('../fonts/Vazir-Bold.woff2') format('woff2'),
        url('../fonts/Vazir-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Sepahbod';
    src: url('../fonts/Sepahbod.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden !important;
    direction: rtl;
    align-items: center;
}

body {
    font-family: 'Vazir', Tahoma, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sepahbod', Tahoma, sans-serif;
}

.custom-container {
    margin-left: 5%;
    margin-right: 5%;
}

/* Hero Section */
.hero-section {
    width: 100%;
    height: 95vh;
    position: relative;
    overflow: hidden;
}

.hero-section>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Header */
/* کانتینر اصلی */
.navContainer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: transparent;
    border-bottom: 2px solid rgba(208, 208, 208, 0.9);
}

/* لوگو */
.name-logo {
    display: flex;
    align-items: center;
    gap: 20px;
}

.name-logo h1 {
    font-size: 34px;
    color: #464646;
    margin: 0;
    padding-top: 10px;
}

/* ناوبری اصلی */
.navigation-items-main {
    display: flex;
    gap: 24px;
}

/* لینک‌ها + آیتم "محصولات" */
.navigation-items-main a,
.dropdown-toggle-main {
    position: relative;
    font-size: 20px;
    color: #4F4F4F;
    text-decoration: none;
    padding-bottom: 4px;
    cursor: pointer;
}

/* خط زیر مخفی پیش‌فرض */
.navigation-items-main a::after,
.dropdown-toggle-main::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2C2E83;
    transition: width 0.3s ease-in-out;
}

/* هنگام هاور */
.navigation-items-main a:hover::after,
.dropdown-main:hover .dropdown-toggle-main::after {
    width: 100%;
}

.navigation-items-main a.nav-active::after,
.dropdown-toggle-main.nav-active::after {
    width: 100%;
}

.navigation-items-main a.nav-active,
.dropdown-toggle-main.nav-active {
    font-weight: bold;
}

/* استایل منوی دراپ‌داون */
.dropdown-main {
    position: relative;
}

.dropdown-menu-main {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 160px;
    z-index: 10;
}

.dropdown-menu-main a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background 0.2s;
}

.dropdown-menu-main a:hover {
    background: #f0f0f0;
}

/* باز شدن با هاور در دسکتاپ */
.dropdown-main:hover .dropdown-menu-main {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .navigation-items-main a {
        display: none;
    }
}






/* CTA & Hamburger */
.btn-green {
    background-color: #94C120;
    color: white;
    border: none;
    width: 165px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-green:hover {
    background-color: #82b11f;
    color: white;
}

.btn-hamburger {
    display: none;
    background-color: #2C2E83;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    padding: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.img-logo {
    height: 40px;
    width: auto;
}

/* Hero Content */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 50px;
    width: 95%;
}

.HeroText {
    flex: 1;
    width: 50%;
    text-align: justify;
}

/* Title line divider - replaced image with CSS */
.title-line {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2C2E83 0%, #585ABE 50%, #2C2E83 100%);
    margin: 10px 0;
    border-radius: 2px;
}

.HeroText p {
    padding-top: 30px;
    padding-bottom: 30px;
    font-size: 20px;
    color: #747474;
    font-weight: 600;
    line-height: 2.2rem;
    text-align: justify;
}

.HeroText a {
    width: 200px;
}

.HeroImg {
    max-width: 50%;
    height: auto;
}

.hero-content h2 {
    color: #2C2E83;
    font-size: 48px;
    font-weight: bolder;
}

.hero-content p {
    font-size: 20px;
    color: #717171;
}

/*Header Responsive */
@media (max-width: 1024px) {

    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 100px;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .HeroText {
        align-items: center;
        width: 100%;
    }

    .HeroImg {
        display: none;
    }

    .navContainer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .navigation-items {
        display: none;
    }

    .btn-hamburger {
        display: block;
        position: absolute;
        left: 5%;
        top: 30px;
    }

    .btn-green {
        width: auto;
        padding: 10px 20px;
        font-size: 18px;
    }

    .name-logo h1 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .HeroText h2 {
        font-size: 26px;
    }

    .HeroText p {
        font-size: 17px;
    }
}



.btn-blue {
    background: linear-gradient(to right, #2C2E83, #4042A2, #2C2E83);
    color: white;
    border: none;
    min-width: 225px;
    height: 61px;
    padding-top: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.btn-blue:hover {
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 576px) {
    .btn-blue {
        background: linear-gradient(to right, #2C2E83, #4042A2, #2C2E83);
        color: white;
        border: none;
        min-width: 180px;
        height: 55px;
        padding-top: 12px;
        border-radius: 5px;
        text-decoration: none;
        font-size: 20px;
        transition: all 0.3s ease;
    }
}

.transition-3 {
    transition: all 0.3s ease;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1050;
    transition: right 0.3s ease-in-out;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    margin-bottom: 30px;
}

.sidebar-header h5 {
    font-size: 18px;
    color: #333;
}

.btn-close-sidebar {
    background: none;
    border: none;
    font-size: 24px;
    color: #777;
}

.sidebar-nav .nav-link {
    color: #4F4F4F;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.sidebar-footer {
    position: absolute;
    bottom: 30px;
    left: 20px;
    right: 20px;
}

.sub-menu {
    padding-right: 20px;
    margin-top: 5px;
}

.sub-menu li a {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid #f0f0f0;
}




.vector1 {
    position: relative;
    background-image: linear-gradient(to right, #2C2E83, #585ABE, #2C2E83);
    padding-top: 100px;
    width: 100%;
    height: auto;
    min-height: 530px;
    overflow: visible;
    z-index: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Top inward curve */
.vector1::before,
.vector1::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: white;
    border-radius: 0 0 30% 30%;
    z-index: 1;
}

.vector1::before {
    top: 0;
    transform: translateY(-50%);
}

/* Bottom inward curve */
.vector1::after {
    bottom: 0;
    transform: translateY(50%) rotate(180deg);
}


.groups {
    background-color: #F9F9F9;
    width: 215px;
    height: 251px;
    box-shadow: 0 8px 16px rgba(73, 73, 73, 0.705);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 2;
}

.groups img {
    width: 70px;
    height: 70px;
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translate(-50%, 0);
}

.groups strong {
    font-size: 16px;
    padding-top: 20px;
}

.groups p {
    font-size: 15px;
    padding-right: 15px;
    padding-left: 15px;
    padding-top: 20px;
}

.group1 {
    transform: rotate(3deg);
}

.group2 {
    transform: rotate(2deg);
    margin-top: 30px;
}

.group4 {
    margin-top: 30px;
    transform: rotate(-2deg);
}

.group5 {
    transform: rotate(-3deg);

}


.vector1-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.vector-h1 {
    font-size: 32px;
}

.vector-paragraph {
    width: 60%;
    font-size: 20px;
}

.services-container {
    position: relative;
    width: 100%;
}

.arvintav-services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin-bottom: -100px;
}

.service-card {
    flex: 0 0 auto;
    width: 90%;
    max-width: 380px;
    height: 300px;
    background-color: #F7F7FA;
    border-radius: 10px;
    padding: 30px;
    scroll-snap-align: center;
    position: relative;
}


.service-card:hover {
    box-shadow: 0 8px 16px rgba(73, 73, 73, 0.705);
}

.service-card h2 {
    color: #2B2B2B;
    font-size: 20px;
}

.service-card p {
    color: #494949;
    font-size: 16px;
    text-align: justify;
    padding-top: 10px;
}

.service-card-text {
    padding-top: 30%;
    text-align: right;
}

.service-card span {
    background-color: #2C2E83;
    color: #fff;
    width: 140px;
    height: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    top: 10%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.carousel-controls button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #2C2E83;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (min-width: 576px) {
    .arvintav-services-carousel {
        flex-wrap: wrap;
        overflow-x: unset;
        gap: 30px;
        justify-content: center;
    }

    .service-card {
        flex: 0 0 30%;
        scroll-snap-align: none;
    }

    .carousel-controls {
        display: none;
    }

    .vector-h1 {
        font-size: 28px;
    }

    .vector-paragraph {
        width: 70%;
        font-size: 18px;
    }

}

@media screen and (max-width: 576px) {
    .carousel-controls {
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    .arvintav-services-carousel {
        padding: 20px 15px;
        scroll-padding: 0 15px;
    }

    .arvintav-services-carousel .groups {
        min-width: 65%;
        max-width: 65%;
        width: auto;
        height: auto;
        padding: 20px 15px;
        flex: 0 0 auto;
        scroll-snap-align: center;
        transform: none !important;
        margin-top: 0 !important;
    }

    .arvintav-services-carousel .groups img {
        top: 0;
        transform: translate(-50%, -50%);
        position: relative;
        margin-bottom: 10px;
    }

    .arvintav-services-carousel .groups strong {
        font-size: 17px;
        padding-top: 10px;
    }

    .arvintav-services-carousel .groups p {
        font-size: 15px;
        padding: 10px 10px 0 10px;
        text-align: justify;
    }

    .carousel-controls {
        display: flex;
    }
}



.services-btn {
    margin-top: 170px;
}




.product-section {
    margin-top: 150px;
}

.laptopImg {
    width: 60%;
    height: auto;
    position: absolute;
    left: -100px;
    top: -50px;
}

.phoneImg {
    width: 50%;
    height: auto;
    position: absolute;
    left: -50px;
    top: -50px;
}

.product-text h1 {
    font-size: 20px;
    color: #2C2E83;
    font-weight: bold;
}

.product-text p {
    font-size: 16px;
    color: #494949;
    text-align: justify;
}

.product {
    width: 100%;
    max-width: 570px;
    height: 210px;
    box-shadow: 0 8px 16px rgba(73, 73, 73, 0.705);
    border-radius: 5px;
    background-color: #fff;
    padding: 40px;
    position: relative;
}

.laptopImg,
.phoneImg {
    width: 50%;
    height: auto;
    position: absolute;
    left: -50px;
    top: -50px;
}

.product-text {
    display: flex;
    flex-direction: column;
    justify-content: right;
    text-align: right;
    position: absolute;
    right: 30px;
    width: 59%;
}

@media (max-width: 992px) {
    .product {
        height: auto;
        padding: 30px 20px;
    }

    .product-text {
        position: relative;
        width: 100%;
        right: 0;
        margin-top: 20px;
    }

    .laptopImg,
    .phoneImg {
        position: static;
        width: 80%;
        margin: 0 auto;
        display: block;
    }
}




.satisfaction {
    width: 100%;
    background-image: linear-gradient(to right, #04003B, #0E105E, #04003B);
    position: relative;
    min-height: 445px;
    display: flex;
    justify-content: center;
    margin-top: 200px;
}

.satisfaction-text {
    position: absolute;
    top: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.satisfaction-text h1 {
    font-size: 32px;
    font-weight: bolder;
}

.satisfaction-text p {
    font-size: 18px;
    width: 50%;
}

.image-with-text {
    position: relative;
    display: inline-block;
    text-align: center;
}

.image-with-text img {
    max-width: 345px;
    width: 100%;
    height: auto;
}

.overlay-text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    width: 90%;
    text-align: justify;
    font-size: 16px;
}

.overlay-text p {
    color: #747474;
}

.overlay-text .blue {
    color: #2C2E83;
    margin-top: 25px;
}

/* Large screen layout */
.satisfaction-img {
    display: flex;
    flex-direction: row;
    gap: 50px;
    position: absolute;
    bottom: -150px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

/* Small screen slideshow layout */
.satisfaction-img-slideshow {
    position: absolute;
    bottom: -25%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: auto;
}

.satisfaction-img-slideshow .image-with-text {
    position: absolute;
    width: 80%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.satisfaction-img-slideshow .image-with-text.active {
    opacity: 1;
    position: relative;
}

/* Decorative quotes */
.quote6,
.quote5 {
    position: absolute;
    width: 80px;
    height: 80px;
}

.quote6 {
    top: -30px;
    right: 12%;
}

.quote5 {
    top: -40px;
    left: 12%;
}

@media screen and (max-width: 992px) {
    .ommited-opinion {
        display: none;
    }
}


/* Responsive rules */
@media screen and (max-width: 768px) {
    .satisfaction {
        height: 500px;
    }

    .satisfaction-img {
        display: none !important;
    }


    .image-with-text img {
        max-width: 550px;
        width: 100%;
        height: auto;
    }

    .satisfaction-img-slideshow {
        position: absolute;
        bottom: -35%;
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        height: auto;
    }

    .satisfaction-text h1 {
        width: 80%;
        font-size: 26px;
        font-weight: bolder;
    }

    .satisfaction-text p {
        width: 80%;
        font-size: 18px;
    }

    .overlay-text p {
        font-size: 14px;
    }

    .quote5,
    .quote6 {
        display: none !important;
    }
}



.about-slideshow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1%;
    margin-top: 300px;
    width: 100%;
    flex-wrap: wrap;
}

.about-slideshow-text {
    width: 100%;
    max-width: 500px;
}

.about-slideshow-text h1 {
    color: #2B2B2B;
    font-weight: bolder;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-slideshow-text p {
    font-size: 20px;
    color: #747474;
    font-weight: 600;
    line-height: 2.2rem;
    text-align: justify;
}

.green-dot {
    background-color: #94C120;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-top: 12px;
}

.about-why-items {
    display: flex;
    flex-direction: row;
    gap: 15%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about-why-items p {
    color: #000;
    font-size: 24px;
}

.slideshow-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slideshow img {
    border-radius: 24px;
}

.dots {
    margin-top: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #333;
    box-shadow: 0 0 4px #333;
}




/* Slideshow decorative circles - replaced images with CSS */
.design1-slideshow,
.design2-slideshow,
.design3-slideshow,
.design4-slideshow {
    position: absolute;
    z-index: -1;
    /* پشت محتوای اصلی */
    pointer-events: none;
    /* برای جلوگیری از کلیک‌پذیری */
    border-radius: 50%;
    filter: blur(25px);
}

.design1-slideshow {
    top: 150px;
    left: 5%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(126, 34, 206, 0.2) 50%, transparent 100%);
}

.design2-slideshow {
    top: 500px;
    right: 10%;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(147, 51, 234, 0.35) 0%, rgba(126, 34, 206, 0.18) 50%, transparent 100%);
}

.design3-slideshow {
    bottom: 100px;
    left: 30%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(147, 51, 234, 0.2) 50%, transparent 100%);
}

.design4-slideshow {
    top: 30px;
    right: 25%;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.38) 0%, rgba(147, 51, 234, 0.19) 50%, transparent 100%);
}

@media (max-width: 768px) {
    .design1-slideshow {
        top: 80px;
        left: 10%;
        width: 70px;
        height: 70px;
    }

    .design2-slideshow {
        top: 380px;
        right: 5%;
        width: 100px;
        height: 100px;
    }

    .design3-slideshow {
        bottom: 60px;
        left: 20%;
        width: 90px;
        height: 90px;
    }

    .design4-slideshow {
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
    }
}







@media (max-width: 1200px) {
    .about-slideshow {
        flex-direction: column;
        align-items: center;
    }

    .slideshow-wrapper {
        margin-top: 50px;
    }

    .about-why-items {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 15%;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-slideshow {
        flex-direction: column;
        align-items: center;
    }

    .about-slideshow-text,
    .slideshow-wrapper {
        max-width: 100%;
    }

    .slideshow {
        height: 300px;
    }
}


.cooperations {
    margin-top: 100px;
    background-color: #F6F6F9;
    padding-top: 100px;
    width: 100%;
    min-height: 655px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cooperations h1 {
    color: #2B2B2B;
    font-weight: bolder;
    font-size: 32px;
}

.cooperations p {
    color: #747474;
    font-size: 20px;
    width: 50%;
}

.cooperation-item {
    background-color: #fff;
    width: 219px;
    height: 120px;
    align-content: center;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(73, 73, 73, 0.573);
    cursor: pointer;
}

.cooperation-item:hover {
    background-color: #fff;
    width: 219px;
    height: 120px;
    align-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(73, 73, 73, 0.573);
}

.cooperation-row1 {
    gap: 20px;
    margin-bottom: 30px;
}

.cooperation-row2 {
    gap: 20px;
}

.weblog {
    margin-top: 150px;
    display: flex;
    text-align: center;
    align-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(73, 73, 73, 0.573);
    padding: 23px;
    height: 100%;
}

.blog-item img {
    width: 100%;
    height: auto;
}


.weblog h1 {
    color: #2B2B2B;
    font-weight: bolder;
    font-size: 32px;
}

.weblog p {
    color: #747474;
    font-size: 20px;
    width: 50%;
}

.blog-text h1 {
    align-items: start;
    justify-content: right;
    text-align: right;
    margin-top: 30px;
    font-size: 20px;
    font-weight: bolder;
    color: #2B2B2B;
}

.blog-text p {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: justify;
    font-size: 16px;
    color: #000;
}

.footer {
    width: 90%;
    margin-top: 150px;
    background: linear-gradient(to bottom, #04013B, #15125D);
    padding: 3% 5%;
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    border-radius: 10px;
    min-height: 380px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    margin-left: 10%;
}

.footer-section h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #fff;
}

.line {
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    width: 100%;
    margin-bottom: 15px;
}

.footer p {
    font-size: 16px;
    line-height: 1.6;
    color: #F4F4F4;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    text-decoration: none;
    color: #F4F4F4;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #a9a9a9;
}

.social-links .social-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.social-links .social-item:hover {
    transform: translateX(-5px);
}

.social-links .social-item img {
    width: 16px;
    height: 16px;
    margin-left: 10px;
}

.social-links .social-item p {
    margin: 0;
    font-size: 16px;
    color: #F4F4F4;
}

.line {
    background-color: #7a7a7a83;
    height: 2px;
    width: 100%;
}

.rights p {
    columns: #797979;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding-top: 7%;
    }

    .footer-section {
        text-align: center;
        min-width: 100%;
        margin-left: 0;
        margin-bottom: 50px;
    }

    .btn-hamburger {
        display: block;
    }

    .navigation-items a {
        display: none;
    }

    .quick-access {
        display: none;
    }

    .about-slideshow {
        display: flex;
        flex-direction: column;
    }

    .cooperations p {
        width: 80%;
    }

    .cooperation-row1,
    .cooperation-row2 {
        width: 90%;
    }

    .weblog p {
        width: 80%;
    }
}

@media (max-width: 576px) {

    .about-slideshow-text {
        width: 90%;
    }

    .about-slideshow-text h1 {
        font-size: 30px;
    }

    .about-slideshow-text p {
        font-size: 18px;
    }

    .about-why-items p {
        color: #000;
        font-size: 20px;
    }

}



/*Services page*/
.service-hero-section {
    width: 100%;
    overflow: hidden;
}

/* Decorative ellipse circles - replaced images with CSS */
.ellipseCircle {
    position: absolute;
    top: 10%;
    right: 0;
    z-index: 1;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 90, 190, 0.3) 0%, rgba(44, 46, 131, 0.1) 70%);
    filter: blur(20px);
}

.ellipse2 {
    position: absolute;
    top: 12%;
    right: 20%;
    z-index: 1;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 90, 190, 0.25) 0%, rgba(44, 46, 131, 0.08) 70%);
    filter: blur(15px);
}

.service-hero {
    position: relative;
    /* <- Add this */
    margin-top: 150px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}


.service-hero h1 {
    color: #2B2B2B;
    font-weight: bolder;
    font-size: 32px;
}

.vector9 {
    font-size: 20px;
    color: #235342;
}

.stars {
    position: absolute;
    top: 25%;
    left: 10%;
    text-align: left;
    z-index: 1;
}

.stars h2 {
    color: #9D9D9D;
    font-size: 16px;
}

.service-hero-blue.container {
    overflow: visible !important;
}

.service-hero-blue-wrapper {
    position: relative;
    max-width: 1280px;
    margin-top: 150px;
}

.service-hero-blue-wrapper-small {
    max-width: 1280px;
    margin-top: 65%;
    display: none;
}

.hero-floating-img {
    position: absolute;
    bottom: 10%;
    /* Adjust based on desired protrusion */
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    height: auto;
    z-index: 2;
}

.dottedImg {
    position: absolute;
    top: -45%;
    left: 8%;
}

.shadowImg {
    position: absolute;
    bottom: -200px;
    left: 10px;
}

.service-hero-blue {
    background-color: #002439;
    height: 310px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    clip-path: polygon(0% 25%,
            /* Top left */
            50% 0%,
            /* Peak of triangle */
            100% 25%,
            /* Top right */
            100% 100%,
            /* Bottom right */
            0% 100%
            /* Bottom left */
        );
    position: relative;
    z-index: 1;
    /* Behind the image */
    margin-top: 10%;
}


.with-you {
    margin-top: 100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 980px;
}

.gradient-text h1 {
    font-size: 24px;
    background: linear-gradient(to right, #2B2B2B, #575353);
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    /* WebKit-specific */
    -webkit-text-fill-color: transparent;
    color: transparent;
    /* Optional fallback */
    display: inline-block;
}

.with-you p {
    color: #717171;
    font-size: 18px;
}

.middle-flex-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 150px;
}

.middle-flex-column h1 {
    font-size: 24px;
    color: #2B2B2B;
}

.services-container {
    position: relative;
    width: 90%;
}

@media (min-width: 1700px) {
    .services-container {
        position: relative;
        width: 60%;
        margin-right: 10%;
        margin-left: 10%;
    }
}

.services-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.service-card {
    flex: 0 0 auto;
    width: 90%;
    max-width: 380px;
    height: 300px;
    background-color: #F7F7FA;
    border-radius: 10px;
    padding: 30px;
    scroll-snap-align: center;
    position: relative;
}

.service-card h2 {
    color: #2B2B2B;
    font-size: 20px;
}

.service-card p {
    color: #494949;
    font-size: 16px;
    text-align: justify;
    padding-top: 10px;
}

.service-card-text {
    padding-top: 30%;
    text-align: right;
}

.service-card span {
    background-color: #2C2E83;
    color: #fff;
    width: 140px;
    height: 50px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: absolute;
    top: 10%;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.carousel-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.carousel-controls button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #2C2E83;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {

    .services-carousel {
        flex-wrap: wrap;
        overflow-x: unset;
        gap: 30px;
        justify-content: center;
    }

    .service-card {
        flex: 0 0 30%;
        scroll-snap-align: none;
    }

    .carousel-controls {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .carousel-controls {
        display: flex;
    }
}


.consult {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
}

.consult-text {
    justify-content: right;
    text-align: right;
}

.consult-text p {
    color: #717171;
    font-size: 24px;
    text-align: justify;
}

.consult-grid {
    gap: 15px;
}

.consult-grid-item {
    background-color: #F7F7FA;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(73, 73, 73, 0.705);
    width: 150px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
}

.leavesImg {
    width: 58px;
}

.starImg {
    width: 90px;
}

.adviceImg {
    width: 64px;
}

.leaderImg {
    width: 54px;
}

.consult-image {
    position: relative;
}

.consult-image-line1 {
    background-color: #2B2B2B;
    color: #fff;
    width: 250px;
    height: 51px;
    border-radius: 15px;
    position: absolute;
    top: 28%;
    right: -15%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.consult-image-line1 h2 {
    font-size: 20px;
}

.consult-image-line2 {
    background-color: #2B2B2B;
    width: 165px;
    height: 51px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    right: -15%;
}

.consult-blue-banner {
    background-image: linear-gradient(to right, #000569, #1B1F72);
    width: 100%;
    height: 271px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
}

.consult-blue-banner h2 {
    color: #fff;
    font-size: 24px;
    position: relative;
    z-index: 2;
    width: 40%;
    text-align: right;
    line-height: 2.2rem;
}

@media (max-width: 576px) {

    .consult-text p {
        font-size: 20px;
    }

}

.question-image {
    position: relative;
    z-index: 2;
    width: 18%;
    height: auto;
}

.vector2 {
    position: absolute;
    right: 0;
    z-index: 1;
}

.vector3 {
    position: absolute;
    left: 0;
    z-index: 1;
}

.btn-white {
    background-color: #fff;
    color: black;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 24px;
    position: relative;
    z-index: 2;
    height: 70px;
    min-width: 170px;
    padding-top: 20px;
}

.btn-white:hover {
    background-color: #dddddd;
}


.procceess {
    width: 100%;
    height: auto;
}

.proccess-big {
    width: 100%;
    height: auto;
}

.proccess-small {
    width: 100%;
    height: auto;
    display: none;
}



/* Base styles (unchanged from yours) */
.why-arvintav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    flex-wrap: wrap;
    width: 100%;
}

.arvintav-image-group {
    position: relative;
    flex: 1 1 40%;
    width: 100%;
    height: auto;
    min-width: 300px;

}

.main-why-image {
    position: relative;
    width: 100%;
    height: auto;
}

.image-left {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35%;
}

.image-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 22%;
}

.why-text-container {
    flex: 1 1 50%;
    min-width: 300px;
}

/* Media query for smaller screens (stack vertically) */
@media (max-width: 992px) {
    .why-arvintav {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        width: 100%;
        margin: 100px auto;
    }

    .why-text {
        text-align: center;
    }

    .why-text p {
        font-size: 22px;
        line-height: 1.5rem;
        margin-left: 5%;
        margin-right: 5%;
    }

    .why-items {
        margin-right: 5%;
    }

}


.why-text {
    display: flex;
    flex-direction: column;
    justify-content: right;
}

.why-text {
    color: #747474;
    font-size: 24px;
    text-align: right;
}

.why-text p {
    line-height: 2.2rem;
    text-align: justify;
}

.why-items {
    display: flex;
    flex-direction: row;
    gap: 10%;
}

.why-items p {
    color: #2C2E83;
    font-size: 24px;
}

.vertical-blue-line {
    width: 2px;
    height: 40px;
    background-color: #2C2E83;
}



.benefits {
    display: flex;
    flex-direction: row;
    gap: 10%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
}

.benefits-text {
    flex: 1 1 50%;
    justify-content: right;
    text-align: right;
}

.benefits-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefits-text p {
    color: #747474;
    font-size: 1.5rem;
    line-height: 2.2rem;
    text-align: justify;
}

.benefit-image {
    flex: 1 1 40%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-image img {
    max-width: 100%;
    height: auto;
}

.blue-cooperation-img {
    background-color: #2C2E83;
    width: 8%;
    height: 80%;
    position: absolute;
    right: -8%;
    top: 10%;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

@media (min-width: 1400px) {

    .blue-cooperation-img {
        background-color: #2C2E83;
        width: 8%;
        height: 80%;
        position: absolute;
        right: -4.5%;
        top: 10%;
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
    }

}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .benefits {
        flex-direction: column;
        gap: 2rem;
        width: 80%;
    }

    .benefits-text,
    .benefit-image {
        flex: 1 1 100%;
        text-align: center;
    }

    .benefits-text h1 {
        font-size: 2rem;
    }

    .benefits-text p {
        font-size: 1.25rem;
        line-height: 2rem;
        text-align: justify;
    }
}

@media (max-width: 600px) {
    .benefits-text h1 {
        font-size: 1.75rem;
    }

    .benefits-text p {
        font-size: 22px;
        line-height: 1.8rem;
    }

    .why-items p {
        color: #2C2E83;
        font-size: 20px;
    }

}




.Newest {
    background-color: #F6F6F9;
    border-radius: 15px;
    height: 262px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding: 50px;
}

.Newest h3 {
    font-size: 20px;
    width: 150px;
    text-align: right;
}

.blue-badge {
    background-color: #2C2E83;
    color: #fff;
    font-size: 20px;
    width: 120px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: absolute;
    top: 5px;
    right: -50px;
}

.newest-item-right {
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: auto;
    max-width: 485px;
    min-height: 214px;
    text-align: right;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(73, 73, 73, 0.705);
}

.newest-item-right h2 {
    color: #2C2E83;
    font-size: 20px;
}

.newest-item-right p {
    color: #494949;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;
}


.newest-item-left {
    background-color: #fff;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    height: auto;
    max-width: 485px;
    min-height: 214px;
    text-align: right;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(73, 73, 73, 0.705);
}

.newest-item-left h2 {
    color: #2C2E83;
    font-size: 20px;
}

.newest-item-left p {
    color: #494949;
    font-size: 16px;
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    line-clamp: 3;

    overflow: hidden;
    text-overflow: ellipsis;
}


.red-arrow-right {
    background-color: red;
    width: 80px;
    height: 30px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {

    .Newest {
        background-color: #F6F6F9;
        border-radius: 15px;
        height: auto;
        min-height: 262px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        position: relative;
        padding: 30px;
        width: 85%;
    }
}

@media (max-width: 576px) {
    .newest-item-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
    }

    .newest-item-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 50px;
    }

    .Newest img {
        width: 60%;
        height: auto;
    }
}



@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 26px;
    }

    .consult {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .proccess-big {
        display: none;
    }

    .proccess-small {
        display: block;
    }

    .consult-blue-banner {
        width: 100%;
        height: 500px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        text-align: center;
    }

    .consult-blue-banner h2 {
        text-align: center;
        width: 90%;
    }

    .question-image {
        width: 35%;
        height: auto;
    }

    .vector2,
    .vector3 {
        display: none;
    }

    .blue-badge {
        padding-top: 5px;
        font-size: 18px;
        width: 100px;
        height: 40px;
        position: absolute;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }

}

@media (max-width: 992px) {
    .service-hero-blue-wrapper-small {
        display: block;
    }

    .service-hero-blue-wrapper {
        display: none;
    }

    .consult-image {
        display: none;
    }
}

@media (max-width: 1200px) {
    .consult-grid {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media (max-width: 1024px) {

    .service-hero {
        position: relative;
        margin-top: 200px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        z-index: 2;
    }

    .stars {
        display: none;
    }

    .with-you {
        width: 90%;
    }

    .consult-blue-banner h2 {
        font-size: 20px;
    }
}


/*product page*/
.hero-image-wrapper {
    position: relative;
    width: 100%;
    margin-top: 200px;
}

.main-banner {
    width: 100%;
    height: auto;
    display: block;
}

.coding-image,
.square-btn,
.rect-btn,
.posito-info {
    position: absolute;
}

.coding-image {
    left: 5%;
    bottom: 0;
    width: 40%;
}

.square-btn {
    right: 1%;
    bottom: 0;
    width: 13%;
}

.rect-btn {
    right: 16%;
    bottom: 0;
    width: 30%;
}

.posito-info {
    top: 25%;
    right: 5%;
    width: 70%;
    color: #FFF;
}

.posito-info h1 {
    font-size: 30PX;
}

.posito-info P {
    font-size: 24PX;
}

/*----for small page----*/
.hero-image-wrapper-small {
    position: relative;
    width: 100%;
    margin-top: 200px;
    display: block;
    display: none;
}

.posito-blue-banner-small {
    background-image: linear-gradient(to bottom, #4042A2, #161847);
    border-radius: 24px;
    width: 100%;
    min-height: 400px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.coding-image-small {
    position: absolute;
    left: 5%;
    bottom: 0;
    width: 50%;
    z-index: 2;
}

.posito-info-small {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 70%;
    color: #FFF;
    z-index: 2;
}

.posito-info-small h1 {
    font-size: 22px;
    margin-bottom: 20px;
}

.posito-info-small p {
    font-size: 18px;
}

.square-btn-small,
.rect-btn-small {
    position: absolute;
    bottom: -33%;
}

.square-btn-small {
    right: 1%;
    width: 27%;
}

.rect-btn-small {
    left: 0;
    width: 65%;
}

.Introduction {
    display: flex;
    flex-direction: row;
    gap: 7%;
    justify-content: space-between;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 60px;
    flex-wrap: wrap;
}

.benefits-text {
    flex: 1 1 45%;
    text-align: right;
}

.benefits-text h1 {
    font-size: 26px;
    margin-bottom: 20px;
}

.benefits-text p {
    font-size: 24px;
    line-height: 1.8;
}

.Introduction-image {
    position: relative;
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Introduction-image img {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    height: auto;
}

/* Make blue box follow the image's size responsively */
.blue-Introduction-image {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 403 / 347;
    /* Keeps the proportion of the original box */
    border-radius: 17px;
    background-color: #2C2E83;
    position: absolute;
    transform: rotate(-5deg);
    z-index: 1;
}

@media (max-width: 992px) {
    .benefits-text p {
        font-size: 20px;
        line-height: 1.8;
        margin-bottom: 50px;
    }

    .Introduction {
        margin-top: 0;
    }
}

@media (max-width: 600px) {

    .Introduction-image img {
        width: 90%;
        max-width: 400px;
        position: relative;
        z-index: 2;
        height: auto;
    }

    .blue-Introduction-image {
        width: 90%;
        transform: rotate(-3deg);
        border-radius: 12px;
    }

    .benefits-text {
        width: 90%;
    }

    .benefits-text h1 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .benefits-text p {
        font-size: 20px;
        line-height: 1.8;
    }
}


.product-benefit-explanation {
    font-size: 20px;
    color: #717171;
    padding-top: 30px;
    padding-bottom: 70px;
}

.product-benefit-row {
    gap: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-benefit-item {
    display: flex;
    flex-direction: column;
    justify-content: right;
    text-align: right;
    margin-bottom: 40px;
}

.product-benefit-item h2 {
    font-size: 14px;
    color: #2C2E83;
    line-height: 1.7rem;
    text-align: justify;
    padding-top: 5px;
}

.product-benefit-item p {
    font-size: 15px;
    color: #717171;
    text-align: justify;
    padding-top: 10px;
}

.product-benefit-logo-name {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 90%;
}

.benefit-logo {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px;
    min-height: 58px;
    max-width: 58px;
    max-height: 58px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.benefit-logo img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.blue-logo {
    background-color: #DEF1FF;
}

.purple-logo {
    background-color: #EFEDFF;
}

.green-logo {
    background-color: #E9FFF6;
}

.red-logo {
    background-color: #FFEFEF;
}

.yellow-logo {
    background-color: #FFF9EE;
}

.pink-logo {
    background-color: #FFB6F4;
}

@media (max-width: 1200px) {

    .product-benefit-row {
        gap: 3%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .product-benefit-logo-name {
        gap: 15px;
        width: 100%;
    }
}

@media (max-width: 768px) {

    .product-benefit-item {
        width: 90%;
    }


    .product-benefit-item p {
        width: 90%;
    }
}




.contact-us-blue-background-group {
    position: relative;
}

.contact-us-blue {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 2rem 1rem;
    margin-top: 100px;
    margin-bottom: -150px;
}

.contact-us-blue-background {
    width: 100%;
    height: auto;
    display: block;
}

.contact-us-blue-background-group {
    position: relative;
    width: 100%;
    height: auto;
}

.contact-us-blue-background-group-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    position: absolute;
    right: 5%;
    top: 30%;
    width: 80%;
    max-width: 600px;
}

.contact-us-blue-background-group-text h1 {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.contact-us-blue-background-group-text span {
    color: #94C120;
}

.contact-us-blue-background-group-text .btn {
    width: fit-content;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
}

.groupLaptop,
.group56,
.group57 {
    position: absolute;
    max-width: 100%;
    height: auto;
}

.groupLaptop {
    bottom: 13%;
    left: 10%;
    width: 35%;
}

.group56 {
    left: 0;
    top: 0;
    width: 12%;
}

.group57 {
    right: 0;
    top: 0;
    width: 20%;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .contact-us-blue {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 2rem 1rem;
        margin-top: 50px;
        margin-bottom: -200px;
    }

    .contact-us-blue-background-group-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: right;
        position: absolute;
        right: 5%;
        top: 22%;
        width: 80%;
        max-width: 600px;
    }

    .contact-us-blue-background-group-text h1 {
        color: #fff;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 0.5rem 0;
    }

    .contact-us-blue-background-group-text span {
        color: #94C120;
    }

    .contact-us-blue-background-group-text .btn {
        width: fit-content;
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-us-blue-background-group-text {
        right: 5%;
        top: 25%;
        width: 90%;
    }

    .contact-us-blue-background-group-text h1 {
        font-size: 1.2rem;
    }

    .groupLaptop {
        width: 25%;
        bottom: 10%;
        left: 5%;
    }

    .group56,
    .group57 {
        width: 12%;
    }
}

@media (max-width: 480px) {
    .contact-us-blue-background-group-text {
        position: static;
        margin-top: 1rem;
        align-items: center;
        text-align: center;
    }

    .contact-us-blue-background-group-text h1 {
        font-size: 1rem;
    }

    .groupLaptop,
    .group56,
    .group57 {
        display: none;
        /* Hide decorative images on small screens */
    }
}


.contact-us-blue-background-group-small {
    position: relative;
    display: none;
}

.contact-us-blue-small {
    position: relative;
    width: 100%;
    padding: 2rem 1rem;
}

.contact-us-blue-background-small {
    width: 100%;
    height: auto;
    display: block;
    background-image: linear-gradient(to right, #4143A4, #2C2E83);
    min-height: 400px;
    border-radius: 24px;
}

.contact-us-blue-background-group-small {
    position: relative;
    width: 100%;
    height: auto;
}

.contact-us-blue-background-group-text-small {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
    position: absolute;
    right: 5%;
    top: 25%;
    width: 80%;
    max-width: 600px;
}

.contact-us-blue-background-group-text-small h1 {
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.contact-us-blue-background-group-text-small span {
    color: #94C120;
}

.contact-us-blue-background-group-text-small .btn {
    width: fit-content;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 100px;
}

.groupLaptop-small,
.group56-small,
.group57-small {
    position: absolute;
    max-width: 100%;
    height: auto;
}

.groupLaptop-small {
    bottom: -10%;
    left: 5%;
    width: 55%;
}

.group56-small {
    left: 0;
    top: 0;
    width: 20%;
}

.group57-small {
    right: 0;
    top: 0;
    width: 35%;
}

/* Responsive Styles */

@media (max-width: 768px) {
    .contact-us-blue-background-group-small {
        display: block;
    }

    .contact-us-blue-background-group {
        display: none;
    }
}






.features-container {
    position: relative;
    width: 100%;
}

.features-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.product-feature-item {
    flex: 0 0 auto;
    width: 90%;
    max-width: 370px;
    height: 305px;
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: right;
    text-align: right;
    scroll-snap-align: center;
    box-shadow: 0 2px 4px rgba(73, 73, 73, 0.705);
}

.product-feature-item h2 {
    color: #2B2B2B;
    font-size: 16px;
    text-align: justify;
    padding-top: 20px;
    padding-bottom: 5px;
}

.product-feature-item p {
    color: #747474;
    font-size: 16px;
    text-align: justify;
}

.feature-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    background-color: #2C2E83;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.feature-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.product-carousel-controls {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.product-carousel-controls button {
    font-size: 24px;
    padding: 10px 20px;
    background-color: #2C2E83;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

@media screen and (min-width: 992px) {
    .features-carousel {
        flex-wrap: wrap;
        overflow-x: unset;
        gap: 30px;
        justify-content: center;
    }

    .product-feature-item {
        flex: 0 0 30%;
        scroll-snap-align: none;
    }

    .product-carousel-controls {
        display: none;
    }
}

@media screen and (max-width: 991px) {
    .product-carousel-controls {
        display: flex;
    }
}


.posito-satisfaction {
    background-image: linear-gradient(to right, #04003B, #0E105E, #04003B);
    min-height: 560px;
    width: 100%;
    height: auto;
    margin-top: 150px;
    padding-right: 7%;
    padding-left: 7%;
    display: flex;
    flex-direction: column;
}

.posito-satisfaction-text {
    position: absolute;
    top: 10%;
    width: 50%;
}


.posito-satisfaction-text h1 {
    font-size: 30px;
}

.posito-satisfaction-text p {
    font-size: 20px;
}

.posito-satisfaction-img {
    position: absolute;
    bottom: -25%;
    width: 100%;
    height: auto;
}

.posito-satisfaction-img video {
    border-radius: 24px;
    width: 45%;
    height: auto;
    box-shadow: 0 8px 16px rgba(73, 73, 73, 0.705);
}

@media (max-width: 1400px) {

    .posito-satisfaction-text {
        position: absolute;
        top: 12%;
        width: 50%;
    }

    .posito-satisfaction-text p {
        font-size: 20px;
    }

    .posito-satisfaction-img {
        position: absolute;
        bottom: -15%;
        width: 100%;
        height: auto;
    }

    .posito-satisfaction-img video {
        width: 50%;
        height: auto;
    }
}


@media (max-width: 992px) {

    .posito-satisfaction-text {
        position: absolute;
        top: 15%;
        width: 70%;
    }

    .posito-satisfaction-text p {
        font-size: 20px;
    }

    .posito-satisfaction-img {
        position: absolute;
        bottom: -15%;
        width: 100%;
        height: auto;
    }

    .posito-satisfaction-img video {
        width: 65%;
        height: auto;
    }
}

@media (max-width: 768px) {

    .posito-satisfaction-text {
        position: absolute;
        top: 15%;
        width: 80%;
    }

    .posito-satisfaction-text p {
        font-size: 20px;
    }

    .posito-satisfaction-img {
        position: absolute;
        bottom: -10%;
        width: 100%;
        height: auto;
    }

    .posito-satisfaction-img video {
        width: 75%;
        height: auto;
    }
}

@media (max-width: 576px) {

    .posito-satisfaction {
        background-image: linear-gradient(to right, #04003B, #0E105E, #04003B);
        min-height: 450px;
        width: 100%;
        height: auto;
        margin-top: 150px;
        padding-right: 7%;
        padding-left: 7%;
        display: flex;
        flex-direction: column;
    }

    .posito-satisfaction-text {
        position: absolute;
        top: 15%;
        width: 90%;
    }


    .posito-satisfaction-text h1 {
        font-size: 26px;
    }

    .posito-satisfaction-text p {
        font-size: 18px;
    }

    .posito-satisfaction-img {
        position: absolute;
        bottom: -10%;
        width: 100%;
        height: auto;
    }

    .posito-satisfaction-img video {
        width: 85%;
        height: auto;
    }
}




.product-use-cases {
    background-color: #F6F6F9;
    border-radius: 10px;
    min-height: 765px;
    height: auto;
    padding-right: 10%;
    padding-left: 10%;
    padding-top: 3%;
    padding-bottom: 7%;
    margin-top: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 80%;
    max-width: 1200px;
}

.use-cases-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
}

.use-cases-text {
    display: flex;
    flex-direction: column;
    justify-content: right;
    text-align: right;
    padding-top: 20px;
}

.use-cases-text h3 {
    font-size: 20px;
    color: #2B2B2B;
}

.use-cases-text p {
    font-size: 16px;
    color: #747474;
    text-align: justify;
}

@media (max-width: 768px) {

    .use-cases-item {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 7%;
        margin-top: 50px;
    }

    .product-use-cases {
        width: 90%;
        padding-top: 50px;
    }
}

@media (max-width: 1200px) {
    .posito-info h1 {
        font-size: 23PX;
    }

    .posito-info P {
        font-size: 20PX;
    }
}

@media (max-width: 992px) {
    .posito-info h1 {
        font-size: 17PX;
    }

    .posito-info P {
        font-size: 16PX;
    }

    .Introduction {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {

    .hero-image-wrapper {
        display: none;
    }

    .hero-image-wrapper-small {
        display: block;
    }
}

@media (max-width: 576px) {
    .product-use-cases {
        margin-top: 200px;
    }
}



/*contact us page*/
.contactUs-hero-section {
    width: 100%;
    min-height: 135vh;
    position: relative;
    overflow: hidden;
}

.contactUs-hero-blue1 {
    position: absolute;
    top: 92px;
    z-index: 1;
    background-color: #2C2E83;
    height: 200px;
    width: 100%;
}

.contactUs-hero-blue2 {
    position: absolute;
    top: 291px;
    /* Position it right after the first one */
    z-index: 1;
    background-color: #2C2E83;
    height: 465px;
    width: 100%;
    clip-path: polygon(0% 0%,
            50% 0%,
            100% 0%,
            0% 50%,
            0% 100%);
}

.contactUs-hero-content {
    background-color: #fff;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    padding: 5%;
    width: 85%;
    height: auto;
    box-shadow: 0 2px 4px rgba(73, 73, 73, 0.705);
    margin-top: 70px;

}

.contactUs-hero-content-text {
    width: 100%;
    height: 100%;
}

.contactUs-hero-content-text h2 {
    font-size: 20px;
    color: #2C2E83;
}

.contactUs-hero-content-text p {
    font-size: 16px;
    color: #717171;
    margin-bottom: 30px;
    font-weight: 600;
}

.contactUs-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 1500px) {

    .contactUs-hero-content-text {
        margin-top: 6%;
    }

}

.contactUs-form input,
textarea {
    background-color: #F6F6F9;
    border-radius: 8px;
    border: none;
    color: #ADADAD;
    padding: 20px;
    font-size: 14px;
    width: 100%;
}

.styled-input:focus {
    border: #2c2d83bd 1px solid;
    outline: #2c2d83be;
}

.contactUs-form input {
    height: 50px;
}

.ContactUs-HeroImg {
    width: 100%;
    height: auto;
    margin-left: -100px;
}

.ContactUs-HeroImg img {
    width: 80%;
    height: auto;
}

.contactUs-Info {
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
}

.contactUs-Info img {
    width: 50px;
    height: auto;
}

.contactUs-Info p {
    font-size: 13px;
    color: #616161;
    padding-top: 20px;
    text-align: justify;
}

.btn-contactUs {
    background-color: #2C2E83;
    border-radius: 10px;
    height: 50PX;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

.btn-contactUs h1 {
    color: #fff;
    font-size: 16px;
    padding-top: 10px;
}

.btn-contactUs:hover {
    background-color: #26276e;
}

.blue-icons-group {
    height: 170px;
    width: 55px;
    background-color: #2C2E83;
    border-bottom-right-radius: 35px;
    display: flex;
    flex-direction: column;
    position: absolute;
    right: -82px;
    top: 75%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 22px;
}

/* Contact page decorative rectangles - replaced images with CSS */
.Rect162 {
    width: 142px;
    height: 200px;
    position: absolute;
    right: 0;
    top: 32%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(88, 90, 190, 0.3) 0%, rgba(44, 46, 131, 0.15) 100%);
    border-radius: 8px;
    filter: blur(2px);
}

.Rect163 {
    width: 108px;
    height: 150px;
    position: absolute;
    right: 5%;
    top: 43%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(44, 46, 131, 0.25) 0%, rgba(88, 90, 190, 0.12) 100%);
    border-radius: 8px;
    filter: blur(2px);
}

.Rect164 {
    width: 156px;
    height: 180px;
    position: absolute;
    left: 10%;
    top: 57%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(88, 90, 190, 0.28) 0%, rgba(44, 46, 131, 0.14) 100%);
    border-radius: 8px;
    filter: blur(2px);
}

.Rect165 {
    width: 53px;
    height: 80px;
    position: absolute;
    left: 6%;
    top: 67%;
    z-index: 1;
    background: linear-gradient(135deg, rgba(44, 46, 131, 0.22) 0%, rgba(88, 90, 190, 0.1) 100%);
    border-radius: 6px;
    filter: blur(2px);
}

.contact-icon {
    transition: transform 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-4px);
}

@media (min-width: 1500px) {

    .ContactUs-HeroImg {
        width: 100%;
        height: auto;
        margin-left: -300px;
    }

    .contactUs-Info p {
        font-size: 14px;
    }

}

@media (min-width: 1700px) {

    .contactUs-Info p {
        font-size: 16px;
        color: #616161;
        padding-top: 20px;
        text-align: justify;
        font-weight: 600;
    }
}



@media (max-width: 1024px) {

    .contactUs-hero-blue1 {
        height: 90px;
        top: 102px;
    }

    .contactUs-hero-blue2 {
        top: 244px;
    }

    .contactUs-hero-section {
        min-height: 200vh;
    }

    .contactUs-hero-blue1 {
        margin-top: 53px;
    }

    .contactUs-hero-content {
        flex-direction: column;
        top: 45%;
    }

    .contactUs-hero-content-text {
        width: 100%;
    }

    .ContactUs-HeroImg {
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .contactUs-Image {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ContactUs-HeroImg img {
        width: 50%;
        height: auto;
        margin: 0;
    }

    .contactUs-Info {
        gap: 20px;
    }

    .contactUs-Info img {
        width: 50px;
        height: auto;
    }

    .blue-icons-group {
        display: none;
    }

    .blue-icons-group2 {
        width: 170px;
        height: 55px;
        background-color: #2C2E83;
        border-bottom-right-radius: 35px;
        border-bottom-left-radius: 35px;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        position: absolute;
        bottom: -82px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
        justify-content: center;
        align-items: center;
        gap: 22px;
    }

    .Rect162,
    .Rect163,
    .Rect164,
    .Rect165 {
        display: none;
    }
}

@media (max-width: 768px) {

    .contactUs-hero-section {
        min-height: 160vh;
    }

    .contactUs-hero-content {
        top: 50%;
    }

    .contactUs-hero-content-text p {
        font-size: 14px;
    }
}



/*contact us page*/
/* لوگو */
.name-logo-white {
    display: flex;
    align-items: center;
    gap: 20px;
}

.name-logo-white h1 {
    font-size: 34px;
    color: #fff !important;
    margin: 0;
    padding-top: 10px;
}

/* ناوبری سفید */
.navigation-items-white {
    display: flex;
    gap: 24px;
}

.navigation-items-white > a,
.dropdown-toggle-white {
    position: relative;
    font-size: 20px;
    color: #fff !important;
    text-decoration: none;
    padding-bottom: 4px;
    cursor: pointer;
}

.navigation-items-white > a::after,
.dropdown-toggle-white::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #2C2E83;
    transition: width 0.3s ease-in-out;
}

.navigation-items-white > a:hover::after,
.dropdown-white:hover .dropdown-toggle-white::after {
    width: 100%;
}

.navigation-items-white > a.nav-active::after,
.dropdown-toggle-white.nav-active::after {
    width: 100%;
}

.navigation-items-white > a.nav-active,
.dropdown-toggle-white.nav-active {
    font-weight: bold;
}

/* دراپ‌داون سفید */
.dropdown-white {
    position: relative;
}

.dropdown-menu-white {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    min-width: 160px;
    z-index: 10;
}

.dropdown-menu-white a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    transition: background 0.2s;
}

.dropdown-menu-white a:hover {
    background: #f0f0f0;
}

.dropdown-white:hover .dropdown-menu-white {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}




.aboutUs-hero-color {
    background: linear-gradient(to top, #98A8C2, #40436D);
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 375px;
    border-radius: 0 0 40% 40%;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(73, 73, 73, 0.705);
}

.contactUs-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contactUs-text h1 {
    font-size: 32px;
    color: white;
}

.contactUs-text h2 {
    font-size: 16px;
    color: #E4E4E4;
    width: 80%;
    line-height: 2rem;
}


.aboutUs-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10%;
    align-items: center;
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 300px;
}

.aboutUs-content-text {
    width: 45%;
}

.aboutUs-content-text h1 {
    font-size: 36px;
    color: #2B2B2B;
}

.aboutUs-content-text p {
    font-size: 24px;
    color: #717171;
    text-align: justify;
    width: 100%;
}

.aboutUs-content-image {
    position: relative;
    width: 55%;
    height: auto;
}

.mainImg {
    width: 80%;
    height: auto;
}

.siblingImg {
    width: 40%;
    height: auto;
    position: absolute;
    bottom: -10%;
    right: -10%;
}

.middle-big-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.middle-big-image h1 {
    font-size: 36px;
    color: #2B2B2B;
}

.middle-big-image p {
    font-size: 20px;
    color: #717171;
    width: 100%
}

.middle-big-image img {
    width: 100%;
    height: auto;
}

.data-count {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    background-color: #F6F6F9;
    width: 100%;
    height: 220px;
    padding-right: 5%;
    padding-left: 5%;
    margin-top: 100px;
    flex-wrap: nowrap;
}

.vertical-line {
    background-color: #9B9B9B;
    width: 1px;
    height: 110px;
}

.data-count h1 {
    font-size: 48px;
}

.data-count h2 {
    font-size: 20px;
}

@media (min-width: 1024px) {
    .aboutUs-content-image {
        margin-left: -10%;
    }
}

/* واکنش‌گرایی برای صفحات زیر 768px */
@media (max-width: 768px) {
    .data-count h1 {
        font-size: 2.2rem;
    }

    .data-count h2 {
        font-size: 1rem;
    }
}

/* برای زیر 576px: دو مورد در هر ردیف */
@media (max-width: 576px) {
    .data-count {
        flex-wrap: wrap;
        height: auto;
        gap: 20px 10%;
        justify-content: center;
        height: 240px;
    }

    .data-item {
        width: 45%;
    }

    .vertical-line {
        display: none;
    }

    .data-count h1 {
        font-size: 1.8rem;
    }

    .data-count h2 {
        font-size: 0.9rem;
    }
}



.quote6 {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -30px;
    right: 12%;
}

.quote5 {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -40px;
    left: 12%;
}


.images-group {
    width: 100%;
    min-height: 497px;
    margin-top: 200px;
    padding: 80px 7% 40px 7%;
    background-image: linear-gradient(to right, #04003B, #37398C, #04003B);

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    flex-direction: column;
}

/* This holds the 3 items and controls the "pop-out" on large screens */
.images-group-img {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin-top: -400px;
}

.images-group-with-text {
    position: relative;
    width: 30%;
    min-width: 280px;
    text-align: center;
}

.images-group-img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.position {
    font-size: 24px;
}

.fullName {
    font-size: 20px;
    font-weight: lighter;
}

.overlay-text-images-group {
    position: absolute;
    bottom: -20%;
    left: 50%;
    transform: translate(-50%, 50%);
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    font-size: 16px;
    text-align: center;
}

.overlay-text-images-group p {
    color: #fff;
}

/* Tablet - force layout inside the box and adjust height */
@media screen and (max-width: 1065px) {
    .images-group {
        padding: 60px 5% 60px 5%;
        min-height: auto;
    }

    .images-group-img {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 30px;
        justify-content: center;
        align-items: center;
        margin-top: 0;
    }

    .overlay-text-images-group {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        font-size: 14px;
    }
}

/* Mobile */
@media screen and (max-width: 576px) {
    .images-group {
        padding: 60px 5% 60px 5%;
    }

    .images-group-img {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .images-group-with-text {
        width: 90%;
    }

    .overlay-text-images-group {
        font-size: 13px;
    }
}



@media (max-width: 1024px) {
    .navigation-items-white > a {
        display: none;
    }

    .name-logo-white h1 {
        font-size: 28px;
    }

    .contactUs-text {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .contactUs-text h1 {
        font-size: 28px;
        color: white;
    }

    .contactUs-text h2 {
        font-size: 14px;
        color: #E4E4E4;
        width: 100%;
        line-height: 2rem;
    }

    .aboutUs-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10%;
        width: 100%;
        min-height: 100vh;
        position: relative;
        margin-top: 400px;
    }

    .aboutUs-content-text {
        width: 90%;
    }

    .aboutUs-content-text h1 {
        font-size: 32px;
        color: #2B2B2B;
    }

    .aboutUs-content-text p {
        font-size: 20px;
        color: #717171;
        text-align: justify;
    }

    .aboutUs-content-image {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 50px;
    }

    .mainImg {
        width: 70%;
        height: auto;
    }

    .siblingImg {
        width: 30%;
        height: auto;
        position: absolute;
        bottom: -10%;
        right: 5%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .aboutUs-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10%;
        width: 100%;
        min-height: 110vh;
        position: relative;
        margin-top: 350px;
    }

    .middle-big-image {
        margin-top: -250px;
    }
}

@media (max-width: 576px) {

    .aboutUs-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10%;
        width: 100%;
        min-height: 120vh;
        position: relative;
        margin-top: 400px;
    }


    .aboutUs-content-text {
        width: 90%;
    }
}