/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

body.video-modal-open {
    overflow: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 33px;
}

/* Header styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: static;
    z-index: 1000;
}

.header .container{
    max-width: 100% !important;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 110px;
}

.header-top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-link,
.enterprise-link {
    text-decoration: none;
    color: #636363;
    font-weight: 500;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-link:hover,
.enterprise-link:hover {
    color: #007DB8;
}

.enterprise-accent {
    width: 35px;
    height: 10px;
    background-color: #0672cb;

    display: inline-block;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 6px 8px;
    cursor: pointer;
    color: #333;
    transition: border-color 0.3s, color 0.3s;
    width: 42px;
    height: 40px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
}



.menu-bar {
    width: 20px;
    height: 1.8px;
    background-color: currentColor;
    border-radius: 999px;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}

body.menu-open .menu-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 22px;
}

body.menu-open .menu-bar:nth-child(2) {
    opacity: 0;
}

body.menu-open .menu-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 22px;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(12, 18, 24, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px;

}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-dropdown {
    position: relative;
}

.nav-trigger {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #636363;
    transition: color 0.3s;
    padding: 0;
    text-decoration: none;
}
.nav-trigger ion-icon{
    font-size: 1.1rem;
}

.nav-trigger:focus-visible {
    outline: 2px solid #007DB8;
    outline-offset: 3px;
}

.nav-dropdown:hover .nav-trigger,
.nav-dropdown:focus-within .nav-trigger {
    color: #007DB8;
}

.nav-dropdown ul {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 200px;
    list-style: none;
    z-index: 20;
}

.nav-dropdown:hover ul,
.nav-dropdown:focus-within ul {
    display: block;
}

.nav-dropdown ul li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s, color 0.3s;
}

.nav-dropdown ul li a:hover {
    background-color: #f2f5f8;
    color: #007DB8;
}

.language-dropdown .nav-trigger > ion-icon:first-child {
    font-size: 18px;
}

.chevron {
    font-size: 14px;
    transition: transform 0.25s ease;
}

.nav-dropdown:hover .chevron,
.nav-dropdown:focus-within .chevron {
    transform: rotate(180deg);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: inline-flex;
    }

    .header-top {
        align-items: center;
        gap: 14px;
    }

    .header-top-actions {
        gap: 12px;
    }

    .header-bottom {
        position: fixed;
        top: var(--header-top-height, 70px);
        left: 0;
        height: calc(100vh - var(--header-top-height, 70px));
        width: 280px;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        background-color: #fff;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 12px 0 30px rgba(0, 0, 0, 0.12);
        border-top: none;
        z-index: 1000;
    }

    body.menu-open .header-bottom {
        transform: translateX(0);
    }

    body.menu-open .mobile-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .mobile-overlay {
        inset: auto 0 0 0;
        top: var(--header-top-height, 70px);
        height: calc(100vh - var(--header-top-height, 70px));
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        width: 100%;
    }

    .header-bottom .nav-dropdown ul {
        position: static;
        box-shadow: none;
        padding: 6px 0 0;
        background: transparent;
    }

    .language-dropdown ul {
        position: absolute;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        padding: 10px 0;
        background: #fff;
    }

    .enterprise-link {
        margin-top: 24px;
    }
}

/* Hero section - Carousel design */
.hero {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    background: #0e161d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-left {
    background-color: #0e161d;
    color: white;
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    position: relative;
    padding-right: 6%;
}
@media(min-width: 1200px){
    .slide-content{
        padding-left: 8.3333333%;
    }
    
}

.slide-left .slide-title {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.1;
}

.slide-left p {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 1.75rem;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.slide-right img,
.slide-right video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-navigation {
    position: absolute;
    bottom: 30px;
    left: 85%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.carousel-main-controls {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
}

.nav-btn {
    width: 40px;
    height: 40px;
   
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;

}

.nav-btn:hover {
    background: white;

}


.nav-toggle-btn {
    width: 120px;
    height: 40px;
    border: none;
    border-radius: 0;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-toggle-btn:hover {
    opacity: 0.85;
}

.nav-toggle-btn ion-icon {
    font-size: 1rem;
    color: #fff;
}

.slide-counter {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #007DB8;
   
    padding: 8px 12px;
    border-radius: 20px;
   
}

.current-slide {
    color: #007DB8;
}

.separator {
    color: #666;
}

.total-slides {
    color: #666;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #0e161d;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-primary-outline {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 20px;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    font-weight: 400;
    transition: all 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-primary-outline:hover {
    background-color: white;
    color: #06102a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Solutions showcase section */
.solutions-showcase {
    padding: 40px 0;
    background: #0a0e14;
}

.solutions-showcase .container{
    max-width: 1400px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.solution-card {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    aspect-ratio: 1.3 / 1;
    box-shadow: 0 12px 25px rgba(10, 14, 20, 0.15);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.solution-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 20, 0);
    transition: background 0.35s ease;
    z-index: 1;
}

.solution-tag {
    position: absolute;
    top: 0;
    left: 0;
    width: 177px;
    height: auto;
    background: #0a0e14;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
    z-index: 2;
    transition: background-color 0.35s ease;
}

.solution-card:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.solution-card:hover .solution-tag {
    background: #293b4d;
}

/* Featured carousel section */
.featured-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #141d28;
    overflow: hidden;
    padding: 22px 0 28px;
}

.featured-carousel-header {
    width: min(1400px, 94vw);
    margin: 0 auto 12px;
    color: #fff;
}

.featured-pretitle {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 2px;

    margin-bottom: 8px;
}

.featured-title {
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.1;
    font-weight: 300;
}

.featured-carousel-viewport {
    width: min(1400px, 96vw);
    height: calc(100vh - 200px);
    margin: 0 auto;
    overflow: visible;
    padding: 0 0.5vw;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.featured-carousel-viewport.is-dragging {
    cursor: grabbing;
}

.featured-carousel-track {
    display: flex;
    gap: 24px;
    height: 100%;
    transition: transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
    padding-right: 1vw;
    padding-left: 6vw;
}

.featured-slide {
    position: relative;
    flex: 0 0 min(1400px, 92vw);
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.featured-slide.active {
    z-index: 2;
}

.featured-slide-media {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /*padding: clamp(10px, 2.5vw, 28px);*/
}

.featured-slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
   /* background: rgba(8, 12, 18, 0.78);*/
    transition: background 0.45s ease;
    z-index: 1;
}

.featured-slide.active .featured-slide-media::after {
    background: rgba(20, 29, 40, 0.12);
}

.featured-slide-media img {
    width: 82%;
    height: 90%;
   /* max-width: 860px;
    max-height: 88%;*/
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.featured-card {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #141d28;
    width: min(360px, 40vw);
    padding: 26px 28px;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 4;
    transition: opacity 0.35s ease;
}

.featured-slide:not(.active) .featured-card {
    opacity: 0.65;
}

.featured-card h3 {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 12px;
}

.featured-card p {
    font-size: 1rem;
    color: #3a4755;
    margin-bottom: 16px;
    color: #000;
    font-weight: 300;
}

.featured-card a {
    color: #007db8;
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px
}
.featured-card a ion-icon {
    font-size: 1.5rem;
    
}

.featured-card a:hover {
    text-decoration: underline;
}

.featured-nav-btn {
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 3px;
    background: rgba(20, 29, 40, 0.7);
    color: #007db8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    background: #fff;
}

.featured-nav-btn:hover {
    background: #d9f5fd;
    border-color: rgba(255, 255, 255, 0.8);
}

.featured-prev {
    left: 18px;
}

.featured-next {
    right: 18px;
}

.featured-nav-btn ion-icon {
    font-size: 1.2rem;
}

.featured-carousel-ui {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: min(1400px, 96vw);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 3;
}

.featured-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
}

.featured-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, width 0.2s ease;
}

.featured-dot.active {
    width: 32px;
    border-radius: 999px;
    background: #0672cb;
    transform: scale(1);
    animation: dotRipple 1s ease;
}

.featured-toggle-btn {
    width: 130px;
    height: 42px;
    border: none;
    background: #000;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-size: 0.9rem;
}

.featured-toggle-btn:hover {
    opacity: 0.86;
}

.featured-toggle-btn ion-icon {
    font-size: 1.5rem;
    color: #ffffff !important;
}

@keyframes dotRipple {
    0% {
        box-shadow: 0 0 0 0 rgba(6, 114, 203, 0.55);
        transform: scale(0.9);
    }
    60% {
        box-shadow: 0 0 0 10px rgba(6, 114, 203, 0);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 0 14px rgba(6, 114, 203, 0);
        transform: scale(1);
    }
}

/* Video banner section */
.video-banner {
    position: relative;
    width: 100%;
    min-height: 80vh;
    background: #0e161d;
    overflow: hidden;
}

.video-banner-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.video-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-banner-overlay {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 70px 8vw;
    background: rgba(8, 12, 18, 0.32);
}

.video-banner-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 12, 18, 0.85) 0%, rgba(8, 12, 18, 0.45) 55%, rgba(8, 12, 18, 0.7) 100%);
    z-index: 0;
}

.video-banner-content {
    position: relative;
    z-index: 1;
    color: #fff;
    max-width: 780px;
}

.video-banner-pretitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.video-banner-title {
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 16px;
}

.video-banner-text {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 28px;
}

.video-banner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    flex-direction: column;
}

.video-banner-btn {
    border: none;
    background: #0672cb;
    color: #fff;
    padding: 14px 26px;
    border-radius: 3px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    display: flex;
    align-items: center;
    gap: 20px;

}

.video-banner-btn ion-icon{
    font-size: 1.2rem;
}

.video-banner-btn:hover {
    

    background: #0063b8;
}

.video-banner-link {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    padding-bottom: 2px;
}

.video-banner-link:hover {
    border-color: #fff;
}

.video-banner-toggle-btn {
    position: absolute;
    right: 100px;
    bottom: 35px;
    z-index: 3;
    width: 130px;
    height: 42px;
    border: none;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    font-size: 0.9rem;
}

.video-banner-toggle-btn:hover {
    opacity: 0.86;
}

.video-banner-toggle-btn ion-icon {
    font-size: 1.5rem;
    color: #ffffff;
}

.video-banner-modal {
    position: fixed;
    inset: 0;
    background: rgba(6, 10, 16, 0.96);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 5vw;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 9999;
}

.video-banner-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.video-banner-modal-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.video-banner-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 33px;
    height: 33px;

    border: 1px solid rgba(255, 255, 255, 0.4);
    background: #fff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease;
}



.video-banner-modal-close ion-icon {
    font-size: 1.4rem;
    color: #0672cb;
}

.floating-assistance {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 12px;
}

.assist-btn {
    border: none;
    padding: 9px 18px;
    border-radius: 2px;
    background: linear-gradient(92.56deg, #0063b8 12.605%, #7f234f 54.655%, #40155c 122.27%);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(0, 30, 60, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;


    background-repeat: no-repeat;
}

.assist-btn ion-icon {
    font-size: 1.6rem;
}

.assist-btn span{
    font-weight: 500;
    font-size: 1.1rem;
}

.assist-square {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 2px;
    background: #0672cb;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(0, 30, 60, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.assist-square ion-icon {
    font-size: 1.35rem;
}

.assist-btn:hover,
.assist-square:hover {

    filter: brightness(1.05);
    box-shadow: 0 16px 30px rgba(0, 30, 60, 0.28);
}

@media (max-width: 640px) {
    .floating-assistance {
        right: 16px;
        bottom: 16px;
        gap: 10px;
    }

    .assist-btn {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .assist-square {
        width: 40px;
        height: 40px;
    }
}

/* Products section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.products h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 18px;
    color: #333;
}

.products-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
    color: #5a6672;
    font-size: 1.05rem;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(8, 20, 35, 0.12);
    border: 1px solid rgba(0, 125, 184, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(8, 20, 35, 0.18);
}

.product-media {
    position: relative;
    overflow: hidden;
}

.product-media img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.05);
}

.product-content {
    padding: 26px 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-tag {
    align-self: flex-start;
    background: linear-gradient(135deg, #007DB8, #005a87);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card h3 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #1b2733;
    margin: 0;
}

.product-card p {
    color: #5a6672;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.product-link {
    margin-top: auto;
    text-decoration: none;
    color: #007DB8;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 4px;
    width: fit-content;
}

.product-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #007DB8;
    transition: width 0.3s ease;
}

.product-card:hover .product-link::after {
    width: 100%;
}

.product-link:hover {
    color: #005a87;
}

/* CTA section */
.cta-section {
    background-color: #007DB8;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #333;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007DB8;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007DB8;
}

/* About section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: #333;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.about-stats .stat {
    text-align: center;
}

.about-stats .stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007DB8;
    margin-bottom: 10px;
}

.about-stats .stat p {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services {
    padding: 100px 0;
    background: #1d2c3b;
}
.services .container{
    max-width: 1400px;
}
.services h2 {
    text-align: left;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 14px;
    color: #fff;
}

.services-pretitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.services-intro {
    max-width: 720px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: 15px;
    margin-bottom: 60px;
}

.service-card {
    background: #33414e;

    padding: 16px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 125, 184, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: #94dcf7;

    transition: transform 0.3s ease;
}

.service-card:hover {
    background: #485460;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #fff;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.services-highlight {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(0, 1fr);
    align-items: center;
    position: relative;
    gap: 0;
}

.services-highlight-media img {
    width: 100%;
    height: 600px;
    object-fit: cover;

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    display: block;
}

.services-highlight-card {
    background: #141d28;
    color: #fff;
    padding: 32px 34px;

    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4);
    margin-left: -80px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 280px;
}

.services-highlight-card h3 {
    font-size: 2.1rem;
    font-weight: 300;
    line-height: 1.2;
    text-align: center;
}

.services-highlight-card p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.services-highlight-btn {
    align-self: center;
    background: none !important;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.4px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    border: 1px solid #fff;
    margin: 20px;
}

.services-highlight-btn:hover {
    background: #fff !important;
    color: #141d28;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.services-highlight-icons {
    margin-top: auto;
    display: flex;
    gap: 20px;
    padding-top: 16px;
    justify-content: space-around;
}

.services-highlight-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.services-highlight-icon ion-icon {
    font-size: 2rem;
    color: #fff;
}

/* Services gallery section */
.services-gallery {
    background: #002a58;
    padding: 70px 0 90px;
}

.services-gallery .container {
    max-width: 1400px;
}

.services-gallery-pretitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 12px;
}

.services-gallery-title {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: 32px;
}

.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.services-gallery-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;

    
}

.services-gallery-media {
    position: relative;
    overflow: hidden;
}

.services-gallery-media img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.services-gallery-caption {
    padding: 16px;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
    display: flex;

    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    min-height: 72px;
    flex-direction: column;
    height: 100%;
    flex: 1;
}

.services-gallery-caption p {
    margin: 0;
    color: #fff;
    font-weight: 400;
    font-size: 1.4rem;
}

.services-gallery-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;

    padding-bottom: 3px;
    transition: border-color 0.3s ease, color 0.3s ease;
}



.services-gallery-link:hover {
    text-decoration: underline;
}

/* Services promo section */
.services-promo {
    position: relative;
    background: #002a58;
    padding: 80px 0;
    overflow: hidden;
}

.services-promo::before {
    content: "";
    position: absolute;
    inset: -12%;
    background-image: var(--promo-image);
    background-size: cover;
    background-position: center;
    filter: blur(18px);
    opacity: 0.15;
    transform: scale(1.08);
    z-index: 0;
}

.services-promo .container {
    max-width: 1400px;
    position: relative;
    z-index: 1;
}

.services-promo-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
    gap: clamp(24px, 4vw, 60px);
    align-items: center;
}

.services-promo-content {
    order: 1;
}

.services-promo-media {
    order: 2;
}

.services-promo-media img {
    width: 100%;
    height: clamp(320px, 45vw, 480px);
    object-fit: cover;
    display: block;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.services-promo-content {
    color: #fff;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.services-promo-pretitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #fff;
}

.services-promo-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 300;
    line-height: 1.1;
    margin: 0;
    color: #fff;
}

.services-promo-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 460px;
}

.services-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0063b8;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 2px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.services-promo-btn:hover {
    background: #0a73cc;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .services-highlight {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .services-highlight-card {
        margin-left: 0;
    }

    .services-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

/* Process section */
.process {
    padding: 100px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 80px;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #007DB8, #667eea, #764ba2);
    z-index: 1;
}

.step {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007DB8, #005a87);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 125, 184, 0.3);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Cases section */
.cases {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cases h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 80px;
    color: #333;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
}

.case-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 125, 184, 0.1);
}

.case-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.case-image {
    position: relative;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.case-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-sector {
    display: inline-block;
    background: linear-gradient(135deg, #007DB8, #005a87);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials section */
.testimonials {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 4rem;
    color: #007DB8;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 3rem;
    color: #007DB8;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #333;
    font-size: 1.1rem;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact section */
.contact {

    background: #f5f6f7;
    color: #111;
}

.contact .container{
    max-width: 100%;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;

    overflow: hidden;
  
}

.contact-left h2 {
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 300;
    margin-bottom: 22px;
    line-height: 1.1;
    color: #111;
    text-align: center;
}

.contact-left {
    background: #fff;
    padding: clamp(28px, 4vw, 44px);
}

.contact-right {
    background: #f5f6f7;
    padding: clamp(28px, 4vw, 44px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    color: #111;

}

.contact-form {
    background: #fff;
   
    padding: 20px 64px;

    box-shadow: none;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 400;
    color: #050505;
    background: #fff;
    padding: 0 6px;
    pointer-events: none;
    transition: transform 0.2s ease, top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    font-size: 0.8rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 14px 14px;
    border: 1px solid #111;
    border-radius: 2px;
    background: #fff;
    color: #111;
    font-size: 1rem;
    transition: border-color 0.3s, background-color 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0277ce;
    background: #fff;
    border: 2px solid #0277ce;
   
    
}

.form-group textarea {
    padding-top: 20px;
    resize: vertical;
    min-height: 140px;
}

.form-group textarea + label {
    top: 20px;
    transform: translateY(0);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #0277ce;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 8px 0 22px;
    color: #111;
    font-size: 0.95rem;
}

.form-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0277ce;
    cursor: pointer;
}

.form-consent label {
    color: #111;
    cursor: pointer;
}

.contact .btn-primary {
    background: #0672cb;
    color: #fff;
    border-radius: 2px;
    font-weight: 400;
    border: none;
    width: 100%;
}

.contact .btn-primary:hover {
    background: #000;
}

.contact-right-pretitle {
    font-size: 0.85rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
    color: #111;
}

.contact-right h3 {
    font-size: clamp(1.6rem, 2.6vw, 2.3rem);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    color: #111;
}

.contact-right-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #333;
    max-width: 420px;
}

.contact-right-image {
    margin-top: 10px;
}

.contact-right-image img {
    width: min(320px, 80%);
    height: auto;
    display: block;
    background: transparent;
}

/* Simple animations - Dell style */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive design */
@media (max-width: 768px) {
    .header-top {
        align-items: center;
        gap: 20px;
    }

    .main-nav ul {
        gap: 20px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .search-input {
        width: 100%;
    }

    .hero {
        height: 80vh;
    }

    .slide-content-full h2 {
        font-size: 2.5rem;
    }

    .service-icon {
        font-size: 3rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 0;
        border-radius: 14px;
    }

    .contact-form {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
        margin-bottom: 0;
    }

    .form-row .form-group {
        margin-bottom: 22px;
    }

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

    .featured-carousel {
        height: auto;
        min-height: 100vh;
        padding: 24px 0 74px;
    }

    .featured-carousel-header,
    .featured-carousel-viewport,
    .featured-carousel-ui {
        width: 92vw;
    }

    .featured-carousel-viewport {
        height: min(62vh, 520px);
    }

    .featured-carousel-track {
        gap: 14px;
        padding-right: 8vw;
    }

    .featured-slide {
        flex-basis: 84vw;
    }

    .featured-card {
        left: 14px;
        right: 16px;
        width: auto;
        top: auto;
        bottom: 16px;
        transform: none;
        padding: 16px 18px;
    }

    .featured-nav-btn {
        width: 44px;
        height: 44px;
        top: 55%;
    }

    .featured-prev {
        left: 10px;
    }

    .featured-next {
        right: 10px;
    }

    .featured-toggle-btn {
        width: 118px;
        height: 40px;
    }

    .video-banner {
        min-height: 60vh;
    }

    .video-banner-overlay {
        min-height: 60vh;
        padding: 52px 8vw;
    }

    .video-banner-title {
        font-size: clamp(1.9rem, 6vw, 2.6rem);
    }

    .video-banner-text {
        font-size: 1rem;
    }

    .video-banner-toggle-btn {
        left: 16px;
        bottom: 16px;
        width: 120px;
        height: 40px;
    }

    .video-banner-modal {
        padding: 30px 5vw;
    }

    .video-banner-modal-video {
        width: 92vw;
        height: 70vh;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .solution-tag {
        width: 74px;
        height: 74px;
        font-size: 0.7rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        height: 70vh;
    }

    .slide-content-full h2 {
        font-size: 2rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .products h2, .testimonials h2, .cta-section h2 {
        font-size: 2rem;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .featured-card {
        padding: 14px 14px;
    }

    .featured-card h3 {
        font-size: 1.1rem;
    }

    .featured-card p {
        font-size: 0.85rem;
    }

    .featured-carousel-ui {
        bottom: 14px;
    }

    .featured-pretitle {
        font-size: 0.72rem;
    }

    .featured-title {
        font-size: 1.35rem;
    }

    .video-banner-overlay {
        padding: 48px 7vw;
    }

    .video-banner-actions {
        gap: 12px;
    }

    .video-banner-btn {
        width: min(220px, 80vw);
    }

    .video-banner-modal {
        padding: 20px 6vw;
    }

    .video-banner-modal-video {
        height: 60vh;
    }

    .video-banner-modal-close {
        top: 16px;
        right: 16px;
    }

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

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

