* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, system-ui, sans-serif;
}

:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --navy-blue: #1e293b;
    --navy-blue-dark: #0f172a;
    --text-dark: #1f2937;
    --text-gray: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.header.hide {
    transform: translateY(-100%);
}

.top-bar {
    background-color: var(--navy-blue);
    /* padding: 8px 0; */
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 24px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--bg-white);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.contact-item svg {
    flex-shrink: 0;
}

.contact-item:hover {
    opacity: 0.8;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--bg-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.navbar {
    background-color: var(--bg-white);
    height: 80px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 150px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.logo-text {
    display: none;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
}

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

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-cta {
    display: inline-block;
    padding: 10px 24px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-cta:hover {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
    border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e293b;
    color: var(--bg-white);
    text-align: center;
    padding: 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    left: 0;
    right: 0;
}

.hero .container {
    width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-slider-wrapper {
    width: 100vw;
    max-width: 100vw;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100vw;
    min-height: 100vh;
    background: transparent;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-slide {
    min-width: 100vw;
    width: 100vw;
    min-height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    background-color: #1e293b;
    /* background-size: cover; */
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    position: relative;
    margin: 0;
    padding: 0;
}

/* Slide 1 - Desktop background */
/* .hero-slide-1 {
    background-image: url('assets/image/background1.png');
} */

/* Slide 2 - Desktop background */
/* .hero-slide-2 {
    background-image: url('assets/image/background1.png');
} */

.hero-content {
    max-width: 800px;
    width: 100%;
    padding: 180px 20px 80px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

.why-choose {
    padding: 75px 20px;
    background-color: var(--bg-white);
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
}

.why-choose-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.highlight-blue {
    color: var(--primary-blue);
}

/* Hero Slider Dots */
.hero-slider-dots {
    display: none;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.hero-slider-dot.active {
    background-color: var(--primary-blue);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.5);
}

.why-choose-subheading {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.why-choose-text {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: inherit;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 32px;
    background-color: #2563eb96;
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
    align-self: flex-start;
}

.btn-learn-more:hover {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
}

.why-choose-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 3px 35px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #EAF3FF;
    border-radius: 12px;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color:#4b5563;
    margin-bottom: 8px;
    text-align: left;
}

.feature-description {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

.shodo-bg-texture,
.shodo-accent {
    display: none;
}

.cards-slider-wrapper {
    position: relative;
}

.cards-slider-container {
    overflow: visible;
    position: relative;
}

.cards-slider-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease;
}

.slider-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--primary-blue);
    width: 24px;
    border-radius: 4px;
}

.slider-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #f9fafb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow svg {
    color: var(--primary-blue);
}

.slider-arrow-prev {
    left: 0;
}

.slider-arrow-next {
    right: 0;
}

.slider-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 1024px) {
    .cards-slider-wrapper {
        padding: 0 20px;
        overflow: hidden;
    }

    .cards-slider-container {
        overflow: hidden;
        width: 100%;
    }

    .cards-slider-track {
        display: flex;
        flex-direction: row;
        width: 400%;
        gap: 0;
    }

    .cards-slider-track .feature-card {
        min-width: 25%;
        width: 25%;
        flex-shrink: 0;
        box-sizing: border-box;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    }

    .slider-arrow {
        display: flex;
    }

    .slider-dots {
        display: flex;
    }

    .why-choose-cards {
        gap: 0;
        overflow: hidden;
    }
}

.featured-brands {
    padding: 40px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
}

.featured-brands .container {
    text-align: center;
    margin-bottom: 60px;
}

.brands-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 1rem;
}

.brands-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.brands-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-slider {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: rotateBrands 40s linear infinite;
    will-change: transform;
}

.brands-slider-wrapper:hover .brands-slider {
    animation-play-state: paused;
}

.brand-card {
    width: 180px;
    height: 180px;
    min-width: 180px;
    flex-shrink: 0;
    background-color: var(--bg-white);
    border-radius: 12px;
    /* box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

.brand-logo {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

@keyframes rotateBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.services {
    padding: 75px 20px;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
    align-self: flex-start;
}

.service-learn-more svg {
    transition: var(--transition);
}

.service-learn-more:hover {
    color: var(--primary-blue-dark);
}

.service-learn-more:hover svg {
    transform: translateX(4px);
}

.services-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.btn-view-all:hover {
    background: linear-gradient(135deg, var(--primary-blue-dark), #1e40af);
    box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.arrow-icon {
    font-size: 18px;
    line-height: 1;
}

.cta-section {
    padding: 75px 20px;
    background-color: var(--bg-light);
}

.cta-card {
    width: 82.5%;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 24px;
    padding: 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    background: rgba(59, 130, 246, 0.3);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    position: relative;
    z-index: 1;
}

.cta-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    position: relative;
    z-index: 1;
}

.cta-highlight {
    color: #93c5fd;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: var(--bg-white);
    color: var(--primary-blue-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    min-height: 48px;
}

.btn-cta-primary svg {
    flex-shrink: 0;
    color: var(--primary-blue-dark);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    background-color: rgba(59, 130, 246, 0.2);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 10px;
    transition: var(--transition);
    min-height: 48px;
}

.btn-cta-secondary svg {
    flex-shrink: 0;
    color: var(--bg-white);
}

.btn-cta-secondary:hover {
    background-color: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.7);
}

.cta-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-meta {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
}

.cta-meta-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-meta-icon svg {
    color: var(--bg-white);
}

.custom-solutions {
    padding: 0px 20px 0px 20px;
    background-color: var(--bg-light);
}

.custom-solutions-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
}

.custom-solutions-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.custom-solutions-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.custom-solutions-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-custom-quote {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.btn-custom-quote:hover {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.btn-speak-expert {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.btn-speak-expert:hover {
    background-color: var(--bg-light);
    border-color: var(--text-gray);
}

.services-extended {
    padding: 75px 20px;
    background-color: var(--bg-white);
}

.services-extended-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.services-extended-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 820px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.services-extended-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: stretch;
}

@media (min-width: 769px) {
    .services-extended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .services-extended-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.servicex-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
}

.servicex-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background-color: #EAF3FF;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    order: 1;
}

.servicex-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    order: 2;
}

.servicex-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15), 0 4px 8px rgba(0, 0, 0, 0.1);
}

.servicex-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 12px;
    background-color: #EAF3FF;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.servicex-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.servicex-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.servicex-desc {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    flex: 1;
}

.servicex-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
}

.servicex-link:hover {
    color: var(--primary-blue-dark);
    transform: translateX(2px);
}

.services-extended-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.btn-services-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    transition: var(--transition);
}

.btn-services-all:hover {
    background-color: var(--primary-blue-dark);
    box-shadow: 0 6px 12px -2px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

.contact-new {
    padding: 0px 20px 50px 20px;
    background-color: var(--bg-light);
}

.contact-new-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.contact-new-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.contact-new-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-section {
    width: 100%;
}

.contact-form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.contact-new-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group-new {
    display: flex;
    flex-direction: column;
}

.form-group-new label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group-new input,
.form-group-new textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--bg-white);
}

.form-group-new input:focus,
.form-group-new textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group-new textarea {
    resize: vertical;
    min-height: 140px;
}

.btn-send-message {
    width: 100%;
    padding: 14px 28px;
    background-color: var(--primary-blue);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.btn-send-message:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-info-text {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 0.9375rem;
}

.contact-follow-section {
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.contact-follow-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-social-icons {
    display: flex;
    gap: 0.75rem;
}

.contact-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #eff6ff;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social-icon:hover {
    background-color: var(--primary-blue);
    color: var(--bg-white);
    transform: translateY(-2px);
}

@media (min-width: 968px) {
    .contact-new-wrapper {
        grid-template-columns: 1.1fr 1fr;
        gap: 3rem;
    }
    
    .contact-form-card {
        padding: 2.5rem;
    }
    
    .contact-info-card {
        padding: 1.75rem;
    }
}

.footer {
    background-color: #1e293b;
    color: var(--bg-white);
    padding: 80px 20px 30px;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.footer-company-name {
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin: 0 0 0.5rem 0;
}

.footer-subtitle {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.5rem 0;
    font-weight: 400;
}

.footer-description {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0 auto 2rem;
    font-size: 1rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-nav-link:hover {
    color: var(--bg-white);
}

.footer-nav-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

.footer-middle {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-follow,
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-middle-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--bg-white);
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
}

.footer-social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-divider {
    width: 100%;
    max-width: 800px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin-bottom: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 24px;
    }
    
    .footer-middle {
        /* flex-direction: column; */
        gap: 2.5rem;
    }
    
    .footer-nav {
        /* flex-direction: column; */
        gap: 0.5rem;
    }
    
    .footer-nav-separator {
        display: none;
    }
    
    .footer-company-name {
        font-size: 1.75rem;
    }
    
    .footer-description {
        font-size: 0.9375rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.4s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .hero-slider-wrapper {
        max-width: 100%;
        overflow: hidden;
    }
    
    .hero-slider-track {
        width: 100%;
    }
    
    .hero-slide {
        min-width: 100vw;
        width: 100vw;
        margin: 0;
        padding: 0;
    }
    
    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content h2 {
        text-align: center;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-info {
        gap: 16px;
    }

    .contact-item {
        font-size: 12px;
    }

    .nav-menu {
        gap: 24px;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-heading {
        font-size: 2rem;
    }

    .featured-brands {
        padding: 20px 0;
    }

    .brands-heading {
        font-size: 2.5rem;
    }

    .brands-subtitle {
        font-size: 1.5rem;
    }

    .brand-card {
        width: 160px;
        height: 160px;
        min-width: 160px;
    }

    .services-extended-heading {
        font-size: 2rem;
    }

    .services-extended-subtitle {
        font-size: 1rem;
    }

    .cta-card {
        width: 85%;
        padding: 56px 40px;
    }

    .cta-heading {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: left;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 0;
        align-items: stretch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
        padding: 0 20px;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link.active {
        border-bottom: 2px solid var(--primary-blue);
    }

    .btn-cta {
        display: none;
    }

    .hero {
        padding: 0;
        margin: 0;
        min-height: 100vh;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero .container {
        padding: 0;
        max-width: 100vw;
        width: 100vw;
        margin: 0;
    }
    
    .hero-slider-wrapper {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        overflow: hidden;
        min-height: 100vh;
    }
    
    .hero-slider-track {
        width: 100%;
        min-height: 100vh;
    }
    
    .hero-slide {
        min-width: 100vw;
        width: 100vw;
        min-height: 100vh;
    }
    
    /* Slide 1 - Mobile background */
    /* .hero-slide-1 {
        background-image: url('assets/image/background2.png') !important;
    } */
    
    /* Slide 2 - Mobile background */
    /* .hero-slide-2 {
        background-image: url('assets/image/background2.png') !important;
    } */
    
    /* .hero-slide {
        background-size: cover;
    } */
    
    .hero-content {
        max-width: 500px;
        margin: 0 auto;
        padding: 140px 20px 60px;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .why-choose {
        padding: 60px 20px;
    }

    .why-choose-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-heading {
        font-size: 1.875rem;
    }

    .why-choose-subheading {
        font-size: 1.125rem;
    }

    .why-choose-cards {
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .featured-brands {
        padding: 60px 0;
    }

    .featured-brands .container {
        margin-bottom: 40px;
    }

    .brands-heading {
        font-size: 1.75rem;
    }

    .brands-subtitle {
        font-size: 0.9375rem;
    }

    .brand-card {
        width: 140px;
        height: 140px;
        min-width: 140px;
        gap: 16px;
    }

    .brand-logo {
        font-size: 1rem;
    }

    .services {
        padding: 60px 20px;
    }

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

    .services-button-wrapper {
        margin-top: 40px;
    }

    .btn-view-all {
        padding: 12px 24px;
        font-size: 14px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-card {
        width: 100%;
        padding: 48px 32px;
        border-radius: 20px;
    }

    .cta-heading {
        font-size: 1.875rem;
    }

    .cta-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 2rem;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
    }

    .cta-meta {
        gap: 24px;
    }

    .cta-meta-item {
        font-size: 13px;
    }

    .custom-solutions {
        padding: 10px 20px;
    }

    .custom-solutions-container {
        padding: 40px 24px;
    }

    .custom-solutions-heading {
        font-size: 2rem;
    }

    .custom-solutions-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .custom-solutions-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-custom-quote,
    .btn-speak-expert {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-extended {
        padding: 60px 20px;
    }

    .btn-services-all {
        padding: 12px 24px;
        font-size: 14px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact {
        padding: 60px 20px;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 0;
        margin: 0;
        width: 100vw;
        max-width: 100vw;
    }
    
    .hero .container {
        padding: 0;
        max-width: 100vw;
        width: 100vw;
        margin: 0;
    }
    
    .hero-slider-wrapper {
        max-width: 100vw;
        width: 100vw;
        margin: 0;
        overflow: hidden;
        min-height: 100vh;
    }
    
    .hero-slider-track {
        width: 100vw;
        min-height: 100vh;
    }
    
    .hero-slide {
        min-width: 100vw;
        width: 100vw;
        min-height: 100vh;
    }
    
    .hero-content {
        max-width: 320px;
        margin: 0 auto;
        padding: 100px 15px 40px;
        width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .logo-name {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 11px;
    }
}

.product-card{
  background:#ffffff;
  border:1px solid #e2e8f0;
  border-radius:14px;
  padding:20px;
}

.product-header{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.product-icon{
  width:42px;
  height:42px;
  background:#f1f5f9;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

.product-icon svg {
  width: 24px;
  height: 24px;
  color: #0f172a;
}

.product-title{
  font-size:15px;
  font-weight:700;
  color:#0f172a;
  margin:0 0 4px;
}

.product-desc{
  font-size:13px;
  color:#64748b;
  line-height:1.5;
  margin:0;
}

.product-divider{
  border:none;
  border-top:1px solid #e5e7eb;
  margin:16px 0;
}

.types-label{
  font-size:13px;
  font-weight:600;
  color:#334155;
  margin-bottom:8px;
}

.types-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:6px 18px;
  padding-left:14px;
  margin:0;
}

.types-list li{
  font-size:12.5px;
  color:#475569;
  position:relative;
}

.types-list li::before{
  content:"•";
  color:#84cc16;
  font-size:18px;
  position:absolute;
  left:-12px;
  top:-4px;
}

.product-tags{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:14px 0;
}

.pill{
  font-size:11px;
  padding:4px 10px;
  border-radius:999px;
  font-weight:600;
}

.pill.green{background:#ecfccb;color:#365314;}
.pill.blue{background:#e0f2fe;color:#075985;}
.pill.gray{background:#f1f5f9;color:#334155;}

.quote-btn{
  width:100%;
  padding:10px;
  border-radius:8px;
  border:1px solid #64748b;
  background:#fff;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
}

.brand-logo img {
    width: 120px;
    height: auto;
    object-fit: contain;
}
