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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Arial', sans-serif;
            background-image: url('main-pic.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            line-height: 1.6;
        }

        /* Header Navigation */
        .header {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            padding: 15px 40px;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .navigation {
            max-width: 1200px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            gap: 50px;
            list-style: none;
            justify-content: center;
        }

        .nav-menu li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: opacity 0.3s;
            cursor: pointer;
            font-size: 1.7rem;
        }

        .nav-menu li a:hover {
            opacity: 0.8;
            color: #00eeff;
        }

        .nav-menu li a:active {
            color: #dd00ff;
        }

        /* Section Styles */
        .section {
            min-height: 100vh;
            padding: 120px 40px 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .section-content {
            max-width: 1200px;
            width: 100%;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            border-radius: 20px;
            padding: 60px 50px;
        }

        .section h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 2px;
            text-align: center;
        }

        .section h2 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 30px;
            letter-spacing: 1px;
            text-align: center;
        }

        .section h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .section-description {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        .subtitle {
            font-size: 1.5rem;
            text-align: center;
            margin-bottom: 40px;
            opacity: 0.9;
            font-style: italic;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 10px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            margin: 20px auto;
            text-align: center;
        }

        .btn:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: #00eeff;
        }

        .btn:active {
            color: #dd00ff;
        }

        /* Main Section */
        .main-section {
            display: flex;
            gap: 40px;
            align-items: stretch;
        }

        .main-content {
            flex: 2;
        }

        .company-info {
            flex: 1;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            text-align: center;
            align-items: center;
            color: #00eeff;
        }

        .logo {
            text-align: center;
        }

        /* Service Lists */
        .service-list {
            list-style: none;
            margin: 20px 0;
        }

        .service-list li {
            margin: 15px 0;
            padding-left: 20px;
            position: relative;
        }

        .service-list li::before {
            content: "•";
            color: #00eeff;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
        }

        .service-list li strong {
            color: #00eeff ;
            display: block;
            margin-bottom: 5px;
            font-size: 1.5rem;
        }

        /* Two Column Layout */
        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .column {
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
        }

        /* Contact Section */
        .contact-info {
            text-align: center;
            margin-top: 40px;
        }

        .contact-info h3 {
            color: #00eeff;
            margin-bottom: 20px;
        }

        .contact-details {
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-top: 20px;
        }

        .contact-details p {
            font-size: 1.1rem;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .main-section {
                flex-direction: column;
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 100px 20px 60px;
            }

            .section-content {
                padding: 40px 30px;
            }

            .section h1 {
                font-size: 3rem;
            }

            .section h2 {
                font-size: 2.5rem;
            }

            .nav-menu li a {
            font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .header {
                padding: 10px 20px;
            }

            .nav-menu {
                display: none;
            }

            .section h1 {
                font-size: 2.5rem;
            }

            .section h2 {
                font-size: 2rem;
            }

            .social-icons {
                display: none;
            }
        }

        /* Slogan styling */
        .slogan {
            text-align: center;
            font-size: 1.5rem;
            font-style: italic;
            color: #00eeff;
            margin-top: 30px;
            padding: 20px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .section-slogan {
            text-align: center; 
            font-style: italic; 
            margin-top: 40px;
            color: #dd00ff;
            font-size: 1.5rem;
        }