@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    padding-top: 8rem;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Root Variables */
:root {
    --primary-color: #94356f;
    --secondary-color: #28db2a;
    --primary-light: rgba(148, 53, 111, 0.1);
    --secondary-light: rgba(40, 219, 42, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Navigation Styles */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    position: relative;
}

.nav-logo {
    display: block;
    transition: transform 0.3s ease;
}

    .nav-logo:hover {
        transform: scale(1.05);
    }

    .nav-logo img {
        height: 60px;
        width: auto;
    }

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

    .nav-links a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.nav-cta {
    background: linear-gradient(135deg, var(--primary-color), #7a2b5a);
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(148, 53, 111, 0.3);
    transition: all 0.3s ease !important;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(148, 53, 111, 0.4);
    }

    .nav-cta::after {
        display: none;
    }

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

    .hamburger-menu span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        background: #333;
        border-radius: 3px;
        transition: all 0.3s ease;
    }

        .hamburger-menu span:nth-child(1) {
            top: 0;
        }

        .hamburger-menu span:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
        }

        .hamburger-menu span:nth-child(3) {
            bottom: 0;
        }

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

        .nav-links.active {
            right: 0;
        }

        .nav-links a {
            font-size: 1.1rem;
            width: 100%;
            text-align: left;
            padding: 10px 0;
        }

    .nav-cta {
        margin-top: 20px;
        text-align: center;
    }

    /* Hamburger Animation */
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 90vh;
    gap: 4rem;
    margin-top: -2rem;
    position: relative;
}

    .hero::before {
        display: none;
    }

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding: 2rem;
}

.welcome-text {
    margin-top: -10rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-color), #7a2b5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

    .hero-content h1 .lime-text {
        color: var(--secondary-color);
        -webkit-text-fill-color: var(--secondary-color);
        background: none;
    }

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        transition: transform 0.3s ease;
    }

        .hero-image img:hover {
            transform: translateY(-10px);
        }

.hero .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #24c025);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(40, 219, 42, 0.3);
}

    .hero .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(40, 219, 42, 0.4);
    }

@media (max-width: 1024px) {
    .hero {
        padding: 6rem 2rem 3rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3.8rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem 2rem;
        margin-top: -2rem;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

        .hero-content h1 {
            font-size: 3rem;
        }

    .welcome-text {
        font-size: 1rem;
        margin-top: -5rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-image {
        max-width: 100%;
        margin-top: 2rem;
    }

    /* Adjust container padding for mobile */
    .container {
        padding: 0 1rem;
    }

    /* How It Works Section Mobile Adjustments */
    .how-it-works {
        padding: 3rem 0;
    }

        .how-it-works .section-title {
            margin-bottom: 1rem;
        }

    /* Hero Section Mobile Adjustments */
    .hero {
        padding: 3rem 1.5rem 2rem;
        margin-top: 0;
    }

    /* Add padding to body for fixed nav */
    body {
        padding-top: 6rem;
    }

    .hero-content .welcome-text {
        margin-top: -5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 1rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .welcome-text {
        font-size: 0.9rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Features Section */
.features {
    background-color: var(--primary-color);
    padding: 4rem 0;
    width: 100%;
}

    .features .container {
        width: 100%;
    }

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-light);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 400px;
    width: 100%;
}

    .feature-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        background: linear-gradient(145deg, #ffffff, var(--primary-light));
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(145deg, #ffffff, var(--primary-light));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    color: var(--primary-color);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Responsive Styles for Features Section */
@media (max-width: 1024px) {
    .features {
        padding: 3.5rem 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .feature-item {
        padding: 2rem;
        min-height: 350px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .feature-item h3 {
        font-size: 1.3rem;
    }

    .feature-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .features {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .feature-item {
        padding: 1.8rem;
        min-height: 300px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .feature-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .feature-item p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .features {
        padding: 2.5rem 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .features-grid {
        gap: 1.2rem;
        padding: 0 1rem;
    }

    .feature-item {
        padding: 1.5rem;
        min-height: 280px;
        margin: 0;
        width: 100%;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }

    .feature-item p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .how-it-works .section-title {
        color: var(--primary-color);
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

        .how-it-works .section-title .lime-text {
            color: var(--secondary-color);
        }

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.how-it-works-text {
    flex: 1;
    max-width: 50%;
}

.text-content {
    padding: 0;
}

.how-it-works-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

    .how-it-works-text p:last-of-type {
        margin-bottom: 2rem;
    }

.how-it-works-image {
    flex: 1.2;
    max-width: 60%;
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 1rem;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    animation: float 3s ease-in-out infinite;
    z-index: 2;
}

    .floating-card .icon {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .floating-card .text {
        font-weight: 600;
        color: var(--secondary-color);
        font-size: 0.9rem;
        white-space: nowrap;
    }

.card-1 {
    top: 15%;
    left: -15%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -15%;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Styles for How It Works Section */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 4rem 0;
    }

    .how-it-works-content {
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .how-it-works .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .how-it-works-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
    }

        .floating-card .icon {
            font-size: 1.3rem;
        }

        .floating-card .text {
            font-size: 0.85rem;
        }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 3rem 0;
    }

    .how-it-works-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .how-it-works-text {
        max-width: 100%;
        order: 2;
    }

    .how-it-works-image {
        max-width: 100%;
        order: 1;
    }

    .how-it-works .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .how-it-works-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }

    .floating-card {
        padding: 0.8rem 1.2rem;
        gap: 0.6rem;
    }

        .floating-card .icon {
            font-size: 1.2rem;
        }

        .floating-card .text {
            font-size: 0.8rem;
        }

    .card-1 {
        top: 10%;
        left: -10%;
    }

    .card-2 {
        top: 45%;
        right: -10%;
    }

    .card-3 {
        bottom: 10%;
        left: 20%;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 2.5rem 0;
    }

        .how-it-works .section-title {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
        }

    .how-it-works-content {
        gap: 1.5rem;
    }

    .how-it-works-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .floating-card {
        padding: 0.6rem 1rem;
        gap: 0.5rem;
    }

        .floating-card .icon {
            font-size: 1.1rem;
        }

        .floating-card .text {
            font-size: 0.75rem;
        }

    .card-1 {
        top: 5%;
        left: -5%;
    }

    .card-2 {
        top: 40%;
        right: -5%;
    }

    .card-3 {
        bottom: 5%;
        left: 15%;
    }

    .image-wrapper {
        padding: 0.5rem;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color) 0%, transparent 100%);
        opacity: 0.1;
        pointer-events: none;
    }

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.8rem;
}

    .footer-section h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--secondary-color);
    }

.footer-section p {
    color: #999;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-section ul li {
        margin-bottom: 1rem;
    }

    .footer-section ul a {
        color: #999;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1rem;
        display: inline-block;
        position: relative;
    }

        .footer-section ul a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--secondary-color);
            transition: width 0.3s ease;
        }

        .footer-section ul a:hover {
            color: var(--secondary-color);
        }

            .footer-section ul a:hover::after {
                width: 100%;
            }

    .footer-section ul li:not(a) {
        color: #999;
        font-size: 1rem;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .footer-bottom p {
        color: #999;
        font-size: 0.95rem;
        margin: 0;
    }

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-section {
        text-align: center;
    }

        .footer-section h3::after {
            left: 50%;
            transform: translateX(-50%);
        }
}

/* Solutions Section - to work on */
.solutions {
    background-color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

    .solutions .section-title {
        color: #333;
        margin-top: 3rem;
        margin-bottom: 3.5rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

        .solutions .section-title .highlight {
            color: var(--primary-color);
        }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 2.5rem;
    max-width: none; /* Remove max-width to allow fitting on one line */
    margin: 0 auto;
    overflow-x: auto; /* Add horizontal scroll if needed */
    padding-bottom: 1rem; /* Add padding for scrollbar */
    justify-content: flex-start; /* Align items to the start if they don't fill the width */
}

.solution-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px; /* Softer corners */
    padding: 3rem 2rem; /* More padding */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

    .solution-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        background: #ffffff;
        border-color: var(--primary-color);
    }

.card-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.solution-card:hover .card-icon {
    color: var(--secondary-color);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

.card-text {
    margin-top: 1.5rem;
    opacity: 1;
    transform: none;
    transition: color 0.3s ease;
}

.solution-card:hover .card-text h3 {
    color: var(--secondary-color);
}

.card-text h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.card-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles for Solutions Section */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        max-width: none;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .solutions {
        padding: 0;
        padding-bottom: 2rem;
    }

        .solutions .section-title {
            font-size: 2rem;
            margin-top: -0.5rem;
            margin-bottom: 3rem;
        }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: center;
    }

    .solution-card {
        min-width: auto;
        padding: 2rem;
    }

    .card-icon {
        font-size: 4rem;
        margin-bottom: 1rem;
    }

    .card-text h3 {
        font-size: 1.3rem;
    }

    .card-text p {
        font-size: 0.95rem;
    }

    .solution-card:hover .card-content {
        transform: translateY(-20px);
    }

    .card-text {
        bottom: 1.5rem;
        padding: 0 1rem;
    }
}

/* Impakt Panel Section */
.impakt-panel {
    background-color: #f8f9fa;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    width: 100%;
}

    .impakt-panel .section-title {
        position: relative;
        margin-bottom: 0;
        color: #333;
        font-size: 2.8rem;
        font-weight: 800;
        text-align: center;
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding: 0 2rem;
    }

        .impakt-panel .section-title .lime-text {
            color: var(--secondary-color);
        }

        .impakt-panel .section-title .primary-text {
            color: var(--primary-color);
        }

.impakt-panel-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.panel-overlay {
    padding: 2rem 0;
    order: 1;
}

.main-panel-area {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    width: 100%;
    order: 2;
}

.panel-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    background: none;
    overflow: hidden;
    transition: transform 0.4s ease;
}

    .panel-image:hover {
        transform: translateY(-5px);
    }

    .panel-image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
        padding: 2rem;
    }

.panel-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.panel-overlay p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.panel-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .feature:hover {
        transform: translateY(-3px);
    }

.feature-icon {
    font-size: 1.5rem;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.feature-text {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

@media (max-width: 992px) {
    .impakt-panel-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-panel-area {
        order: 1;
    }

    .panel-overlay {
        order: 2;
    }
}

@media (max-width: 768px) {
    .impakt-panel {
        padding: 3rem 0 1.5rem;
    }

        .impakt-panel .section-title {
            font-size: 2.2rem;
            margin-bottom: 0;
            padding: 0 1rem;
        }

    .impakt-panel-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .panel-image {
        padding-top: 66.67%;
    }

        .panel-image img {
            padding: 1.5rem;
        }

    .panel-overlay {
        padding: 1.5rem 0;
    }

        .panel-overlay h3 {
            font-size: 1.5rem;
        }

        .panel-overlay p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

    .panel-features {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .impakt-panel {
        padding: 2rem 0 1rem;
    }

        .impakt-panel .section-title {
            font-size: 1.8rem;
        }

    .panel-image {
        padding-top: 75%;
    }

        .panel-image img {
            padding: 1rem;
        }

    .panel-overlay {
        padding: 1rem 0;
    }

        .panel-overlay h3 {
            font-size: 1.3rem;
            margin-bottom: 0.8rem;
        }

        .panel-overlay p {
            font-size: 0.95rem;
            margin-bottom: 1.2rem;
        }

    .panel-features {
        gap: 0.8rem;
        margin-top: 1.2rem;
        padding-top: 1.2rem;
    }

    .feature {
        padding: 0.8rem;
    }

    .feature-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .feature-text {
        font-size: 0.9rem;
    }
}

/* Contact Section Styles */
.contact-section {
    background-color: var(--primary-color);
    padding: 6rem 0;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    padding-right: 2rem;
}

    .contact-info h2 {
        font-size: 2.5rem;
        color: #ffffff;
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

    .contact-info p {
        font-size: 1.1rem;
        color: #ffffff;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-3px);
    }

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-item:hover .contact-icon {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-text h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.contact-text p {
    font-size: 1rem;
    color: #ffffff;
    margin: 0;
    opacity: 0.9;
}

    .contact-text p a {
        color: #ffffff;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .contact-text p a:hover {
            opacity: 1;
            text-decoration: underline;
        }

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.5rem;
    }

    .contact-info {
        padding-right: 0;
    }

        .contact-info h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-info p {
            font-size: 1rem;
            margin-bottom: 2rem;
        }

    .contact-details {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-item {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .contact-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.2rem;
    }

    .contact-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 2.5rem 0;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .contact-info h2 {
        font-size: 1.8rem;
    }

    .contact-details {
        gap: 0.8rem;
    }

    .contact-item {
        padding: 0.8rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .contact-text h3 {
        font-size: 1rem;
    }

    .contact-text p {
        font-size: 0.9rem;
    }
}

/* ICT Solutions Section */
.ict-solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

    .ict-solutions::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at top right, var(--primary-light) 0%, transparent 70%);
        opacity: 0.5;
        pointer-events: none;
    }

.ict-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

    .ict-header .section-title {
        color: #333;
        margin-bottom: 1rem;
    }

        .ict-header .section-title .lime-text {
            color: var(--secondary-color);
        }

        .ict-header .section-title .primary-text {
            color: var(--primary-color);
        }

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.ict-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.ict-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .ict-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

.ict-card-inner {
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ict-icon-wrapper {
    margin-bottom: 2rem;
    position: relative;
}

.ict-icon {
    font-size: 2.5rem;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ict-card:hover .ict-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.ict-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.ict-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

@media (max-width: 1200px) {
    .ict-grid {
        gap: 2rem;
    }

    .ict-card-inner {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .ict-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .ict-solutions {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .ict-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .ict-header {
        margin-bottom: 3rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .ict-card-inner {
        padding: 1.8rem;
    }

    .ict-features {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        font-size: 1rem;
        color: #333;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #333;
}

    .form-control:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 4px var(--primary-light);
    }

    .form-control::placeholder {
        color: #999;
    }

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color), #7a2b5a);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(148, 53, 111, 0.3);
    }

    .submit-btn:active {
        transform: translateY(0);
    }

/* Contact Form Responsive Styles */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-control {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.2rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-control {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .submit-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
    }
}

.screen-mirror {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .screen-mirror:hover {
        transform: translateY(-3px);
        background: var(--primary-light);
    }

.mirror-icon {
    font-size: 1.5rem;
    background: #f8f9fa;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.screen-mirror p {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    .screen-mirror {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .mirror-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
    }

    .screen-mirror p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .screen-mirror {
        padding: 0.7rem;
        gap: 0.7rem;
    }

    .mirror-icon {
        font-size: 1.1rem;
        width: 32px;
        height: 32px;
    }

    .screen-mirror p {
        font-size: 0.85rem;
    }
}

/* Add smooth transitions */
.feature-item,
.floating-card,
.solution-card,
.feature,
.contact-form,
.contact-item {
    transition: all 0.3s ease;
}

    .feature-item:hover,
    .floating-card:hover,
    .solution-card:hover,
    .feature:hover,
    .contact-form:hover,
    .contact-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

/* Add background pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, var(--primary-light) 0%, transparent 50%), radial-gradient(circle at 80% 80%, var(--secondary-light) 0%, transparent 50%);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
}

.text-danger{
    color: red;
}