        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #016B61;
            --secondary: #70B2B2;
            --accent: #9ECFD4;
            --light: #E5E9C5;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .bg-animation::before,
        .bg-animation::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: float 20s infinite ease-in-out;
        }

        .bg-animation::before {
            width: 500px;
            height: 500px;
            background: var(--primary);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .bg-animation::after {
            width: 400px;
            height: 400px;
            background: var(--secondary);
            bottom: -100px;
            right: -100px;
            animation-delay: 5s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
            }

            25% {
                transform: translate(50px, 50px) scale(1.1);
            }

            50% {
                transform: translate(30px, -30px) scale(0.9);
            }

            75% {
                transform: translate(-50px, 20px) scale(1.05);
            }
        }

        /* Navigation */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            animation: slideDown 0.8s ease;
        }

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

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

        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        .nav-buttons {
            display: flex;
            gap: 1rem;
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2rem 5%;
            gap: 3rem;
        }

        .hero-content {
            flex: 1;
            animation: fadeInLeft 1s ease;
        }

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

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-content h1 {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content .gradient-text {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: var(--primary);
            opacity: 0.8;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* Buttons */
        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 10px 30px rgba(1, 107, 97, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(1, 107, 97, 0.4);
        }

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        /* Hero Visual */
        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1s ease;
        }

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

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .card-stack {
            position: relative;
            width: 400px;
            height: 500px;
        }

        .floating-card {
            position: absolute;
            width: 300px;
            height: 180px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            animation: floatCard 4s ease-in-out infinite;
        }

        .floating-card:nth-child(1) {
            top: 0;
            left: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            z-index: 3;
            animation-delay: 0s;
        }

        .floating-card:nth-child(2) {
            top: 80px;
            left: 60px;
            background: white;
            z-index: 2;
            animation-delay: 1s;
        }

        .floating-card:nth-child(3) {
            top: 160px;
            left: 30px;
            background: var(--light);
            z-index: 1;
            animation-delay: 2s;
        }

        @keyframes floatCard {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(2deg);
            }
        }

        .card-name {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .card-title {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-bottom: 1rem;
        }

        .card-divider {
            height: 2px;
            background: currentColor;
            opacity: 0.3;
            margin: 1rem 0;
        }

        /* Features Section */
        .features {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #ffffff70, #ffffff20);
            backdrop-filter: blur(15px);
            position: relative;
        }

        .features::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: var(--secondary);
            opacity: 0.15;
            border-radius: 50%;
            filter: blur(100px);
        }

        .features h2 {
            text-align: center;
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 3.5rem;
            font-weight: 800;
            letter-spacing: 1px;
            animation: fadeInUp 1s ease;
        }

        /* Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Feature Card */
        .feature-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 2.5rem;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.4);
            transition: 0.4s ease;
            animation: fadeInUp 1s ease both;
        }

        /* Gradient border effect */
        .feature-card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 25px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            opacity: 0;
            transition: 0.4s ease;
        }

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

        /* Floating Effect */
        .feature-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        /* Icon */
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #fff;
            margin-bottom: 1.2rem;
            animation: floatIcon 3s ease-in-out infinite;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        }

        /* Floating animation */
        @keyframes floatIcon {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

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

        .feature-card p {
            color: #333;
            opacity: 0.8;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 5rem 5%;
            text-align: center;
        }

        .cta-box {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            padding: 4rem;
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(1, 107, 97, 0.3);
            animation: scaleIn 1s ease;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .cta-box h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            color: white;
            opacity: 0.9;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

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

            .card-stack {
                width: 300px;
                height: 400px;
            }

            .floating-card {
                width: 250px;
                height: 150px;
            }

            .cta-buttons {
                justify-content: center;
            }

            .features h2 {
                font-size: 2rem;
            }
        }

/* Footer Base */
.footer {
    background: var(--primary);
    color: white;
    padding: 4rem 5% 2rem;
    font-family: "Tajawal", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Soft Glow Background Elements */
.footer::before,
.footer::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: var(--secondary);
    opacity: 0.15;
    filter: blur(130px);
    border-radius: 50%;
}

.footer::before {
    top: -30px;
    left: -40px;
}

.footer::after {
    bottom: -30px;
    right: -40px;
}

/* Grid Layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

/* About Section */
.footer-about h3 {
    color: var(--light);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.footer-about p {
    line-height: 1.7;
    opacity: 0.9;
}

/* Links */
.footer-links h4,
.footer-social h4 {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

.footer-links ul li a {
    color: var(--light);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-right: 6px;
}

/* Social Icons */
.social-icons a {
    display: inline-flex;
    width: 42px;
    height: 42px;
    background: var(--secondary);
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 0.5rem;
    transition: 0.3s ease;
    color: #fff;
}

.social-icons a:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Bottom Bar */
.footer-bottom {
    margin-top: 3rem;
    text-align: center;
    opacity: 0.8;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
}