* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #091627 50%, #02111e 100%);
            color: #c7d5e0;
            min-height: 100vh;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Navbar Styles */
        .navbar {
            background: linear-gradient(90deg, #171a21 0%, #1b2838 100%);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #66c0f4;
            border-bottom-left-radius: 50px;
            border-bottom-right-radius: 50px;
        }
        
        .navbar-box {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            max-height: 10vh;
        }
        
        
        .menu nav ul {
            display: flex;
            list-style: none;
            align-items: center;
        }
        
        .menu nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        .menu nav ul li a {
            color: #c7d5e0;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            display: block;
        }
        
        .menu nav ul li a:hover {
            background-color: rgba(102, 192, 244, 0.2);
            color: #66c0f4;
        }
        
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1b2838;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            border-radius: 4px;
            border: 1px solid #66c0f4;
            z-index: 1;
            top: 100%;
            left: 0;
            overflow: hidden;
        }
        
        .dropdown-content li {
            margin: 0;
        }
        
        .dropdown-content li a {
            padding: 12px 16px;
            border-bottom: 1px solid rgba(102, 192, 244, 0.1);
        }
        
        .dropdown-content li:last-child a {
            border-bottom: none;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        /* Content Styles */
        .content {
            padding: 60px 0;
            text-align: center;
        }
        
        .content h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: #66c0f4;
            text-shadow: 0 0 15px rgba(102, 192, 244, 0.4);
        }
        
        .content p {
            font-size: 20px;
            max-width: 800px;
            margin: 0 auto 40px;
            color: #c7d5e0;
        }
        
        .features {
            display: flex;
            margin-left: 23%;
            /* justify-content: center; */
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 50px;
            max-width: 80%;
        }
        
        .feature-card {
            background: rgba(27, 40, 56, 0.7);
            border-radius: 8px;
            padding: 30px;
            width: 300px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(102, 192, 244, 0.3);
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            border-color: #66c0f4;
        }
        
        .feature-icon {
            font-size: 50px;
            margin-bottom: 20px;
            color: #66c0f4;
        }
        
        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: #66c0f4;
        }
        
        /* Footer Styles */
        .footer {
            background-color: #171a21;
            padding: 30px 0;
            margin-top: 5%;
            border-top: 1px solid #66c0f4;
        }

        .footer-content {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap; 
        }

        .footer-logo {
            width: 8vh;
            height: 8vh;
            object-fit: contain;
        }
        
        .footer p {
            color: #8f98a0;
            font-size: 14px;
            margin: 0;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .navbar {

            }

            .navbar-box {
                flex-direction: column;
            }
        }