
     .contact-wrapper {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f0f4ff 0%, #e8ecf9 100%);
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        .contact-label {
            text-align: center;
            color: #2563eb;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 16px;
            text-transform: capitalize;
        }

        .contact-main-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .contact-subtitle {
            text-align: center;
            font-size: 16px;
            color: #64748b;
            margin-bottom: 60px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-layout {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start;
        }

        /* Form Section */
        .inquiry-form-box {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .form-header {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 28px;
        }

        .input-group {
            margin-bottom: 24px;
        }

        .input-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #334155;
            margin-bottom: 8px;
        }

        .required-star {
            color: #ef4444;
        }

        .text-input {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #334155;
            background: #f8fafc;
            transition: all 0.3s ease;
        }

        .text-input:focus {
            outline: none;
            border-color: #2563eb;
            background: white;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .text-input::placeholder {
            color: #94a3b8;
        }

        .dual-input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .dropdown-select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #334155;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dropdown-select:focus {
            outline: none;
            border-color: #2563eb;
            background: white;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .message-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 10px;
            font-size: 14px;
            color: #334155;
            background: #f8fafc;
            resize: vertical;
            min-height: 100px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .message-textarea:focus {
            outline: none;
            border-color: #2563eb;
            background: white;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }

        .submit-btn {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Contact Info Section */
        .contact-info-panel {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .info-block {
            background: white;
            border-radius: 16px;
            padding: 24px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .info-block:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 22px;
        }

        .info-block:nth-child(1) .icon-circle {
            background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
        }

        .info-block:nth-child(2) .icon-circle {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
        }

        .info-block:nth-child(3) .icon-circle {
            background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
        }

        .info-block:nth-child(4) .icon-circle {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
        }

        .info-content h3 {
            font-size: 16px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 6px;
        }

        .info-content p {
            font-size: 14px;
            color: #64748b;
            line-height: 1.6;
            margin: 0;
        }

        /* Guarantee Box */
        .guarantee-banner {
            background: linear-gradient(135deg, #003F5E 0%, #20B265 100%);
            border-radius: 20px;
            padding: 32px;
            color: white;
            margin-top: 20px;
        }

        .guarantee-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .guarantee-description {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.95;
            margin-bottom: 24px;
        }

        .benefits-list {
            list-style: none;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .benefit-item:before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .contact-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .contact-main-title {
                font-size: 28px;
            }

            .inquiry-form-box {
                padding: 32px 24px;
            }
        }

        @media (max-width: 640px) {
            .contact-wrapper {
                padding: 50px 15px;
            }

            .contact-main-title {
                font-size: 24px;
            }

            .contact-subtitle {
                font-size: 14px;
            }

            .inquiry-form-box {
                padding: 24px 20px;
            }

            .dual-input-row {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .info-block {
                padding: 20px;
            }

            .guarantee-banner {
                padding: 24px 20px;
            }
        }
        
        
        
        /* from here school erp section start*/
                .erp-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px;
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            border-radius: 20px;
        }

        .erp-section h2 {
            font-size: 2.8em;
            text-align: center;
            margin-bottom: 20px;
            color: #003F5E;
        }

        .erp-subtitle {
            text-align: center;
            font-size: 1.2em;
            margin-bottom: 60px;
            color: #003F5E;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .erp-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .erp-card {
            background: #003F5E;
            padding: 35px;
            border-radius: 15px;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 63, 94, 0.2);
        }

        .erp-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 63, 94, 0.3);
        }

        .erp-card:nth-child(even) {
            background: #008651;
        }

        .erp-icon {
            font-size: 3em;
            margin-bottom: 20px;
            display: block;
        }

        .erp-card h3 {
            font-size: 1.5em;
            margin-bottom: 15px;
            color: white;
        }

        .erp-card p {
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.95);
        }

        .erp-benefits {
            background: white;
            padding: 40px;
            border-radius: 15px;
            margin-top: 40px;
            box-shadow: 0 5px 20px rgba(0, 63, 94, 0.1);
        }

        .erp-benefits h3 {
            font-size: 2em;
            text-align: center;
            margin-bottom: 30px;
            color: #003F5E;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .benefit-item {
            display: flex;
            align-items: start;
            gap: 15px;
        }

        .benefit-icon {
            font-size: 1.5em;
            min-width: 30px;
            color: #008651;
        }

        .benefit-text {
            line-height: 1.6;
            color: #003F5E;
        }

        .erp-cta {
            text-align: center;
            margin-top: 50px;
        }

        .cta-button {
            display: inline-block;
            background: #008651;
            color: white;
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2em;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(0, 134, 81, 0.3);
        }

        .cta-button:hover {
            background: #006d42;
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(0, 134, 81, 0.4);
        }

        @media (max-width: 768px) {
            .erp-section {
                padding: 50px 20px;
            }

            .erp-section h2 {
                font-size: 2em;
            }

            .erp-features {
                grid-template-columns: 1fr;
            }
        }
