body {
            background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
            color: white;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            min-height: 100vh;
            text-align: center;
            position: relative;
        }
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: transparent;
            z-index: 1000;
            box-sizing: border-box;
        }
        .logo {
            background:#00e6ff;
            color:#0a192f;
            padding:10px 30px;
            border-radius:10px;
            font-size:28px;
            font-weight:bold;
            display:inline-block;
            position: relative;
            z-index: 1001;
        }
        .logo span {
            color:#fff;
        }
        .menu-icon {
            color: white;
            font-size: 1.8em;
            cursor: pointer;
            padding: 10px 16px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.08);
            line-height: 1;
            transition: all 0.3s ease;
            margin-right: 10px;
            position: relative;
            z-index: 1001;
        }
        .menu-icon:hover {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
        }
        .sidebar {
            position: fixed;
            top: 0;
            right: -250px;
            width: 250px;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            padding-top: 80px;
            transition: right 0.4s ease;
            z-index: 999;
        }
        .sidebar.open {
            right: 0;
        }
        .sidebar ul {
            list-style: none;
            padding: 0;
        }
        .sidebar li {
            padding: 18px 20px;
            font-size: 1.2em;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .sidebar a {
            color: white;
            text-decoration: none;
            display: block;
            transition: color 0.3s;
        }
        .sidebar a:hover {
            color: #00e6ff;
        }
        .whatsapp-item {
            background:#25D366;
            border-radius:50px;
            padding:15px !important;
            margin: 10px 20px;
        }
        .whatsapp-item i {
            font-size:1.5em;
            margin-right:10px;
        }
        main {
            padding-top: 80px;
        }
        .hero {
            padding: 100px 20px 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        h1 {
            font-size: clamp(2.8em, 8vw, 4.5em);
            margin: 20px 0;
        }
        .description {
            font-size: clamp(1.1em, 4vw, 1.6em);
            max-width: 900px;
            margin: 30px auto;
            line-height: 1.6;
            opacity: 0.9;
        }
        .buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin: 50px 0;
        }
        .btn-custom {
            background: #00e6ff;
            color: #000;
            padding: 15px 50px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3em; /* Slightly smaller to fit better */
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap; /* Prevent text wrapping */
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 320px; /* Limit max width to prevent overflow */
            text-decoration: none !important; /* Remove any underline */
            display: inline-block;
            line-height: 1.4;
        }
        .btn-custom:hover {
            background: #00bfff;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 230, 255, 0.3);
        }
        .whatsapp-btn {
            background: #25D366;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.3em;
            text-decoration: none;
            display: inline-block;
            margin-top: 20px;
        }
        .whatsapp-btn:hover {
            background: #128C7E;
        }
        .hero-image {
            width: 90%;
            max-width: 800px;
            border-radius: 20px;
            margin: 60px auto;
            box-shadow: 0 0 40px rgba(0, 230, 255, 0.3);
            display: block;
        }
        .section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .section h2 {
            font-size: 3em;
            margin-bottom: 50px;
            color: #00e6ff;
        }
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .service-card {
            background-color: rgba(255,255,255,0.05);
            padding: 40px 30px;
            border-radius: 16px;
            transition: transform 0.3s;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-card i {
            font-size: 4em;
            color: #00e6ff;
            margin-bottom: 20px;
        }
        .service-card h4 {
            font-size: 1.8em;
            margin: 20px 0;
        }
        .testimonials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        .testimonial {
            background-color: rgba(255,255,255,0.05);
            padding: 30px;
            border-radius: 16px;
            font-style: italic;
        }
        .testimonial .stars {
            color: #00e6ff;
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        .testimonial .author {
            margin-top: 20px;
            font-weight: bold;
            font-style: normal;
        }
        .stats {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
            margin: 60px 0;
            font-size: 1.5em;
        }
        .stat-item strong {
            display: block;
            font-size: 2.5em;
            color: #00e6ff;
        }
        footer {
            background-color: #000;
            padding: 50px 20px;
            font-size: 1.1em;
            text-align: center;
        }
        .footer-links a {
            color: #00e6ff;
            text-decoration: none;
            margin: 0 15px;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        /* Floating Icons */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .floating-icons i {
            position: absolute;
            font-size: 60px;
            opacity: 0.35;
            color: #00e6ff;
            animation: float 7s ease-in-out infinite;
            filter: drop-shadow(0 0 12px rgba(0,230,255,.7));
        }
        .floating-icons i:nth-child(1){top:18%;left:22%;}
        .floating-icons i:nth-child(2){top:45%;left:18%;animation-delay:1s;}
        .floating-icons i:nth-child(3){top:70%;left:25%;animation-delay:2s;}
        .floating-icons i:nth-child(4){top:25%;right:22%;animation-delay:1.5s;}
        .floating-icons i:nth-child(5){top:60%;right:20%;animation-delay:2.5s;}
        @keyframes float{
            0%{transform:translateY(0)}
            50%{transform:translateY(-25px)}
            100%{transform:translateY(0)}
        }