/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    pointer-events: auto;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video,
.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.1);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 30, 41, 0.65), rgba(95, 149, 152, 0.35));
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 4;
    cursor: pointer;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-dot.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border-color: var(--white);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(95, 149, 152, 0.6);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 3rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    width: fit-content;
    margin: 0 auto;
    animation: slideDown 0.6s ease 0s both;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.8rem;
    margin: 0;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-content p {
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}



/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, var(--light), rgba(95, 149, 152, 0.08));
    padding: 6rem 2rem;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content h2 {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-content p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.about-content p:first-of-type {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.know-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(95, 149, 152, 0.1), transparent);
    border-radius: 10px;
    border-left: 4px solid var(--secondary);
}

.know-more:hover {
    color: var(--primary-light);
    gap: 1rem;
    transform: translateX(10px);
    background: linear-gradient(135deg, rgba(95, 149, 152, 0.2), transparent);
    border-left-color: var(--primary-light);
}

.about-image {
    width: 100%;
    height: 450px;
    background: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=600&h=450&fit=crop') center/cover no-repeat,
                linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    box-shadow: 0 20px 60px rgba(6, 30, 41, 0.3);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 149, 152, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
}

/* ===== APPLICATIONS SECTION ===== */
.applications {
    background: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.applications::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: none;
    pointer-events: none;
    z-index: 0;
}

.applications .section-title {
    color: var(--primary);
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    width: 100%;
    text-align: center;
}

.applications .section-title::after {
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.apps-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.app-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
    background-size: cover;
    background-position: center;
    left: 0;
    box-shadow: none;
    overflow: hidden;
}

.app-slide.active {
    opacity: 1;
    z-index: 10;
}

.app-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 30, 41, 0.7), rgba(6, 30, 41, 0.35));
    z-index: 2;
}

.app-slide.right::before {
    background: linear-gradient(90deg, rgba(6, 30, 41, 0.35), rgba(6, 30, 41, 0.7));
}

.app-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 550px;
    padding: 4rem;
    animation: fadeInLeft 0.8s ease 0.2s both;
}

.app-slide.right .app-content {
    margin-left: auto;
    animation: fadeInRight 0.8s ease 0.2s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.app-content h3 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
}

.apps-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1.2rem;
    z-index: 15;
    padding: 0;
}

.apps-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.apps-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: var(--white);
    transform: scale(1.3);
}

.apps-dot.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    border-color: var(--white);
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(95, 149, 152, 0.6);
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    background: linear-gradient(135deg, var(--light), rgba(95, 149, 152, 0.05));
    padding: 6rem 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--grey-light);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== VALUES SECTION ===== */
.values {
    background: linear-gradient(135deg, var(--primary), var(--primary-light)) no-repeat,
                radial-gradient(circle at 20% 80%, rgba(95, 149, 152, 0.15), transparent),
                radial-gradient(circle at 80% 20%, rgba(95, 149, 152, 0.15), transparent);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 7rem;
}

.values .section-title {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 149, 152, 0.1), rgba(95, 149, 152, 0.1));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(95, 149, 152, 0.5);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    background: linear-gradient(135deg, var(--light), rgba(95, 149, 152, 0.08));
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
}

.products::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(95, 149, 152, 0.1), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.carousel {
    display: flex;
    gap: 2.5rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product-card {
    flex: 0 0 calc(33.333% - 1.7rem);
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid rgba(95, 149, 152, 0.1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(95, 149, 152, 0.2);
    border-color: rgba(95, 149, 152, 0.3);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(95, 149, 152, 0.15), transparent);
    transition: all 0.3s ease;
}

.product-card:hover .product-image::after {
    background: linear-gradient(135deg, rgba(95, 149, 152, 0.35), transparent);
}

.product-content {
    padding: 2.5rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.product-content p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.product-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), var(--primary-light));
    color: var(--white);
    padding: 0.85rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(95, 149, 152, 0.3);
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(95, 149, 152, 0.4);
}

.carousel-nav {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 4rem;
    align-items: center;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.carousel-dot {
    width: 28px;
    height: 12px;
    border-radius: 25px;
    background: rgba(0, 212, 255, 0.3);
    border: 2px solid rgba(0, 212, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    display: inline-block;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-dot:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: var(--secondary);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.6);
    transform: scale(1.1);
}

/* ===== FOOTER ===== */

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 2rem;
        font-size: 0.9rem;
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        max-width: 90%;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.25;
        margin: 0;
        font-weight: 800;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .btn-icon {
        margin-right: 0.5rem;
    }

    .hero-dots {
        bottom: 2.5rem;
        gap: 1rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .about-container {
        gap: 3rem;
    }

    .about-content h2 {
        font-size: 2.4rem;
    }

    .about-image {
        height: 380px;
    }

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

    .apps-slider {
        height: 80vh;
        min-height: 550px;
    }

    .app-content {
        padding: 3.5rem 2.5rem;
    }

    .app-content h3 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .app-content p {
        font-size: 1rem;
    }

    .why-us {
        padding: 4rem 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .values {
        padding: 4rem 2rem 5rem;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .products {
        padding: 4.5rem 2rem;
    }

    .product-card {
        flex: 0 0 calc(50% - 1.25rem);
    }

    .carousel {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 2.5rem;
    }

    footer {
        padding: 4.5rem 2rem 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 1.2rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 60px;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, rgba(6, 30, 41, 0.98), rgba(29, 84, 109, 0.98));
        flex-direction: column;
        gap: 0;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        z-index: 999;
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(95, 149, 152, 0.2);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links .navbar-cta-btn-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav-links a {
        display: block;
        padding: 1.2rem 2rem;
        border-bottom: 1px solid rgba(95, 149, 152, 0.1);
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(95, 149, 152, 0.15);
        color: var(--secondary);
    }

    .nav-links .cta-button {
        margin: 1.5rem 0;
        width: 200px;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(95, 149, 152, 0.1);
        border: none;
        border-radius: 0;
        min-width: 100%;
        box-shadow: none;
        margin-top: 0;
        overflow: visible;
        backdrop-filter: none;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu a {
        border-left: none;
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(95, 149, 152, 0.1);
    }

    .dropdown-menu a:hover {
        padding-left: 2rem;
        background: rgba(95, 149, 152, 0.2);
    }

    .hero {
        height: 520px;
    }

    .hero-content {
        padding: 2.5rem 2rem;
        gap: 1.5rem;
        max-width: 90%;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.25;
        margin: 0;
        font-weight: 800;
    }

    .hero-content p {
        font-size: 1.05rem;
        margin: 0;
        line-height: 1.6;
    }

    .hero-buttons {
        gap: 1.2rem;
        margin-top: 1rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .btn-icon {
        margin-right: 0.5rem;
    }

    .hero-dots {
        bottom: 2.5rem;
        gap: 1rem;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        margin-top: 0rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.95rem;
        justify-content: center;
    }

    .hero-dots {
        bottom: 2rem;
        gap: 0.8rem;
    }

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

    .about-container .about-image {
        order: -1;
    }

    .about-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .about-content p {
        font-size: 0.95rem;
    }

    .about-content p:first-of-type {
        font-size: 1rem;
    }

    .about-image {
        height: 350px;
        font-size: 2.5rem;
    }

    .know-more {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }

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

    .applications .section-title::after {
        width: 50px;
        margin: 0.6rem auto 1.5rem;
    }

    .apps-slider {
        min-height: 500px;
        height: 70vh;
    }

    .app-content {
        padding: 3rem 2rem;
    }

    .app-content h3 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .app-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .apps-nav {
        bottom: 2rem;
        gap: 0.8rem;
    }

    .apps-dot {
        width: 12px;
        height: 12px;
    }

    .why-us {
        padding: 3.5rem 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .feature-card {
        padding: 1.8rem;
    }

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

    .feature-card p {
        font-size: 0.88rem;
    }

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

    .values {
        padding: 3.5rem 2rem 4.5rem;
        text-align: center;
    }

    .values .section-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .values .section-title::after {
        margin: 0.8rem auto 2rem;
        width: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .value-card {
        padding: 1.8rem;
        border-radius: 14px;
    }

    .value-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.8rem;
    }

    .value-card p {
        font-size: 0.88rem;
        line-height: 1.7;
    }

    .value-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .value-card:hover {
        transform: translateY(-8px);
    }

    .products {
        padding: 3.5rem 2rem;
    }

    .carousel {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .product-card {
        flex: 0 0 280px;
    }

    .product-image {
        height: 220px;
        font-size: 2.5rem;
    }

    .product-content {
        padding: 1.8rem;
    }

    .product-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .product-content p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .product-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
    }

    .carousel-nav {
        margin-top: 2.5rem;
        gap: 0.7rem;
    }

    .carousel-dots {
        gap: 0.3rem;
    }

    .carousel-dot {
        width: 22px;
        height: 9px;
    }

    footer {
        padding: 3.5rem 1.5rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 0.98rem;
        margin-bottom: 1.1rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.82rem;
        line-height: 1.8;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem;
        gap: 0.5rem;
        flex-direction: row-reverse;
    }

    .logo {
        font-size: 1.1rem;
        order: 1;
    }

    .nav-links {
        order: 2;
        flex-basis: 100%;
        gap: 0.6rem;
        flex-direction: column;
        align-items: center;
        margin-top: 0.5rem;
        font-size: 0.8rem;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        display: none;
        min-width: auto;
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .dropdown:hover .dropdown-menu {
        display: flex;
        flex-direction: column;
    }

    .dropdown-menu a {
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
    }

    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }

    .hero {
        min-height: calc(100vh - 70px);
        height: auto;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-top: 0;
    }

    .hero-content {
        padding: 1.5rem 0.8rem;
        gap: 1rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.3rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
        margin: 0;
        font-weight: 700;
        letter-spacing: -0.3px;
    }

    .hero-content p {
        font-size: 0.85rem;
        margin: 0;
        line-height: 1.4;
        font-weight: 300;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.8rem;
        border-radius: 8px;
        justify-content: center;
        font-weight: 600;
    }

    .btn-icon {
        font-size: 0.95rem;
        margin-right: 0.4rem;
    }

    .hero-dots {
        bottom: 1.5rem;
        gap: 0.6rem;
    }

    .hero-dot {
        width: 9px;
        height: 9px;
        border-width: 1px;
    }

    .hero-dot.active {
        transform: scale(1.25);
    }

    .about-content h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .about-content p:first-of-type {
        font-size: 0.95rem;
    }

    .about-image {
        height: 280px;
        font-size: 2rem;
    }

    .know-more {
        padding: 0.75rem 1.2rem;
        font-size: 0.85rem;
        margin-top: 1.5rem;
        border-left-width: 3px;
    }

    .applications .section-title {
        top: 1.5rem;
        font-size: 1.4rem;
    }

    .apps-slider {
        height: 60vh;
        min-height: 450px;
    }

    .app-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .app-content h3 {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
    }

    .app-content p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .apps-nav {
        bottom: 1.5rem;
        gap: 0.6rem;
    }

    .apps-dot {
        width: 10px;
        height: 10px;
        border-width: 1px;
    }

    .why-us {
        padding: 2.5rem 1rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .feature-icon {
        font-size: 2.2rem;
    }

    .feature-card:hover {
        transform: translateY(-6px);
    }

    .values {
        padding: 2.5rem 1rem 3.5rem;
    }

    .values .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .values .section-title::after {
        width: 50px;
        margin: 0.5rem auto 1.5rem;
    }

    .values-grid {
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.5rem 1.2rem;
        border-radius: 12px;
    }

    .value-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }

    .value-card p {
        font-size: 0.8rem;
        line-height: 1.6;
        opacity: 0.85;
    }

    .value-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .value-card:hover {
        transform: translateY(-6px);
    }

    .products {
        padding: 2.5rem 1rem;
    }

    .carousel {
        gap: 1.2rem;
        padding: 1rem 0;
    }

    .product-card {
        flex: 0 0 85%;
        max-width: 280px;
        margin: 0 auto;
    }

    .product-image {
        height: 180px;
        font-size: 2rem;
    }

    .product-content {
        padding: 1.5rem;
    }

    .product-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .product-content p {
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
    }

    .product-btn {
        padding: 0.65rem 1.2rem;
        font-size: 0.75rem;
    }

    .carousel-nav {
        margin-top: 1.5rem;
        gap: 0.5rem;
    }

    .carousel-dots {
        gap: 0.2rem;
    }

    .carousel-dot {
        width: 18px;
        height: 8px;
    }

    footer {
        padding: 2.5rem 1rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
    }

    .footer-section p, .footer-section a {
        font-size: 0.75rem;
        line-height: 1.7;
    }

    .footer-bottom {
        padding-top: 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .hero {
        height: 320px;
        padding-top: 0.5rem;
    }

    .hero-content {
        padding: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.7rem;
    }
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: auto;
    border-radius: 2px;
}

@media (max-width: 480px) {
    section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .section-title::after {
        width: 50px;
        margin: 0.5rem auto 1.5rem;
    }
}

/* Ultra-small devices (under 375px) */
@media (max-width: 374px) {
    .hero {
        min-height: calc(100vh - 70px);
        height: auto;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        margin-top: 0;
    }

    .hero-content {
        padding: 1rem 0.8rem;
        gap: 0.8rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .hero-buttons {
        gap: 0.7rem;
        margin-top: 0.8rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
    }

    .btn-icon {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }

    .hero-dots {
        bottom: 1rem;
        gap: 0.5rem;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }
}
