* {
            box-sizing: border-box;
            font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            margin: 0;
            
            background: linear-gradient(135deg, #667eea, #764ba2) !important;
            display: flex;
            align-items: center;
            justify-content: center;
           
        }
        #navbarText .navbar-right .navbar-nav .nav-item .theme-switch{
            display:none !important;
        }
        
        .contact-wrapper {
            background: #fff;
            max-width: 950px;
            width: 100%;
            border-radius: 18px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            overflow: hidden;
        }

        /* LEFT SIDE - CONTACT INFO */
        .contact-info {
            background: linear-gradient(160deg, #667eea, #764ba2);
            color: #fff;
            padding: 40px;
        }

        .contact-info h2 {
            margin-top: 0;
            font-size: 26px;
            margin-bottom: 15px;
        }

        .contact-info p {
            font-size: 15px;
            line-height: 1.6;
            opacity: 0.95;
            margin-bottom: 25px;
        }

        .contact-info ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .contact-info li {
            margin-bottom: 15px;
            font-size: 15px;
            color: #e3ff00;
        }

        .contact-info strong {
            display: inline-block;
            width: 120px;
        }

        /* RIGHT SIDE - FORM */
        .contact-form {
            padding: 40px;
        }

        .contact-form h2 {
            margin-top: 0;
            margin-bottom: 25px;
            color: #333;
        }

        label {
            display: block;
            margin-bottom: 18px;
            font-size: 14px;
            font-weight: 600;
            color: #555;
        }

        .form-control {
            width: 100%;
            padding: 12px 14px;
            margin-top: 6px;
            border-radius: 8px;
            border: 1px solid #ccc;
            font-size: 14px;
            transition: 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
        }

        textarea.form-control {
            resize: vertical;
        }

        input[type="submit"] {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 14px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            width: 100%;
        }

        input[type="submit"]:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.25);
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info {
                text-align: center;
            }

            .contact-info strong {
                width: auto;
            }
        }