
.about-us {
    overflow: hidden;
    position: relative;
    isolation: isolate;
    padding-top: 20px;
    padding-bottom: 0;
    margin-top: -20px;
    padding-bottom: 100px;
    height: auto;
}

.about-us::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2,17,131,0.03) 0%, transparent 70%);
    top: 50%;
    left: -400px;
    transform: translateY(-50%);
    z-index: -1;
    border-radius: 50%;
}

.about-us::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(2,17,131,0.02) 0%, transparent 70%);
    bottom: -300px;
    right: -200px;
    z-index: -1;
    border-radius: 50%;
}

.about-us .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-us .about-content {
    position: relative;
    border-radius: 20px;
    padding: 0 40px;
}

.about-us h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 10px;
    position: relative;
}

.about-us p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 30px;
}

.about-us .highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.about-us .highlight-item {
    text-align: center;
    padding: 20px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-us .highlight-item .number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-us .highlight-item .label {
    font-size: 14px;
    color: var(--text-dark-low);
}

.about-us .about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    transition: gap 0.3s ease;
}

.about-us .about-link:hover {
    gap: 16px;
}

.about-us .about-link svg {
    transition: transform 0.3s ease;
}

.about-us .about-link:hover svg {
    transform: translateX(4px);
}

.about-us .about-images {
    position: relative;
    height: 600px;
}

.about-us .image-wrapper {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-us .image-wrapper.primary {
    width: 100%;
    height: 350px;
    top: 0;
    right: 0;
    z-index: 2;
}

.about-us .image-wrapper.secondary {
    width: 75%;
    height: 300px;
    bottom: -5%;
    left: -13%;
    z-index: -1;
}

.about-us .image-wrapper:hover {
    transform: translateY(-10px);
}

.about-us .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-us .image-wrapper:hover img {
    transform: scale(1.05);
}

@media (max-width: 1400px) {
    .about-us .container {
        gap: 60px;
    }

    .about-us h2 {
        font-size: 36px;
    }

    .about-us p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-us .about-images {
        height: 550px;
    }

    .about-us .image-wrapper.primary {
        height: 320px;
    }

    .about-us .image-wrapper.secondary {
        width: 70%;
        height: 280px;
    }

    .about-us .highlight-item .number {
        font-size: 28px;
    }

    .about-us .highlight-item .label {
        font-size: 13px;
    }
}

@media (max-width: 1200px) {
    .about-us {
        margin-top: 10px;
    }

    .about-us h2 {
        color: var(--primary-color);
        font-size: 32px;
    }

    .about-us p {
        color: var(--text-dark)!important;
        font-size: 14px;
        margin-bottom: 25px;
    }

    .about-us .about-images {
        height: 500px;
    }

    .about-us .image-wrapper.primary {
        height: 300px;
    }

    .about-us .image-wrapper.secondary {
        height: 260px;
        width: 65%;
    }

    .about-us .highlights {
        gap: 15px;
        margin: 30px 0;
    }

    .about-us .highlight-item {
        padding: 15px;
    }

    .about-us .highlight-item .number {
        font-size: 26px;
    }
}

@media (max-width: 991px) {
    .about-us {
        padding: 50px 0;
    }

    .about-us .container {
        grid-template-columns: 1fr;
        gap: 50px;
        display: flex;
        flex-direction: column-reverse;
        
    }

    .about-us h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-us p {
        font-size: 14px;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .about-us .about-images {
        height: 340px;
        margin: 0 auto;
        max-width: 600px;
        width: 100%;
    }

    .about-us .image-wrapper.primary {
        height: 280px;
        width: 90%;
        right: -10%;
    }

    .about-us .image-wrapper.secondary {
        width: 60%;
        height: 240px;
        left: -10%;
        top: 30%;
        z-index: 10;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 40px 0;
        margin-top: -150px;
        margin-bottom: 50px;
    }

    .about-us .container {
        gap: 40px;
    }

    .about-us .about-content {
        padding: 0 20px;
    }

    .about-us h2 {
        font-size: 26px;
    }

    .about-us p {
        font-size: 13px;
        line-height: 1.6;
    }

    .about-us .highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 25px 0;
    }

    .about-us .highlight-item {
        padding: 12px;
    }

    .about-us .highlight-item .number {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .about-us .highlight-item .label {
        font-size: 12px;
    }

    .about-us .about-images {
        height: 330px;
        max-width: 500px;
    }

    .about-us .about-link {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .about-us {
        padding: 30px 0;
    }

    .about-us .container {
        gap: 30px;
    }

    .about-us .about-content {
        padding: 0 15px;
    }

    .about-us h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-us p {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .about-us .highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0;
    }

    .about-us .about-images {
        height: 350px;
        margin-top: 20px;
    }

    .about-us .image-wrapper.primary {
        height: 240px;
        width: 100%;
        right: 0;
    }

    .about-us .image-wrapper.secondary {
        width: 70%;
        height: 200px;
        left: 0;
    }

    .about-us .about-link {
        width: 100%;
        justify-content: center;
        padding: 12px 0;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .about-us h2 {
        font-size: 22px;
    }

    .about-us p {
        font-size: 12px;
    }

    .about-us .highlights {
        margin: 15px 0;
    }

    .about-us .highlight-item {
        padding: 10px;
    }

    .about-us .highlight-item .number {
        font-size: 22px;
    }

    .about-us .highlight-item .label {
        font-size: 11px;
    }

    .about-us .about-images {
        height: 300px;
    }

    .about-us .image-wrapper.primary {
        height: 200px;
    }

    .about-us .image-wrapper.secondary {
        height: 180px;
    }
}

@media (max-width: 1200px) {
    .about-us h2 {
        color: var(--primary-color);
    }

    .about-us p {
        color: var(--text-dark)!important;
    }

    .about-us {
        padding-top: 40px;
    }
}

@media (max-width: 991px) {
    .about-us {
        padding: 60px 0;
    }

    .about-us .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us h2 {
        font-size: 32px;
    }

}

@media (max-width: 576px) {
    .about-us {
        padding: 40px 0;
    }

    .about-us h2 {
        font-size: 28px;
    }

    .about-us p {
        font-size: 15px;
    }

    .about-us .highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-us .about-images {
        height: 400px;
    }

    .about-us .image-wrapper.primary {
        height: 300px;
    }

    .about-us .image-wrapper.secondary {
        height: 250px;
    }
}


.services-sec {
    position: relative;
    padding: 50px 0;
    padding-top: 0;
    overflow: hidden;
    z-index: 1;
    height: auto;
    margin-top: -40px;
}



.services-sec .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-sec .section-title {
    text-align: center;
    margin-bottom: 80px;
}

.services-sec .section-title h2 {
    font-size: clamp(2rem, 3vw, 3.5rem);
    background: linear-gradient(90deg, var(--primary-color) 30%, var(--primary-color-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-sec .section-title p {
    font-size: 1.1rem;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    isolation: isolate;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0) 100%);
    z-index: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::after {
    opacity: 0.95;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #fff;
    backdrop-filter: blur(8px);
    color: var(--primary-color);
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 1;
}

.service-card .card-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover .card-img img {
    transform: scale(1.05);
}

.service-card .content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 1;
    background: transparent;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-card:hover .content {
    transform: translateY(-10px);
}

.service-card h3 {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.service-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .card-link:hover {
    background: #fff;
    color: var(--primary-color);
}

.service-card .card-link svg {
    transition: transform 0.2s ease;
    stroke: currentColor;
    stroke-width: 2;
}

.service-card .card-link:hover svg {
    transform: translateX(5px);
}

.service-card:nth-child(1) {
    grid-column: span 8;
    grid-row: span 1;
    height: 500px;
}

.service-card:nth-child(2) {
    grid-column: span 4;
    grid-row: span 1;
    height: 500px;
}

.service-card:nth-child(3) {
    grid-column: span 4;
    grid-row: span 1;
    height: 400px;
}

.service-card:nth-child(4) {
    grid-column: span 4;
    grid-row: span 1;
    height: 400px;
}

.service-card:nth-child(5) {
    grid-column: span 4;
    grid-row: span 4;
    height: 400px;
}

.service-card .card-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(8, 1fr);
        gap: 1.5rem;
    }

    .service-card:nth-child(1) {
        grid-column: span 8;
    }

    .service-card:nth-child(2),
    .service-card:nth-child(3) {
        grid-column: span 4;
    }

    .service-card:nth-child(3) {
        height: auto;
    }

    .service-card:nth-child(4),
    .service-card:nth-child(5) {
        grid-column: span 4;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card:nth-child(n) {
        grid-column: span 1;
        height: 400px;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }
}


.why-we {
    overflow: hidden;
    height: auto;
    padding: 20px 0;
}

.why-we .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-we .top-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.why-we .side-images {
    display: flex;
    gap: 20px;
    position: relative;
}

.why-we .side-images .image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    height: 450px;

}

.why-we .side-images .image:hover {
    transform: translateY(-10px);
}

.why-we .side-images .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-we .side-images .bottom {
    margin-top: 60px;
}

.why-we .content {
    position: relative;
    z-index: 1;
}

.why-we .content::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2,17,131,0.03) 0%, rgba(255,255,255,0) 70%);
    top: 50%;
    right: -400px;
    transform: translateY(-50%);
    z-index: -1;
    pointer-events: none;
}

.why-we .overtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.why-we h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.why-we p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 35px;
    max-width: 500px;
}

.why-we .more-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    background-color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.why-we .more-link:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(2,17,131,0.15);
}

.why-we .more-link svg {
    transition: transform 0.3s ease;
}

.why-we .more-link:hover svg {
    transform: translateX(4px);
}

.why-we .stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 40px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    position: relative;
}

.why-we .stat-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding: 10px;
}

.why-we .stat-item:not(:last-child) {
    border-right: 1px solid rgba(0,0,0,0.1);
}

.why-we .stat-item .number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.why-we .stat-item .label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark-low);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-we .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-we .feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.why-we .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color-low) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.why-we .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-we .feature-card:hover::before {
    opacity: 0.1;
}

.why-we .feature-card .icon {
    width: 64px;
    height: 64px;
    background: var(--bg-color);
    border-radius:0 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    right: 0;
}

.why-we .feature-card:hover .icon {
    background: var(--primary-color);
    color: white;
}

.why-we .feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.why-we .feature-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark-low);
    margin: 0;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .why-we .top-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .why-we .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px;
    }

    .why-we .stat-item:nth-child(2) {
        border-right: none;
    }

    .why-we .stat-item {
        padding: 15px;
    }

    .why-we .stat-item .number {
        font-size: 36px;
    }

    .why-we .features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-we .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-we .side-images {
        flex-direction: column;
    }

    .why-we .side-images .image img {
        height: 300px;
    }

    .why-we h2 {
        font-size: 28px;
    }

    .why-we .stat-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .why-we .stat-item:last-child {
        border-bottom: none;
    }

    .why-we .features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .why-we {
        padding: 60px 0;
    }

    .why-we .container {
        max-width: 100%;
        padding: 0 30px;
    }

    .why-we .top-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }

    .why-we .content {
        order: 1;
        text-align: center;
    }

    .why-we .content p {
        margin: 0 auto;
        max-width: 600px;
    }

    .why-we .content::before {
        display: none;
    }

    .why-we .side-images {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        height: 500px;
        position: relative;
        width: 100%;
    }

    .why-we .side-images .image {
        position: absolute;
        height: 350px;
        transition: all 0.3s ease;
    }

    .why-we .side-images .image.top {
        width: 70%;
        right: 0;
        top: 0;
        z-index: 2;
    }

    .why-we .side-images .image.bottom {
        width: 60%;
        left: 0;
        bottom: 0;
        margin-top: 0;
        z-index: 1;
    }

    .why-we .more-link {
        margin: 0 auto;
        display: inline-flex;
        margin-top: 1rem;
    }

    .why-we .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
        gap: 25px;
    }

    .why-we .stat-item:nth-child(2) {
        border-right: none;
    }

    .why-we .features {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .why-we {
        padding: 40px 0;
    }

    .why-we .container {
        padding: 0 20px;
    }

    .why-we .top-content {
        gap: 40px;
        margin-bottom: 40px;
    }

    .why-we h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .why-we p {
        font-size: 14px;
        line-height: 1.6;
    }

    .why-we .side-images {
        height: 400px;
    }

    .why-we .side-images .image {
        height: 280px;
    }

    .why-we .side-images .image.top {
        width: 75%;
    }

    .why-we .side-images .image.bottom {
        width: 65%;
    }

    .why-we .stat-item {
        padding: 12px;
    }

    .why-we .stat-item .number {
        font-size: 32px;
    }

    .why-we .stat-item .label {
        font-size: 13px;
    }

    .why-we .features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-we .feature-card {
        padding: 25px 20px;
    }

    .why-we .feature-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .why-we .feature-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .why-we {
        padding: 30px 0;
    }

    .why-we .container {
        padding: 0 15px;
    }

    .why-we .top-content {
        gap: 30px;
        margin-bottom: 30px;
    }

    .why-we h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .why-we .overtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .why-we .side-images {
        height: 350px;
        flex-direction: column;
        gap: 0;
    }

    .why-we .side-images .image {
        position: absolute;
        height: 250px;
        border-radius: 15px;
    }

    .why-we .side-images .image.top {
        width: 85%;
        right: 0;
        top: 0;
    }

    .why-we .side-images .image.bottom {
        width: 75%;
        left: 0;
        bottom: 0;
    }

    .why-we .stats {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 15px;
    }

    .why-we .stat-item {
        padding: 15px 10px;
        border-right: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    .why-we .stat-item:last-child {
        border-bottom: none;
    }

    .why-we .features {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .why-we .feature-card {
        padding: 20px 15px;
    }

    .why-we .feature-card .icon {
        width: 50px;
        height: 50px;
    }

    .why-we .more-link {
        width: calc(100% - 40px);
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .why-we .side-images {
        height: 300px;
    }

    .why-we .side-images .image {
        height: 200px;
    }

    .why-we .side-images .image.top {
        width: 90%;
    }

    .why-we .side-images .image.bottom {
        width: 80%;
    }

    .why-we .stat-item .number {
        font-size: 28px;
    }

    .why-we .stat-item .label {
        font-size: 12px;
    }

    .why-we h2 {
        font-size: 22px;
    }

    .why-we p {
        font-size: 13px;
    }
}


@media (max-height: 700px) and (orientation: landscape) {
    .why-we .side-images {
        height: 400px;
    }

    .why-we .side-images .image {
        height: 260px;
    }

    .why-we .stats {
        padding: 25px;
    }

    .why-we .features {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (min-width: 992px) and (max-width: 1200px) {
    .why-we .side-images {
        gap: 15px;
    }

    .why-we .side-images .image {
        height: 400px;
    }

    .why-we h2 {
        font-size: 34px;
    }

    .why-we .features {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .why-we .side-images .image img {
        image-rendering: -webkit-optimize-contrast;
    }
}






.video-section {
    padding: 60px 0;
    background-color: var(--bg-color);
    overflow: hidden;
    height: auto;
}

.video-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-section .video-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-section .video-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-section .video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-section .video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
    transition: background 0.3s ease;
}

.video-section .video-thumbnail:hover .video-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-section .play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.video-section .play-button:hover {
    background: var(--primary-color-dark);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 10px rgba(2,17,131,0.2);
}

.video-section .play-button:hover svg {
    transform: scale(1.1);
}

.video-section .video-content {
    position: relative;
}

.video-section .overtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.video-section h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.video-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin: 0;
}


.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999; 
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.video-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    z-index: 1; 
}

.video-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 90%;
    max-width: 1000px;
    transition: transform 0.3s ease;
    pointer-events: all;
    z-index: 2; 
}

.video-modal .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    pointer-events: all;
    z-index: 3;
}

.video-modal.active .modal-content {
    transform: translate(-50%, -50%) scale(1);
}

.video-modal iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal .close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    color: var(--text-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: all;
}

.video-modal .close-modal:hover {
    transform: rotate(90deg);
    background: var(--primary-color);
    color: white;
}

@media (max-width: 991px) {
    .video-section .video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 80px 0;
    }
    
    .video-section h2 {
        font-size: 26px;
    }
    
    .video-section .play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-section .play-button svg {
        width: 24px;
        height: 24px;
    }
}


.references {
    position: relative;
    padding: 60px 0;
    height: auto;
    
    overflow: hidden;
}

.references .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.references .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.references .overtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.references h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.references .section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.references .marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 60px 0;
}

.references .marquee::before, .references .marquee::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--bg-color),
        transparent
    );
    z-index: 1;
    left: 0;
    top: 0;
}

.references .marquee::after {
    right: 0;
    left: auto;
    background: linear-gradient(270deg, 
        var(--bg-color),
        transparent
    );
}


.references .track {
    display: flex;
    width: fit-content;
    animation: scroll 30s linear infinite;
}

.references .track:hover {
    animation-play-state: paused;
}

.references .content {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 20px 40px;
}

.references .logo-item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.references .logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    cursor: pointer;
}

.references .logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.references .logo-item:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.references .overlay-gradient {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(2,17,131,0.3) 0%, transparent 70%);
    background-repeat: no-repeat;
    background-size: 30% 50%;
    background-position: center;
    top: -10%;
    left: -10%;
    z-index: -1;
    border-radius: 20px;
}

.references .referance-bottom {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.references .bottom-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark-low);
    padding: 30px;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .references {
        padding: 60px 0;
    }

    .references h2 {
        font-size: 32px;
    }

    .references .logo-item {
        width: 150px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .references {
        padding: 40px 0;
    }

    .references h2 {
        font-size: 28px;
    }

    .references .logo-item {
        width: 120px;
        height: 60px;
    }

    .references .content {
        gap: 40px;
    }
}

@media (max-width: 1400px) {
    .references .container {
        max-width: 90%;
    }

    .references .logo-item {
        width: 160px;
        height: 75px;
    }

    .references .content {
        gap: 60px;
    }

    .references .bottom-text {
        font-size: 1rem;
        padding: 25px;
    }
}

@media (max-width: 1200px) {
    .references .container {
        max-width: 95%;
    }

    .references .logo-item {
        width: 140px;
        height: 65px;
        padding: 15px;
    }

    .references .content {
        gap: 50px;
        padding: 15px 30px;
    }

    .references h2 {
        font-size: 34px;
    }

    .references .section-desc {
        font-size: 15px;
        max-width: 550px;
    }

    .references .referance-bottom {
        max-width: 700px;
        padding: 30px;
    }
}

@media (max-width: 991px) {
    .references {
        padding: 50px 0;
    }

    .references .container {
        padding: 0 15px;
    }

    .references .logo-item {
        width: 130px;
        height: 60px;
    }

    .references .content {
        gap: 40px;
        padding: 10px 25px;
    }

    .references .marquee::before,
    .references .marquee::after {
        width: 60px;
    }

    .references .section-header {
        margin-bottom: 40px;
    }

    .references .referance-bottom {
        padding: 20px;
    }

    .references .bottom-text {
        font-size: 0.95rem;
        padding: 20px;
    }

    .references .track {
        animation-duration: 25s;
    }

    .references .overlay-gradient {
        width: 200%;
        height: 200%;
        top: -50%;
        left: -50%;
    }
}

@media (max-width: 768px) {
    .references {
        padding: 40px 0;
    }

    .references h2 {
        font-size: 28px;
    }

    .references .section-desc {
        font-size: 14px;
        max-width: 100%;
        padding: 0 20px;
    }

    .references .logo-item {
        width: 120px;
        height: 55px;
        padding: 12px;
    }

    .references .content {
        gap: 30px;
    }

    .references .marquee {
        margin: 40px 0;
    }

    .references .referance-bottom {
        max-width: 100%;
        padding: 15px;
    }

    .references .bottom-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .references .overlay-gradient {
        display: none;
    }
}

@media (max-width: 576px) {
    .references {
        padding: 30px 0;
    }

    .references h2 {
        font-size: 24px;
    }

    .references .overtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .references .logo-item {
        width: 100px;
        height: 50px;
        padding: 10px;
    }

    .references .content {
        gap: 25px;
        padding: 10px 20px;
    }

    .references .marquee::before,
    .references .marquee::after {
        width: 40px;
    }

    .references .bottom-text {
        font-size: 0.85rem;
        padding: 15px;
        border-radius: 15px;
    }

    .references .track {
        animation-duration: 20s;
    }
}

@media (max-width: 420px) {
    .references .logo-item {
        width: 90px;
        height: 45px;
        padding: 8px;
    }

    .references .content {
        gap: 20px;
    }

    .references h2 {
        font-size: 22px;
    }

    .references .section-desc {
        font-size: 13px;
    }

    .references .bottom-text {
        font-size: 0.8rem;
    }
}

@media (max-height: 700px) and (orientation: landscape) {
    .references {
        padding: 30px 0;
    }

    .references .marquee {
        margin: 30px 0;
    }
    
    .references .logo-item {
        height: 50px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .references .logo-item img {
        image-rendering: -webkit-optimize-contrast;
    }
}

.blog-section {
    padding: 30px 0;
    background-color: var(--bg-color);
    height: auto;
}

.blog-section .container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-section .section-header {
    margin-bottom: 60px;
    text-align: center;
}

.blog-section .title-wrapper {
    margin-bottom: 20px;
}

.blog-section .overtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.blog-section h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.blog-section .section-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    max-width: 600px;
    margin: 0 auto;
}

.blog-section .blog-carousel {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
    overflow: hidden;
}

.blog-section .blog-carousel::before,
.blog-section .blog-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.blog-section .blog-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-color), transparent);
}

.blog-section .blog-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-color), transparent);
}

.custom-scroll {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    scroll-behavior: smooth;
}

.custom-scroll::-webkit-scrollbar {
    display: none;
}

.custom-scroll.active {
    cursor: grabbing !important;
    scroll-behavior: auto;
    pointer-events: auto;
}

.custom-scroll * {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.blog-section .blog-scroll {

    margin: 0 -20px;
    padding: 20px;
}

.blog-section .blog-card {
    flex: 0 0 400px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px; 
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.blog-section .blog-card:hover {
    transform: translateY(-10px);
}

.blog-section .card-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 8px 12px;
    border-radius: 8px;
    z-index: 2;
}

.blog-section .card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog-section .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-section .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
    color: #fff;
}

.blog-section .card-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-section .meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-section .date {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.blog-section .read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    transition: gap 0.3s ease;
}

.blog-section .read-more:hover {
    gap: 12px;
}

.blog-section .read-more svg {
    transition: transform 0.3s ease;
}

.blog-section .read-more:hover svg {
    transform: translateX(4px);
}


.blog-section .dots-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.blog-section .dot {
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(2,17,131,0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.blog-section .dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 2px;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-section .dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.blog-section .dot.active::before {
    opacity: 0.2;
}

.blog-section .dot:not(.active):hover {
    background: rgba(2,17,131,0.3);
    transform: scale(1.1);
}

.blog-section .dots-wrapper::before {
    content: '';
    position: absolute;
    height: 2px;
    background: rgba(2,17,131,0.1);
    width: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0;
    }

    .blog-section h2 {
        font-size: 32px;
    }

    .blog-section .blog-card {
        flex: 0 0 300px;
        height: 300px;
    }

    .blog-section .card-content {
        padding: 20px;
    }

    .blog-section .card-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 1400px) {
    .blog-section .container {
        max-width: 1200px;
    }

    .blog-section h2 {
        font-size: 34px;
    }

    .blog-section .section-desc {
        font-size: 15px;
    }

    .blog-section .blog-card {
        flex: 0 0 380px;
        height: 320px;
    }

    .blog-section .card-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .blog-section {
        padding: 100px 0 80px;
    }

    .blog-section .container {
        max-width: 95%;
    }

    .blog-section h2 {
        font-size: 30px;
    }

    .blog-section .blog-card {
        flex: 0 0 340px;
        height: 300px;
    }

    .blog-section .card-content {
        padding: 25px;
    }

    .blog-section .card-number {
        font-size: 13px;
        padding: 6px 10px;
    }
}

@media (max-width: 991px) {
    .blog-section {
        padding: 80px 0 60px;
    }

    .blog-section h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .blog-section .overtitle {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .blog-section .section-desc {
        font-size: 14px;
        line-height: 1.6;
        max-width: 500px;
    }

    .blog-section .blog-card {
        flex: 0 0 400px;
        height: 280px;
    }

    .blog-section .card-content h3 {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .blog-section .date {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 60px 0 40px;
    }

    .blog-section .container {
        padding: 0 15px;
    }

    .blog-section .section-header {
        margin-bottom: 40px;
    }

    .blog-section h2 {
        font-size: 26px;
    }

    .blog-section .section-desc {
        font-size: 13px;
        max-width: 100%;
        padding: 0 20px;
    }

    .blog-section .blog-card {
        flex: 0 0 380px;
        height: 260px;
    }

    .blog-section .card-content {
        padding: 20px;
    }

    .blog-section .card-content h3 {
        font-size: 16px;
        line-height: 1.3;
    }

    .blog-section .card-number {
        font-size: 12px;
        padding: 5px 8px;
    }

    .blog-section .date {
        font-size: 12px;
    }

    .blog-section .blog-carousel::before,
    .blog-section .blog-carousel::after {
        width: 60px;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 50px 0 30px;
    }

    .blog-section h2 {
        font-size: 24px;
    }

    .blog-section .overtitle {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .blog-section .blog-card {
        flex: 0 0 360px;
        height: 240px;
    }

    .blog-section .card-content {
        padding: 15px;
    }

    .blog-section .card-content h3 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .blog-section .date {
        font-size: 11px;
    }

    .blog-section .card-number {
        top: 15px;
        left: 15px;
        font-size: 11px;
        padding: 4px 8px;
    }
}

@media (max-width: 420px) {
    .blog-section .blog-card {
        flex: 0 0 340px;
        height: 220px;
    }

    .blog-section h2 {
        font-size: 22px;
    }

    .blog-section .section-desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .blog-section .card-content h3 {
        font-size: 14px;
    }

    .blog-section .blog-carousel::before,
    .blog-section .blog-carousel::after {
        width: 40px;
    }
}


@media (max-height: 700px) and (orientation: landscape) {
    .blog-section {
        padding: 40px 0;
    }

    .blog-section .blog-card {
        height: 300px;
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .blog-section .card-img img {
        image-rendering: -webkit-optimize-contrast;
    }
}



.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    height: auto;
    overflow: hidden;
}

.cta .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: start;
    max-width: 1300px;
    justify-content: space-between;
}

.cta .title {
    width: 35%;
}

.cta .title h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    
}

.cta .title .highlight {
    color: var(--primary-color);
}

.cta .description {
    width: 40%;
}

.cta .description p {
    font-size: 1.2rem;
}

.cta .cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--button-color);
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta .cta-button:hover {
    background-color: var(--button-color-dark);
}

@media screen and (max-width: 1024px) {
    .cta .container {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }

    .cta .title {
        width: 100%;
    }
    .cta .description {
        width: 100%;
        margin-bottom: 30px;
    }

    .cta .title h1 {
        font-size: 2rem;
    }

    .cta .description p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .cta {
        padding: 30px 0;
    }

    .cta .title h1 {
        font-size: 1.5rem;
    }

    .cta .description p {
        font-size: 1rem;
    }

    .cta .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}




.fixed-cta {
    position: fixed;
    right: 20px; 
    bottom: 20px;
    z-index: 999999999;
    display: flex;
    flex-direction: row;
    gap: 5px;
}

.fixed-cta .cta-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 12px;
    border-radius: 30px;
    color: #fff;
    font-size: 0.9rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    width: 23px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
}

.fixed-cta .cta-btn i {
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.fixed-cta .cta-btn .label {
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.fixed-cta .cta-btn:hover,
.fixed-cta .cta-btn.hover {
    width: 120px;
    background: rgba(255,255,255,0.15);
}

.fixed-cta .cta-btn:hover .label,
.fixed-cta .cta-btn.hover .label {
    opacity: 1;
    transform: translateX(0);
}

.fixed-cta .cta-btn i {
    position: relative;
    font-size: 1.2rem;
    min-width: 24px;
    text-align: center;
}

.fixed-cta .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fixed-cta .cta-btn.call::before {
    background: linear-gradient(135deg, #4CAF50, #388E3C);
}

.fixed-cta .cta-btn.whatsapp::before {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.fixed-cta .cta-btn.mail::before {
    background: linear-gradient(135deg, #D44638, #A52714);
}

.fixed-cta.cta-btn:hover::before,
.fixed-cta.cta-btn.hover::before {
    opacity: 1;
}

.fixed-cta.cta-btn * {
    position: relative;
    z-index: 1;
}

.fixed-cta .cta-btn.call {
    background: linear-gradient(45deg, #00c853, #69f0ae);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.2);
}

.fixed-cta .cta-btn.whatsapp {
    background: linear-gradient(45deg, #25d366, #128c7e);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.fixed-cta .cta-btn.mail {
    background: linear-gradient(45deg, #2196f3, #0d47a1);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.2);
}

.fixed-cta .cta-btn:hover,
.fixed-cta .cta-btn.hover {
    transform: translateY(-2px);
}

.fixed-cta .cta-btn.call:hover,
.fixed-cta .cta-btn.call.hover {
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
}

.fixed-cta .cta-btn.whatsapp:hover,
.fixed-cta .cta-btn.whatsapp.hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.fixed-cta .cta-btn.mail:hover,
.fixed-cta .cta-btn.mail.hover  {
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.cta-btn.call i {
    animation: pulse 2s infinite;
}


@media (max-width: 768px) {
    .fixed-cta {
        position: fixed;
        right: 15px;
        bottom: 20px;
    }

    .cta-btn {
        padding: 10px;
    }

    .cta-btn i {
        font-size: 1rem;
        min-width: 20px;
    }
}

@media (max-width: 576px) {

    .fixed-cta {
        gap: 3px;
    }

    .cta-btn {
        padding: 8px;
        width: 20px;
    }

    .cta-btn:hover,
    .cta-btn.hover {
        width: 110px;
    }

}







.contact-section {
    padding: 60px 0; 
    background-color: var(--bg-color);
    position: relative;
    overflow: hidden;
    height: auto;
}

.contact-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(2,17,131,0.2) 0%, transparent 70%);
    top: 0px;
    right: 50%;
    border-radius: 50%;
    z-index: 0;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    max-width: 1200px; 
    margin: 0 auto;
}

.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-section .info-card {
    background: rgba(255,255,255,0.98);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.contact-section .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.contact-section .info-card .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.contact-section .info-card:hover .icon {
    transform: scale(1.1) rotate(-5deg);
}

.contact-section .info-card .icon i {
    color: white;
    font-size: 20px;
}

.contact-section .info-card .bg {
    position: absolute;
    top: 20px;
    right: 20px;
}

.contact-section .info-card .bg i {
    font-size: 110px;
    color: rgba(25, 25, 180, 0.137);
    transition: transform 0.3s ease;
}

.contact-section .info-card:hover .bg i {
    transform: rotate(-10deg);
}



.contact-section .info-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-section .info-card p {
    font-size: 14px;
    color: var(--text-dark-low);
    margin-bottom: 15px;
}

.contact-section .info-card a, .info-card address {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    display: block;
}

.contact-section .contact-form-wrapper {
    background: rgba(255,255,255,0.98);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-section .form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-section .form-header h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-section .form-header p {
    color: var(--text-dark-low);
    font-size: 16px;
}

.contact-section .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-section .form-group.full-width {
    grid-column: span 2;
}

.contact-section .form-group {
    position: relative;
    margin-bottom: 25px;
}

.contact-section .form-group input,
.contact-section .form-group textarea {
    width: calc(100% - 50px);
    padding: 18px 25px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: transparent;
}

.contact-section .form-group textarea {
    height: 150px;
    resize: none;
}

.contact-section .form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dark-low);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}

.contact-section .form-group textarea + label {
    top: 20px;
    transform: none;
}

.contact-section .form-group input:focus,
.contact-section .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(2,17,131,0.1);
}

.contact-section .form-group input:focus + label,
.contact-section .form-group textarea:focus + label,
.contact-section .form-group input:not(:placeholder-shown) + label,
.contact-section .form-group textarea:not(:placeholder-shown) + label {
    top: -12px;
    left: 15px;
    font-size: 12px;
    padding: 0 5px;
    background: white;
    color: var(--primary-color);
}

.contact-section .form-group select {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #eee;
    border-radius: 15px;
    font-size: 15px;
    color: var(--text-dark-low);
    transition: all 0.3s ease;
    background: transparent;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 20px;
}

.contact-section .submit-btn {
    position: relative;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    color: white;
    border: none;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.contact-section .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(2,17,131,0.2);
}

.contact-section .submit-btn:hover::before {
    left: 100%;
}

.contact-section .submit-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact-section .submit-btn:hover i {
    transform: translateX(20px) rotate(25deg) translateY(-5px);
}

.map-section {
    padding: 0 0 100px;
    height: auto;
}

.map-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
}

.map-section .map-wrapper {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.map-section .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: auto!important;
}

@media (max-width: 1400px) {
    .contact-section .container,
    .map-section .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .contact-section .container,
    .map-section .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-section .container,
    .map-section .container {
        max-width: 720px;
    }

    .contact-info {
        position: relative;
        top: 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1 1 calc(50% - 15px);
    }

    .contact-form-wrapper {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section .container,
    .map-section .container {
        max-width: 540px;
        padding: 0 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .info-card {
        flex: 1 1 100%;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .map-wrapper {
        height: 400px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
}

@media (max-width: 576px) {
    .contact-section .container,
    .map-section .container {
        padding: 0 15px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .form-header h2 {
        font-size: 26px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .map-wrapper {
        height: 300px;
        border-radius: 20px;
    }
}

.about-section {
    padding: 50px 0;
    background: var(--bg-color);
    position: relative;
    overflow: hidden;
    height: auto;
}

.about-section .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-section .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.about-section .intro-content {
    position: relative;
    z-index: 2;
}

.about-section .section-title {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-section .intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 40px;
}

.about-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.about-section .stat-item {
    text-align: left;
}

.about-section .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    gap: 5px;
}

.about-section .stat-label {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-section .image-grid {
    position: relative;
    height: 600px;
}

.about-section .image-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-section .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-section .image-box:hover img {
    transform: scale(1.05);
}

.about-section .image-box.main {
    width: 70%;
    height: 400px;
    top: 0;
    right: 0;
    z-index: 2;
}

.about-section .image-box.secondary {
    width: 50%;
    height: 300px;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.about-section .timeline {
    margin-top: 100px;
    position: relative;
    padding-top: 50px;
}

.about-section .timeline .section-title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-align: center;
}

.about-section .timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent,
        var(--primary-color) 10%,
        var(--primary-color) 90%,
        transparent
    );
}

.about-section .timeline-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    margin-top: 50px;
}

.about-section .timeline-item {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    width: calc(40% - 50px);
    margin: 0;
}

.about-section .timeline-item:hover {
    transform: translateY(-5px);
}

.about-section .timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
}

.about-section .timeline-item:nth-child(odd) {
    text-align: right;
    margin-right: 50px;
}

.about-section .timeline-item:nth-child(odd)::before {
    right: -60px;
}

.about-section .timeline-item:nth-child(even) {
    margin-left: auto;
}

.about-section .timeline-item:nth-child(even)::before {
    left: -60px;
}

.about-section .year {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about-section .timeline-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-section .timeline-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark-low);
}

.about-section .values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 100px;
}

.about-section .value-card {
    padding: 40px 30px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-section .value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-section .value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-color);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 32px;
    transition: all 0.3s ease;
}

.about-section .value-card:hover .value-icon {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1) rotate(-10deg);
}

.about-section .value-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-section .value-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark-low);
}


.about-section .cta-banner {
    margin-top: 100px;
    padding: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-dark));
    border-radius: 30px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section .cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../img/pattern-light.svg") repeat;
    opacity: 0.1;
}

.about-section .cta-banner h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
    position: relative;
}

.about-section .cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
    position: relative;
}

.about-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.about-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


.about-section .bottom-content {
    margin-top: 100px;
    padding-top: 80px;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.about-section .bottom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-section .bottom-content-text h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-section .bottom-content-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark-low);
    margin-bottom: 20px;
}

.about-section .feature-list {
    margin-top: 30px;
}

.about-section .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.about-section .feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.about-section .feature-text {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
}

.about-section .bottom-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-section .bottom-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .about-section .intro-grid,
    .about-section .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section .timeline-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-section .timeline::before {
        left: 20px;
    }

    .about-section .timeline-item {
        margin: 0 0 0 50px !important;
        text-align: left !important;
        width: calc(100% - 160px);
        margin-left: 50px !important;
    }

    .about-section .timeline-item::before {
        left: -40px !important;
        right: auto !important;
    }

    .about-section .image-grid {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-section .bottom-grid {
        grid-template-columns: 1fr;
    }

    .about-section .cta-banner {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section .image-grid {
        height: 400px;
    }

    .about-section .image-box.main {
        height: 300px;
    }

    .about-section .image-box.secondary {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .about-section .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-section .stat-item {
        text-align: center;
    }

    .about-section .stat-number {
        justify-content: center;
    }

    .about-section .image-grid {
        height: 350px;
    }

    .about-section .timeline-item {
        padding: 20px;
    }
}


@media (max-width: 1199px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section .container {
        max-width: 960px;
    }

    .about-section .intro-grid {
        gap: 40px;
    }

    .about-section h2 {
        font-size: 2.5rem;
    }

    .about-section .intro-text {
        font-size: 16px;
    }

    .about-section .image-grid {
        height: 500px;
    }

    .about-section .image-box.main {
        width: 65%;
        height: 350px;
    }

    .about-section .image-box.secondary {
        width: 45%;
        height: 280px;
    }

    .about-section .value-card {
        padding: 30px 25px;
    }

    .about-section .timeline-item {
        width: calc(45% - 50px);
    }
}


@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section .container {
        max-width: 720px;
    }

    .about-section .intro-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-section h2 {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-section .intro-text {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .about-section .section-title {
        text-align: center;
        display: block;
    }

    .about-section .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 600px;
        margin: 40px auto 0;
    }

    .about-section .stat-item {
        text-align: center;
    }

    .about-section .stat-number {
        justify-content: center;
        font-size: 36px;
    }

    .about-section .image-grid {
        max-width: 600px;
        margin: 0 auto;
        height: 450px;
    }

    .about-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 60px;
    }

    .about-section .timeline {
        margin-top: 80px;
    }

    .about-section .timeline-grid {
        width: 100%;
    }

    .about-section .timeline-item {
        width: calc(100% - 120px);
        margin-left: 60px !important;
        text-align: left !important;
    }

    .about-section .timeline-item::before {
        left: -40px !important;
        width: 16px;
        height: 16px;
    }

    .about-section .timeline::before {
        left: 20px;
    }

    .about-section .bottom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-section .bottom-content-text {
        text-align: center;
    }

    .about-section .feature-list {
        max-width: 600px;
        margin: 30px auto 0;
    }
}


@media (max-width: 767px) {
    .about-section {
        padding: 50px 0;
    }

    .about-section .container {
        max-width: 540px;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .about-section .intro-text {
        font-size: 15px;
    }

    .about-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-section .image-grid {
        height: 400px;
    }

    .about-section .image-box.main {
        width: 75%;
        height: 300px;
    }

    .about-section .image-box.secondary {
        width: 55%;
        height: 250px;
    }

    .about-section .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-section .value-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .about-section .timeline-item {
        padding: 25px;
    }

    .about-section .feature-item {
        padding: 15px;
    }

    .about-section .cta-banner {
        padding: 40px 20px;
    }

    .about-section .cta-banner h3 {
        font-size: 26px;
    }
}


@media (max-width: 575px) {
    .about-section {
        padding: 40px 0;
    }

    .about-section .container {
        padding: 0 15px;
    }

    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section .intro-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-section .stat-number {
        font-size: 32px;
    }

    .about-section .stat-label {
        font-size: 14px;
    }

    .about-section .image-grid {
        height: 350px;
    }

    .about-section .image-box.main {
        width: 85%;
        height: 250px;
    }

    .about-section .image-box.secondary {
        width: 65%;
        height: 200px;
    }

    .about-section .value-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .about-section .value-title {
        font-size: 18px;
    }

    .about-section .value-text {
        font-size: 14px;
    }

    .about-section .timeline-item {
        width: calc(100% - 80px);
        margin-left: 40px !important;
        padding: 20px;
    }

    .about-section .timeline::before {
        left: 15px;
    }

    .about-section .timeline-item::before {
        left: -30px !important;
        width: 14px;
        height: 14px;
    }

    .about-section .year {
        font-size: 16px;
    }

    .about-section .timeline-title {
        font-size: 18px;
    }

    .about-section .timeline-text {
        font-size: 14px;
    }

    .about-section .feature-item {
        flex-direction: row;
        align-items: center;
    }

    .about-section .feature-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .about-section .feature-text {
        font-size: 14px;
    }

    .about-section .bottom-image img {
        height: 300px;
    }

    .about-section .cta-banner {
        border-radius: 10px;
    }

    .about-section .cta-banner h3 {
        font-size: 22px;
    }

    .about-section .cta-banner p {
        font-size: 14px;
    }

    .about-section .cta-button {
        width: calc(100% - 40px);
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}


@media (max-width: 399px) {
    .about-section h2 {
        font-size: 1.6rem;
    }

    .about-section .image-grid {
        height: 300px;
    }

    .about-section .image-box.main {
        width: 90%;
        height: 200px;
    }

    .about-section .image-box.secondary {
        width: 70%;
        height: 180px;
    }

    .about-section .timeline-item {
        padding: 15px;
    }

    .about-section .feature-text {
        font-size: 13px;
    }
}


@media (max-height: 600px) and (orientation: landscape) {
    .about-section {
        padding: 30px 0;
    }

    .about-section .image-grid {
        height: 300px;
    }

    .about-section .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-section img {
        image-rendering: -webkit-optimize-contrast;
    }
}



.hero-sec {
    padding: 0;  
    color: white;
    position: relative;
    height: auto;
    margin-top: 7rem;
    padding-bottom: 0;
    overflow: hidden;
    background: var(--bg-color);
}

.hero-sec .container {
    max-width: calc(1300px - 60px);
    margin: 0 auto;
    padding: 70px 40px;
    width: 100%;
    background: linear-gradient(125deg,  #2768c9,#021183);
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-sec .container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0) 50%
    );
    transform: rotate(-15deg);
    z-index: 0;
}

.hero-sec .container::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0) 50%
    );
    transform: rotate(15deg);
    z-index: 0;
}

.hero-sec .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-sec .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
}

.hero-sec .breadcrumb-item {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-sec .breadcrumb-item:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin-left: 5px;
}

.hero-sec .breadcrumb-item a {
    color: rgba(255,255,255,0.9);
    transition: color 0.3s ease;
}

.hero-sec .breadcrumb-item a:hover {
    color: #fff;
}

.hero-sec .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
}

.hero-sec h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-sec .subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    max-width: 700px;
    line-height: 1.6;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

@media (max-width: 768px) {
    .hero-sec {
        margin-top: 4.5rem;
    }

    .hero-sec .container {
        padding: 60px 20px;
        border-radius: 0px;
    }

    .hero-sec .breadcrumb {
        margin-bottom: 30px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .hero-sec .container {
        padding: 50px 20px;
    }

    .hero-sec .breadcrumb {
        margin-bottom: 25px;
    }

    .hero-sec .breadcrumb-item {
        font-size: 12px;
    }

    .hero-sec .subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }
}



.blog-list-sec {
    padding: 80px 0;
    background: var(--bg-color);
}

.blog-list-sec .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}


.blog-list-sec .search-box {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.blog-list-sec .search-box form {
    width: 100%;
    position: relative;
}

.blog-list-sec .search-box input {
    width: calc(100% - 90px);
    padding: 15px 60px 15px 25px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.blog-list-sec .search-box input::placeholder {
    color: var(--text-dark-low);
    font-weight: 400;
}

.blog-list-sec .search-box input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(2,17,131,0.1);
    outline: none;
}

.blog-list-sec .search-box .search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list-sec .search-box .search-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-50%) scale(1.05);
}

.blog-list-sec .search-box .search-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.blog-list-sec .search-box .search-btn:hover i {
    transform: scale(1.1);
}


.blog-list-sec .filter-wrapper {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-list-sec .filter-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-list-sec .filter-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: white;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list-sec .filter-btn:hover {
    background: var(--primary-color-low);
    color: var(--primary-color);
}

.blog-list-sec .filter-btn.active {
    background: var(--primary-color);
    color: white;
}


.blog-list-sec .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-list-sec .blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.blog-list-sec .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-list-sec .blog-card .card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-list-sec .blog-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-list-sec .blog-card:hover .card-img img {
    transform: scale(1.1);
}

.blog-list-sec .blog-card .category {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 15px;
    background: rgba(255,255,255,0.9);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.blog-list-sec .blog-card .card-content {
    padding: 30px;
}


.blog-list-sec .blog-card .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.blog-list-sec .blog-card .meta span {
    font-size: 13px;
    color: var(--text-dark-low);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: var(--bg-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.blog-list-sec .blog-card .meta span i {
    font-size: 12px;
    color: var(--primary-color);
}

.blog-list-sec .blog-card .meta .author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-list-sec .blog-card .meta .author img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-list-sec .blog-card .meta .category-tag {
    background: var(--primary-color-low);
    color: var(--primary-color);
    font-weight: 500;
}

.blog-list-sec .blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--text-dark);
}

.blog-list-sec .blog-card p {
    font-size: 14px;
    color: var(--text-dark-low);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-list-sec .blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 20px;
    padding: 0;
    background: none;
    position: relative;
}

.blog-list-sec .blog-card .read-more::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.blog-list-sec .blog-card .read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.blog-list-sec .blog-card .read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.blog-list-sec .blog-card .read-more:hover svg {
    transform: translateX(4px);
}


.blog-list-sec .no-result {
    grid-column: 1 / -1;
    background: white;
    border-radius: 20px;
    padding: 60px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-list-sec .no-result i {
    font-size: 50px;
    color: var(--primary-color-low);
    margin-bottom: 20px;
    display: block;
}

.blog-list-sec .no-result h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-list-sec .no-result p {
    font-size: 16px;
    color: var(--text-dark-low);
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}


.blog-list-sec .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blog-list-sec .pagination button {
    min-width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: white;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-list-sec .pagination button:hover {
    background: var(--primary-color-low);
    color: var(--primary-color);
}

.blog-list-sec .pagination button.active {
    background: var(--primary-color);
    color: white;
}

.blog-list-sec .pagination .page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-list-sec .pagination .prev-page,
.blog-list-sec .pagination .next-page {
    background: white;
    color: var(--primary-color);
}


@media (max-width: 1400px) {
    .blog-list-sec .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .blog-list-sec .container {
        max-width: 1000px;
    }
    
    .blog-list-sec .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .blog-list-sec .blog-grid {
        width: 95%;
        margin: 0 auto;
        margin-bottom: 50px;
    }

    .blog-list-sec {
        padding: 60px 0;
    }

    .blog-list-sec .container {
        max-width: 800px;
    }

    .blog-list-sec .filter-wrapper {
        gap: 25px;
    }

    .blog-list-sec .search-box {
        max-width: 100%;
        order: 2;
    }

    .blog-list-sec .filter-categories {
        order: 1;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .blog-list-sec {
        padding: 50px 0;
    }

    .blog-list-sec .container {
        padding: 0 15px;
    }

    .blog-list-sec .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-list-sec .search-box input {
        padding: 14px 55px 14px 20px;
        width: calc(100% - 70px);
        font-size: 14px;
    }

    .blog-list-sec .search-box .search-btn {
        width: 38px;
        height: 38px;
    }

    .blog-list-sec .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .blog-list-sec {
        padding: 40px 0;
    }

    .blog-list-sec .container {
        padding: 0 12px;
    }

    .blog-list-sec .filter-categories {
        gap: 8px;
    }

    .blog-list-sec .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .blog-list-sec .search-box input {
        padding: 12px 50px 12px 15px;
        width: calc(100% - 70px);
        font-size: 13px;
    }

    .blog-list-sec .search-box .search-btn {
        width: 34px;
        height: 34px;
        right: 6px;
    }

    .blog-list-sec .search-box .search-btn i {
        font-size: 14px;
    }
}

@media (max-width: 375px) {
    .blog-list-sec .filter-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}
