 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        /* Glassmorphism */
        .glass-header {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        /* Buttons */
        .btn-primary-gradient {
            background: linear-gradient(135deg, #059669 0%, #10b981 100%);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .btn-primary-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.4);
            filter: brightness(1.1);
        }

        /* Phone Mockup */
        .phone-frame {
            border: 12px solid #1c1c1e;
            border-radius: 56px;
            box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.3), 0 30px 60px -30px rgba(0, 0, 0, 0.4);
            background: #000;
            width: 320px;
            height: 680px;
            overflow: hidden;
            position: relative;
            z-index: 2;
        }

        .dynamic-island {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 30px;
            background: #000;
            border-radius: 20px;
            z-index: 50;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .floating-slow {
            animation: float 8s ease-in-out infinite;
        }

        .perspective {
            perspective: 1000px;
        }

        /* Carousel Styles */
        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .carousel-card {
            min-width: 100%;
            padding: 0 15px;
            transition: all 0.5s ease;
        }

        @media (min-width: 768px) {
            .carousel-card { min-width: 33.333%; }
        }

        .feature-card {
            background: #fff;
            padding: 3rem 2rem;
            border-radius: 3rem;
            border: 1px solid #f1f5f9;
            height: 100%;
            transition: all 0.4s ease;
        }

        .icon-box {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 2rem;
        }

        /* Navigation Buttons - FIXED OVERLAP ISSUE */
        .nav-btn {
            width: 60px;
            height: 60px;
            border-radius: 9999px; /* Force perfect circle */
            border: 2px solid #e2e8f0; /* Use a more solid color for border */
            color: #94a3b8;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            outline: none;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05); /* Soft shadow instead of heavy border */
        }

        .nav-btn:hover {
            border-color: #10b981;
            color: #10b981;
            background: #f0fdf4;
            transform: scale(1.05);
            box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1);
        }

        .nav-btn:active {
            transform: scale(0.95);
        }

        /* Forms */
        .form-input {
            width: 100%;
            padding: 1.25rem 1.5rem;
            border-radius: 1.25rem;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .form-input:focus {
            background: #fff;
            outline: none;
            border-color: #10b981;
            box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
        }

        .islamic-pattern {
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L65 35L100 50L65 65L50 100L35 65L0 50L35 35Z' fill='%2310b981'/%3E%3C/svg%3E");
            background-size: 80px;
        }