.jost-font {
    font-family: 'Jost', sans-serif;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Jost';
    }
    
    
    :root {
        --primary: #0398ed;
        --secondary: #181718;
        --accent: #FFFFFF;
        --light: #f8fafc;
        --dark: #181718;
        --success: #10b981;
    }
    
    body {
        background: linear-gradient(0deg, var(--primary), var(--secondary));
        color: var(--accent);
        line-height: 1.6;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header Styles */
    header {
        background-color: rgba(024, 023, 024, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 100;
    }
    
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .navbar .logo img {
    height: 80px; /* Adjust this value as needed */
    width: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below image */
    }
    
    .logo {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .logo i {
        color: var(--accent);
    }
    
    .two-column-container {
        display: flex;
        width: 100%;
        margin: 0 auto;
        gap: 40px;
        padding: 150px 50px 100px 50px;
        align-items: center; 
        min-height: 100vh; /* Full viewport height */
    }
    
    .hero, 
    .contact-section {
        flex: 1;
        padding: 20px;
        min-width: 0; /* Fixes flexbox overflow issues */
    }
    /* Hero Section */
    .hero {
        display: flex;
        align-items: center;
    }
    
    .hero-content {
        flex: 1;
        padding-right: 40px;
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    
    .hero-image img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
        line-height: 1.2;
        color: var(--accent);
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 30px;
        color: var(--accent);
        max-width: 600px;
    }
    
    .cta-button {
        display: inline-block;
        background: var(--primary);
        color: var(--accent);
        padding: 14px 30px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        border: 2px solid var(--primary);
        box-shadow: 0 4px 6px rgba(37, 99, 235, 0.3);
    }
    
    .cta-button:hover {
        background: var(--secondary);
        color: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
    }
    

    
    /* Contact Form Section */
    .contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically centers content */
    height: 100%; /* Takes full height of container */
    background: var(--accent);
    border-radius: 20px;
    padding: 30px 0; /* Increased vertical padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

    .section-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
        color: var(--secondary);
        margin-bottom: 15px;
    }
    
    .section-header p {
        color: var(--dark);
        font-size: 1.1rem;
    }
    
    .contact-form {
        max-width: 700px;
        margin: 0 auto;
        padding: 24px;
        background: linear-gradient(180deg, var(--primary), var(--secondary));
        border-radius: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--accent);
    }
    
    .form-control {
        width: 100%;
        padding: 15px;
        border: 2px solid #e2e8f0;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--accent);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }
    
    textarea.form-control {
        min-height: 50px;
        resize: vertical;
    }
    
    .submit-btn {
        background: var(--primary);
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        width: 100%;
        display: block;
    }
    
    .submit-btn:hover {
        background: var(--secondary);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(003, 152, 237, 0.4);
    }
    
    /* Footer */
    footer {
        background: var(--dark);
        color: white;
        padding: 40px 0 20px;
        margin-top: auto;
    }
    
    .footer-content {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 40px;
        margin-bottom: 30px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 250px;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: var(--accent);
    }
    
    .contact-info p {
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--accent);
        transform: translateY(-3px);
    }
    
    .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: #94a3b8;
        font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
        min-height: auto;
    }
    .contact-section {
        height: auto;
        padding: 30px 20px;
    }
}

    @media (max-width: 900px) {
        .hero {
            flex-direction: column;
            text-align: center;
            padding-top: 120px;
        }
        
        .hero-content {
            padding-right: 0;
            margin-bottom: 50px;
        }
        
        .hero h1 {
            font-size: 2.8rem;
        }
        
        .features {
            justify-content: center;
        }
        
        .hero p {
            margin: 0 auto 30px;
        }
    }
    
    @media (max-width: 600px) {
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .contact-form {
            padding: 30px 20px;
        }
        
        .features {
            flex-direction: column;
        }
    }
    
    /* Form Validation */
    .form-control.error {
        border-color: #ef4444;
    }
    
    .error-message {
        color: #ef4444;
        font-size: 0.9rem;
        margin-top: 5px;
        display: none;
    }
    
    /* Success Message */
    #success-message {
        background: var(--success);
        color: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        margin-top: 20px;
        display: none;
    }