* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
   
    min-height: 100vh;
    display: flex;
}




/* Main Content Styles */
.main-content {
    flex: 1;
    background: white;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.background-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    border: 4px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.hero-info {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.layout-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #333;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.info-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.info-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.info-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-btn {
    background: #fbbf24;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

.info-illustration {
    flex-shrink: 0;
   
}

.info-illustration img {
    width: 250px;
    height: 300px;
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    position: relative;
}

.services-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    padding: 30px 30px 10px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.service-card p {
    padding: 0 30px 30px;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 80px 40px;
    background: #f8fafc;
    position: relative;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.submit-btn {
    background: #fbbf24;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Social Section */
.social-section {
    padding: 80px 40px;
    position: relative;
}

.social-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.social-icon.linkedin {
    background: #0077b5;
}

.social-icon.github {
    background: #333;
}

.social-icon.email {
    background: #ea4335;
}

.social-link span {
    font-weight: 500;
    text-align: center;
}

/* Footer */
.footer {
    padding: 40px;
    text-align: center;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    position: relative;
}

.footer p {
    color: #666;
    margin-bottom: 20px;
}

.footer-branding {
    color: #666;
    font-size: 14px;
}

.footer-branding strong {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-section {
        padding: 40px 20px;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 36px;
    }
    
    .info-text h3 {
        font-size: 24px;
    }
    
    .services-section h2,
    .contact-section h2,
    .social-section h2 {
        font-size: 28px;
    }
}
#comming-soon-msg{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: auto;
    margin-top: 0px;
    padding-top: 0px;
   
}