/* about.css - Same CSS as before but in separate file */
:root {
    --primary-color: #00b4db;
    --secondary-color: #0083b0;
    --text-color: #333;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

.company-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 40px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.company-header h1 {
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.company-header .lead {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.company-card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
}

.company-card:hover {
    transform: translateY(-5px);
}

.card-header {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-bottom: none;
}

.company-detail {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.company-detail:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.detail-value {
    color: #555;
}

.back-to-home {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-to-home:hover {
    color: var(--secondary-color);
    transform: translateX(-5px);
}

.founder-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    margin: 40px 0;
}

.founder-img-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .company-header h1 {
        font-size: 2rem;
    }
    
    .company-header {
        padding: 60px 0 30px;
    }
}

/* 
////////////////////////////////////// */
/* Add this to your CSS file or <style> tag */
.contact-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form Styling */
#contact-form .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fff;
}

#contact-form .form-control:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background-color: #f8fafc;
}

#contact-form .form-control.is-invalid {
    border-color: #ef4444;
    background-color: #fef2f2;
}

#contact-form .form-control.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Submit Button */
#submit-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

#submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

#submit-btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Character Counter */
#char-count {
    font-weight: 600;
    color: #3b82f6;
}

/* Success/Error Messages */
#success-message, #error-message {
    border-radius: 10px;
    border: none;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form Validation Animation */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section .card-body {
        padding: 1.5rem !important;
    }
    
    #submit-btn {
        padding: 12px !important;
    }
}
/* ------------image style ---------*/
/* Professional Profile Image Styling */
.profile-img-small-container {
    display: inline-block;
    position: relative;
    margin: 0 auto 2rem;
}

.profile-img-wrapper-small {
    width: 150px; /* Perfect size for professional look */
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid white;
    position: relative;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.12),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(45deg, #4f6df5, #764ba2, #00b4db) border-box;
    border: 4px solid transparent;
    transition: all 0.4s ease;
}

/* Professional hover effect */
.profile-img-wrapper-small:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.18),
        0 0 0 6px rgba(79, 109, 245, 0.08);
}

/* Perfect image styling */
.profile-img-small {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on face */
    filter: brightness(1.05) contrast(1.05);
    transition: all 0.5s ease;
}

/* Subtle image enhancement on hover */
.profile-img-wrapper-small:hover .profile-img-small {
    transform: scale(1.05);
    filter: brightness(1.1) contrast(1.1);
}

/* Add verification badge (optional) */
.profile-img-wrapper-small::after {
    
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: #10b981;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    z-index: 2;
    opacity: 0.9;
}

/* Responsive Design - Adjusts for all screens */
@media (min-width: 1400px) {
    .profile-img-wrapper-small {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 1200px) {
    .profile-img-wrapper-small {
        width: 140px;
        height: 140px;
        border-width: 4px;
    }
}

@media (max-width: 992px) {
    .profile-img-wrapper-small {
        width: 130px;
        height: 130px;
        border-width: 3px;
    }
}

@media (max-width: 768px) {
    .profile-img-wrapper-small {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .profile-img-wrapper-small {
        width: 110px;
        height: 110px;
        border-width: 3px;
    }
}

@media (max-width: 400px) {
    .profile-img-wrapper-small {
        width: 100px;
        height: 100px;
        border-width: 2px;
    }
}

/* Tablet portrait mode */
@media (max-width: 768px) and (orientation: portrait) {
    .profile-img-wrapper-small {
        width: 125px;
        height: 125px;
    }
}

/* Mobile landscape mode */
@media (max-width: 768px) and (orientation: landscape) {
    .profile-img-wrapper-small {
        width: 110px;
        height: 110px;
    }
}

/* High DPI screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .profile-img-wrapper-small {
        border-width: 3px;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .profile-img-wrapper-small {
        border-color: #2d3748;
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.25),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

/* Print styles */
@media print {
    .profile-img-wrapper-small {
        border: 2px solid #ccc;
        box-shadow: none;
    }
}