  *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
            --primary-color: #363b75;
            --secondary-color: #e9b432;
            --text-color: #1f2937;
            --accent-color: #e9b432;
            --bg-color: #fcfcfc;
            --navbar-height: 80px;
            --font-size-h1: 42px;
            --font-size-h2: 36px;
            --font-size-p: 18px;
            --button-padding: 12px 24px;
            --icon-size: 24px;
            --dropdown-width: 200px;
            --service-box-size: 300px;
            --section-max-width: 1200px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            overflow-x: hidden;
            position: relative;
            margin: 0;
        }



         /* Hero Section */
        .ct-hero-section {
              background: linear-gradient(to right, #5c51f0, #030e72);
            padding: 20px;
            text-align: center;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .ct-hero-section h1 {
            font-size: var(--font-size-h1);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            z-index: 1;
        }

        .ct-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://via.placeholder.com/1500x400?text=Background+Image') no-repeat center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        /* Contact Section */
        .ct-contact-section {
            padding: 80px 20px;
            max-width: var(--section-max-width);
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }

        .ct-contact-content {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            animation: fadeInLeft 1s ease-out;
        }

        .ct-contact-content h2 {
            font-size: var(--font-size-h2);
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .ct-contact-content p {
            font-size: var(--font-size-p);
            color: var(--text-color);
            margin-bottom: 20px;
        }

        .ct-contact-info {
            margin-top: 20px;
        }

        .ct-contact-info p {
            font-size: var(--font-size-p);
            color: var(--text-color);
            margin-bottom: 10px;
        }

        .ct-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .ct-social-icons a {
            color: var(--primary-color);
            font-size: var(--icon-size);
            transition: color 0.3s ease;
        }

        .ct-social-icons a:hover {
            color: var(--secondary-color);
        }

        /* Form Section */
        .ct-form-section {
            flex: 1;
            min-width: 300px;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: fadeInRight 1s ease-out;
        }

        .ct-form-section h2 {
            font-size: var(--font-size-h2);
            color: var(--primary-color);
            margin-bottom: 20px;
            text-align: center;
        }

        .ct-contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .ct-form-field {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .ct-form-field label {
            position: absolute;
            top: 12px;
            left: 10px;
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 500;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .ct-form-field input,
        .ct-form-field textarea {
            padding: 12px 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: var(--font-size-p);
            color: var(--text-color);
            background: #fff;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .ct-form-field input:focus,
        .ct-form-field textarea:focus {
            outline: none;
            border-color: var(--secondary-color);
            box-shadow: 0 0 5px rgba(233, 180, 50, 0.3);
        }

        .ct-form-field input:not(:placeholder-shown) + label,
        .ct-form-field input:focus + label,
        .ct-form-field textarea:not(:placeholder-shown) + label,
        .ct-form-field textarea:focus + label {
            top: -10px;
            left: 8px;
            font-size: 12px;
            background: #f9f9f9;
            padding: 0 5px;
            color: var(--secondary-color);
        }

        .ct-form-field textarea {
            resize: vertical;
            min-height: 100px;
        }

        .ct-form-submit {
            padding: var(--button-padding);
            background: var(--primary-color);
            color: #fff;
            border: none;
            border-radius: 5px;
            font-size: var(--font-size-p);
            cursor: pointer;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .ct-form-submit:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
        }

        .ct-form-submit:disabled {
            background: #ccc;
            cursor: not-allowed;
            transform: none;
        }

        .ct-form-message {
            font-size: var(--font-size-p);
            text-align: center;
            margin-top: 10px;
            display: none;
        }

        .ct-form-message.success {
            color: #2ecc71;
            display: block;
        }

        .ct-form-message.error {
            color: #e74c3c;
            display: block;
        }

        /* Animations */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .ct-contact-section {
                flex-direction: column;
                gap: 20px;
            }

            .ct-hero-section h1 {
                font-size: 36px;
            }

            .ct-contact-content h2,
            .ct-form-section h2 {
                font-size: 28px;
            }

            .ct-contact-content p,
            .ct-contact-info p {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .ct-hero-section h1 {
                font-size: 28px;
            }

            .ct-contact-content h2,
            .ct-form-section h2 {
                font-size: 24px;
            }

            .ct-contact-content p,
            .ct-contact-info p {
                font-size: 14px;
            }
        }