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

        :root {
            --primary-blue: #058afb;
            --primary-green: #88fbd0;
            --secondary-dark: #0d213f;
            --text-gray: #64748b;
            --text-dark: #1e293b;
            --bg-white: rgba(255, 255, 255, 0.9);
            --border-color: rgba(148, 163, 184, 0.2);
            --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
            --color-dark: #0d213f;
             --gradient-primary: linear-gradient(135deg, #058afb 0%, #88fbd0 100%);
            --gradient-header: linear-gradient(135deg, #058afb 0%, #0ea5e9 50%, #88fbd0 100%);
            --gradient-background: linear-gradient(to br, #eff6ff, #ffffff, #ecfdf5);

        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
            background: var(--gradient-background);
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .app-container {
            min-height: 100vh;
            position: relative;
            background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(236, 253, 245, 0.5) 100%);
            box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
        }

        /* Animated background */
        .bg-animation {
            position: fixed;
            inset: 0;
            max-width: 448px;
            margin: 0 auto;
            pointer-events: none;
            z-index: 0;
        }

        .bg-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.2;
            animation: pulse 4s ease-in-out infinite;
        }

        .bg-blob-1 {
            top: 0;
            left: -50px;
            width: 300px;
            height: 300px;
            background: #88fbd0;
        }

        .bg-blob-2 {
            bottom: 0;
            right: -50px;
            width: 300px;
            height: 300px;
            background: #058afb;
            animation-delay: 2s;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.1); opacity: 0.15; }
        }

        /* Glass card effect */
        .glass-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px) saturate(180%);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            box-shadow: var(--shadow);
        }

        /* Header */
        .header {
            position: relative;
            background: var(--gradient-header);
            padding: 24px;
            z-index: 10;
        }

        .header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(13, 33, 63, 0.2);
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
        }

        .header-content {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 1;
        }

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

        .logo {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            font-size: 20px;
        }

        .app-title {
            color: white;
            font-size: 20px;
            font-weight: bold;
            letter-spacing: -0.5px;
        }

        .cart-button {
            position: relative;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 12px;
            width: 44px;
            height: 44px;
            cursor: pointer;
            backdrop-filter: blur(10px);
            transition: all 0.2s;
        }

        .cart-button:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .cart-badge {
            position: absolute;
            top: -4px;
            right: -4px;
            background: #ef4444;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: bold;
            animation: bounce 0.5s ease;
        }

        /* Location bar */
        .location-bar {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(16px);
            padding: 12px 24px;
            border-bottom: 1px solid var(--border-color);
            cursor: pointer;
            transition: background 0.2s;
        }

        .location-bar:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .location-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .location-icon {
            background: linear-gradient(135deg, #058afb, #88fbd0);
            border-radius: 12px;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .location-text {
            flex: 1;
        }

        .location-name {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 15px;
        }

        .location-address {
            font-size: 13px;
            color: var(--text-gray);
        }

        .location-status {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
        }

        /* Main content */
        .main-content {
            position: relative;
            z-index: 1;
            padding-bottom: 80px;
            overflow-y: auto;
            max-height: calc(100vh - 200px);
        }

        .screen {
            display: none;
            animation: fadeIn 0.4s ease;
        }

        .screen.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        /* Box */
        .box-container {
            padding: 24px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Slider */
        .slider-container {
            padding: 24px;
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            
        }

        .slider {
            position: relative;
            overflow: hidden;
            border-radius: 16px;
            height: 300px;
        }

        .slider-track {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slide {
            min-width: 100%;
            position: relative;
            height: 100%;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .slide-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.9);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: bold;
            margin-bottom: 8px;
            width: fit-content;
        }

        .slide-title {
            color: white;
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 8px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .slide-description {
            color: white;
            font-size: 13px;
            margin-bottom: 16px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .slide-button {
            background: white;
            color: var(--text-dark);
            border: none;
            padding: 10px 20px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            width: fit-content;
            transition: transform 0.2s;
        }

        .slide-button:hover {
            transform: scale(1.05);
        }

        .slider-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 2;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .slider-dot.active {
            width: 24px;
            background: white;
            border-radius: 4px;
        }

        /* Quick actions */
        .quick-actions {
            padding: 0 24px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            max-width:1400px; 
            margin:0 auto;
        }

        .action-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: var(--shadow);
        }

        .action-card:hover {
            transform: scale(1.02);
        }

        .action-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #058afb, #88fbd0);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 4px 12px rgba(5, 138, 251, 0.3);
        }

        .action-icon.orange {
            background: linear-gradient(135deg, #f97316, #ec4899);
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }

        .action-title {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
            font-size: 15px;
        }

        .action-description {
            font-size: 13px;
            color: var(--text-gray);
        }

        /* Featured boats */
        .featured-section {
            padding: 0 24px 24px;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .section-subtitle {
            font-size: 13px;
            color: var(--text-gray);
        }

        .see-all-button {
            background: transparent;
            border: none;
            color: #058afb;
            font-weight: 600;
            cursor: pointer;
            font-size: 14px;
        }

        .boat-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            display: flex;
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: var(--shadow);
        }

        .boat-card:hover {
            transform: scale(1.02);
        }

        .boat-image {
            width: 100px;
            height: 100px;
            object-fit: cover;
            position: relative;
        }

        .boat-badge {
            position: absolute;
            top: 8px;
            left: 8px;
            background: #eab308;
            color: white;
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 11px;
            font-weight: bold;
        }

        .boat-info {
            flex: 1;
            padding: 16px;
        }

        .boat-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }

        .boat-name {
            font-weight: 600;
            font-size: 15px;
        }

        .boat-price {
            text-align: right;
        }

        .price-amount {
            color: #058afb;
            font-weight: bold;
            font-size: 16px;
        }

        .price-unit {
            font-size: 11px;
            color: var(--text-gray);
        }

        .boat-meta {
            display: flex;
            gap: 16px;
            margin-bottom: 12px;
            font-size: 13px;
            color: var(--text-gray);
        }

        .boat-features {
            display: flex;
            gap: 6px;
        }

        .feature-badge {
            background: rgba(5, 138, 251, 0.1);
            border: 1px solid rgba(5, 138, 251, 0.2);
            padding: 4px 10px;
            border-radius: 8px;
            font-size: 11px;
            color: #058afb;
        }

        /* Top Navigation */
        .top-nav {
            background: rgba(255, 255, 255, 0.9);
            padding: 12px 24px;
            border-bottom: 1px solid rgba(209, 213, 219, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .nav-items {
            display: flex;
            align-items: center;
            justify-content: space-around;
            max-width: 448px;
        }

        .nav-items a{
            text-decoration: none;
        }
        .m-10{
          margin-right: 10px;
        }
        
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 12px 16px;
            border-radius: 16px;
            cursor: pointer;
            transition: all 0.2s;
            background: transparent;
            border: none;
            color: var(--text-gray);
        }

        .nav-item.active {
            background: linear-gradient(135deg, #058afb, #88fbd0);
            color: white;
            transform: scale(1.05);
        }

        .nav-icon {
            font-size: 20px;
        }

        .nav-label {
            font-size: 11px;
            font-weight: 600;
        }

        /* Auth Screen */
        .auth-screen {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .auth-header {
            background: linear-gradient(135deg, #058afb 0%, #06b6d4 50%, #88fbd0 100%);
            padding: 64px 24px 48px;
            text-align: center;
            position: relative;
        }

        .auth-header::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(13, 33, 63, 0.2);
        }

        .auth-logo {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            backdrop-filter: blur(10px);
            font-size: 40px;
            position: relative;
            z-index: 1;
        }

        .auth-title {
            color: white;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .auth-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 18px;
            position: relative;
            z-index: 1;
        }

        .auth-content {
            flex: 1;
            padding: 32px 24px;
        }

        .auth-card {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            padding: 32px;
            box-shadow: var(--shadow);
            margin-bottom: 32px;
        }

        .auth-form-title {
            text-align: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .auth-form-subtitle {
            text-align: center;
            color: var(--text-gray);
            margin-bottom: 32px;
            font-size: 15px;
        }

        .social-buttons {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .social-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 14px;
            border: 1px solid rgba(209, 213, 219, 0.5);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.9);
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
        }

        .social-button:hover {
            background: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .divider {
            display: flex;
            align-items: center;
            text-align: center;
            margin: 24px 0;
        }

        .divider::before,
        .divider::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid rgba(209, 213, 219, 0.3);
        }

        .divider span {
            padding: 0 16px;
            color: var(--text-gray);
            font-size: 13px;
            text-transform: uppercase;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 14px;
        }

        .form-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(209, 213, 219, 0.5);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            transition: all 0.2s;
        }

        .form-input:focus {
            outline: none;
            border-color: #058afb;
            box-shadow: 0 0 0 3px rgba(5, 138, 251, 0.1);
        }

        

        .submit-button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #058afb, #88fbd0);
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(5, 138, 251, 0.4);
        }

        .auth-toggle {
            text-align: center;
            margin-top: 20px;
            font-size: 14px;
        }

        .auth-toggle button {
            background: none;
            border: none;
            color: #058afb;
            font-weight: 600;
            cursor: pointer;
            text-decoration: underline;
        }

        /* Info cards */
        .info-cards {
            padding: 0 24px 24px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 16px;
            display: flex;
            gap: 16px;
            box-shadow: var(--shadow);
        }

        .info-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #058afb, #06b6d4);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .info-icon.green {
            background: linear-gradient(135deg, #10b981, #14b8a6);
        }

        .info-text h4 {
            font-weight: 600;
            margin-bottom: 4px;
            font-size: 15px;
        }

        .info-text p {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 4px;
        }

        .info-text small {
            font-size: 12px;
            color: var(--text-gray);
        }

        /* Cart Screen */
        .cart-items {
            padding: 24px;
        }

        .cart-item {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 16px;
            display: flex;
            gap: 16px;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 12px;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .cart-item-price {
            color: #058afb;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .quantity-button {
            width: 28px;
            height: 28px;
            border-radius: 8px;
            border: 1px solid rgba(209, 213, 219, 0.5);
            background: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }

        .quantity-button:hover {
            background: #f8fafc;
        }

        .empty-state {
            text-align: center;
            padding: 60px 24px;
        }

        .empty-icon {
            font-size: 64px;
            margin-bottom: 16px;
            opacity: 0.3;
        }

        .empty-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 8px;
        }

        .empty-description {
            color: var(--text-gray);
            margin-bottom: 24px;
        }

        .custom-button {
            background: linear-gradient(135deg, #058afb, #88fbd0);
            color: white;
            border: none;
            padding: 12px 32px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .custom-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 16px rgba(5, 138, 251, 0.4);
        }

        .cart-summary {
            position: sticky;
            bottom: 80px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-top: 1px solid rgba(209, 213, 219, 0.3);
            padding: 20px 24px;
            margin: 0 24px;
            border-radius: 16px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 15px;
        }

        .summary-total {
            font-weight: bold;
            font-size: 18px;
            color: #058afb;
        }

        /* Profile Screen */
        .profile-header {
            padding: 24px;
            text-align: center;
        }

        .profile-avatar {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 16px;
            background: linear-gradient(135deg, #058afb, #88fbd0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: white;
            font-weight: bold;
        }

        .profile-name {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 4px;
        }

        .profile-email {
            color: var(--text-gray);
            font-size: 15px;
        }

        .profile-menu {
            padding: 0 24px 24px;
        }

        .menu-item {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            padding: 16px 20px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            transition: all 0.2s;
        }

        .menu-item:hover {
            transform: translateX(4px);
        }

        .menu-item-left {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .menu-item-icon {
            font-size: 20px;
        }

        .logout-button {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
            border: none;
            padding: 14px;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            margin-top: 24px;
        }

        /* Responsive */
        @media (max-width: 448px) {
            .app-container {
                max-width: 100%;
            }
        }

        /* Loading */
        .loading {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            flex-direction: column;
            gap: 16px;
        }

        .spinner {
            width: 50px;
            height: 50px;
            border: 4px solid rgba(5, 138, 251, 0.2);
            border-top-color: #058afb;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Hide elements */
        .hidden {
            display: none !important;
        }

        /* Menu Screen */
        .menu-categories {
            padding: 24px;
        }

        .category-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .category-tab {
            background: rgba(255, 255, 255, 0.75);
            border: 1px solid rgba(209, 213, 219, 0.3);
            padding: 10px 20px;
            border-radius: 12px;
            white-space: nowrap;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.2s;
        }

        .category-tab.active {
            background: linear-gradient(135deg, #058afb, #88fbd0);
            color: white;
            border-color: transparent;
        }

        .menu-items {
            display: grid;
            gap: 16px;
        }

        .menu-item-card {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(209, 213, 219, 0.3);
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.2s;
        }

        .menu-item-card:hover {
            transform: scale(1.02);
        }

        .menu-item-image {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .menu-item-info {
            padding: 16px;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 8px;
        }

        .menu-item-name {
            font-weight: 600;
            font-size: 15px;
        }

        .menu-item-price {
            color: #058afb;
            font-weight: bold;
            font-size: 16px;
        }

        .menu-item-description {
            font-size: 13px;
            color: var(--text-gray);
            margin-bottom: 12px;
        }

        .add-to-cart-button {
            width: 100%;
            background: linear-gradient(135deg, #058afb, #88fbd0);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .add-to-cart-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(5, 138, 251, 0.3);
        }

         /* Footer */
        .footer {
            background: var(--color-dark);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            margin-top:0rem;
        }

        .footer-logo {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            backdrop-filter: blur(10px);
            font-size: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .footer-text {
            opacity: 0.85;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2.5rem;
            flex-wrap: wrap;
            margin-bottom: 2.5rem;
        }

        .footer-link {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.2s ease;
            font-size: 1rem;
            font-weight: 500;
        }

        .footer-link:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            background: var(--gradient-primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(5, 138, 251, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        hr {
            border: none;
            height: 2px;
            background-color: rgba(209, 213, 219, 0.5);
            margin: 1.5rem 0;
        }


        
