.elementor-565 .elementor-element.elementor-element-7789b7b{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9397564 *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: white;
    overflow-x: hidden;
}

/* Hero Header Section */
.hero-header {
    background: white;
    color: #2d3748;
    text-align: center;
    padding: 60px 20px 40px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    text-shadow: none;
    background: linear-gradient(135deg, #000000, #2d3748);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #4a5568;
}

/* Contact Section */
.contact-section {
    padding: 40px 20px 80px;
    background-color: white;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    align-items: start;
}

/* Form Column (Left - 65%) */
.form-column {
    width: 100%;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.form-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #000000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e0;
    background: #fff;
}

.form-group textarea {
    min-height: 120px;
    line-height: 1.6;
}

/* File Upload Styles */
.file-input {
    display: none;
}

.file-upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.file-upload-area:hover {
    border-color: #cbd5e0;
    background: #f1f5f9;
}

.file-upload-area.dragover {
    border-color: #000000;
    background: #f0f8ff;
}

.file-upload-area i {
    font-size: 2rem;
    color: #4a5568;
    margin-bottom: 10px;
    display: block;
}

.file-upload-area p {
    margin: 0;
    font-weight: 500;
    color: #2d3748;
    font-size: 1rem;
}

.file-note {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    margin-top: 8px;
}

.file-preview {
    margin-top: 15px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.2s ease;
}

.file-preview-item:hover {
    background: #f1f5f9;
    border-color: #cbd5e0;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.file-icon {
    color: #4a5568;
    font-size: 1.1rem;
}

.file-name {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 500;
}

.file-size {
    font-size: 0.8rem;
    color: #718096;
    margin-left: 8px;
}

.file-remove-btn {
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(229, 62, 62, 0.3);
}

.file-remove-btn:hover {
    background: #c53030;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(197, 48, 48, 0.4);
}

.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #0600DE, #0500B8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(6, 0, 222, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.submit-btn:hover i {
    transform: translateX(5px);
}

/* Info Column (Right - 35%) */
.info-column {
    width: 100%;
}

.info-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.info-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 30px;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3182ce, #2b77cb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.3);
}

.contact-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-details p {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-note {
    color: #718096;
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 60% 40%;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-header {
        padding: 60px 20px 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-card,
    .info-card {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .form-title,
    .info-title {
        font-size: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 18px;
    }
    
    .submit-btn {
        padding: 16px 25px;
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .info-card {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .form-card,
    .info-card {
        padding: 25px 20px;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 16px;
    }
    
    .submit-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .contact-item {
        padding: 15px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card,
.info-card {
    animation: fadeInUp 0.6s ease-out;
}

.info-card {
    animation-delay: 0.2s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #000000, #2d3748);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2d3748, #4a5568);
}

/* Focus States for Accessibility */
.submit-btn:focus,
.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #0600DE;
    outline-offset: 2px;
}/* End custom CSS */