        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            overflow-x: hidden;
            color: white;
            background: #ffffff;
        }

        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        .content {
            position: relative;
            z-index: 1;
            padding: 20px;
        }

        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 5%;
            position: relative;
        }



        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: #000000;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
            z-index: 10;
        }

        nav ul li a:hover {
            color: #3a7bd5;
        }

       .logo {
              position:relative;
              top:-20px;
       }

        .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: left;
            text-align: left;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero h4{
            font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            font-size: 3rem;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin-bottom: 30px;
            color: #000000;
        }

        .btn {
            display: inline-block;
            padding: 12px 35px;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5);
            color: white;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: transform 0.3s, box-shadow 0.3s;
            border: none;
            cursor: pointer;
            width: 183px;
        
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
        }

        section {
            padding: 100px 10%;
            min-height: 100vh;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 50px;
            text-align: center;
            background: linear-gradient(90deg, #00d2ff, #3a7bd5);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 30px;
            transition: transform 0.3s, background 0.3s;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.815);
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #3a7bd5;
        }

        .service-card h3 {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #000000;
            line-height: 1.6;
        }

        .portfolio-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .portfolio-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            height: 250px;
        }

        .portfolio-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 10, 26, 0.9), transparent);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 20px;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .portfolio-item:hover .portfolio-img {
            transform: scale(1.1);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgb(0, 0, 0);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #000000;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            color: rgb(43, 41, 41);
            font-size: 1rem;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        footer {
            text-align: center;
            padding: 30px;
            color: #aaa;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            nav ul {
                display: none;
            }
            
            section {
                padding: 80px 20px;
            }
        }

        .service-packs {
            text-align: center;
            padding: 60px 20px;
            background: transparent;
            color: #000;
          }
          
          .service-packs h2 {
            font-size: 2.5rem;
            margin-bottom: 40px;
          }
          
          .packs-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: auto;
          }
          
          .pack-card {
            background: #ffffff;
            border: 2px solid #000;
            border-radius: 12px;
            padding: 25px 20px;
            text-align: left;
            transition: 0.3s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
          }
          
          .pack-card:hover {
            background: #3a7bd5;
            color: #fff;
            transform: translateY(-5px);
          }
          
          .pack-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
          }
          
          .pack-card .price {
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
          }
          
          .pack-card ul {
            padding-left: 20px;
            margin-bottom: 20px;
          }
          
          .pack-card ul li {
            margin-bottom: 8px;
          }
          
          .pack-card .btn {
            display: inline-block;
            padding: 10px 20px;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            transition: 0.3s;
            text-align: center;
          }
          
          .pack-card:hover .btn {
            background: #fff;
            color: #000;
          }
          
          /* Responsive adjustments */
          @media (max-width: 768px) {
            .service-packs h2 {
              font-size: 2rem;
            }
            .pack-card h3 {
              font-size: 1.3rem;
            }
          }
          .contact-btn {
            background:linear-gradient(90deg, #00d2ff, #3a7bd5);;       /* Black button */
            color: #fff;            /* White text */
            padding: 5px 18px;
            border-radius: 16px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: 0.3s;
          }
          
          .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
          }


