/* Modern Professional Header Styles */

/* Header Main Container */
.modern-professional-header {
    position: relative;
    z-index: 999;
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    border-bottom: 1px solid #e8e8e8;
}

/* Top Info Bar */
.top-info-bar {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 12px 0;
    position: relative;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: rgba(255,255,255,0.9);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #3498db;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateY(-2px);
}

.contact-item:hover i {
    color: #5dade2;
    transform: scale(1.1);
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 1.2rem;
}

.social-link:hover {
    background: #3498db;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

/* Main Header */
.main-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.main-header:hover {
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    padding: 0 20px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
}

.logo {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(52,152,219,0.3));
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 8px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover {
    color: #3498db;
    background: rgba(52,152,219,0.05);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-item.active .nav-link {
    color: #3498db;
    background: rgba(255, 255, 255, 0.219);
}

.nav-item.active .nav-link::before {
    width: 70%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.search-btn,
.contact-btn {
    width: 42px;
    height: 42px;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    background: white;
    color: #2c3e50;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.3rem;
}

.search-btn:hover,
.contact-btn:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(52,152,219,0.3);
}

.mobile-menu-btn {
    background: transparent;
    border: 2px solid #e8e8e8;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: none;
}

.mobile-menu-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-btn span:nth-child(1) {
    top: 12px;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 12px;
}

.mobile-menu-btn:hover {
    border-color: #3498db;
    background: rgba(52,152,219,0.1);
    transform: scale(1.05);
}

.mobile-menu-btn:hover span {
    background: #3498db;
}

.mobile-menu-btn:hover span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg) translateY(6px);
}

.mobile-menu-btn:hover span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn:hover span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg) translateY(-6px);
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    .nav-menu {
        gap: 5px;
    }
    
    .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .main-navigation {
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .top-info-bar {
        padding: 10px 0;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .contact-info {
        gap: 15px;
    }
    
    .contact-item {
        font-size: 1.2rem;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .header-content {
        height: 70px;
        padding: 0 15px;
    }
    
    .main-navigation {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #2c3e50, #34495e);
        box-shadow: 2px 0 20px rgba(0,0,0,0.3);
        transition: left 0.3s ease;
        z-index: 9999;
        display: block;
        padding: 0;
    }
    
    .main-navigation.mobile-open {
        left: 0;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 0;
    }
    
    .main-navigation .nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-navigation .nav-link {
        display: block;
        padding: 15px 20px;
        color: white;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .main-navigation .nav-link:hover,
    .main-navigation .nav-item.active .nav-link {
        background: rgba(52,152,219,0.2);
        color: #3498db;
        padding-left: 30px;
    }
    
    .main-navigation .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border-radius: 0;
        margin-top: 0;
        padding-left: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    
    .main-navigation .nav-item.sub-menu-open .dropdown-menu {
        max-height: 500px;
        padding: 10px 0;
    }
    
    .main-navigation .dropdown-item {
        color: rgba(255,255,255,0.8);
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .main-navigation .dropdown-item:hover {
        background: rgba(52,152,219,0.3);
        color: white;
        padding-left: 30px;
    }
    
    .main-navigation .nav-item.sub-menu-open > .nav-link {
        background: rgba(52,152,219,0.2);
        color: #3498db;
    }
    
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateX(-50%) rotate(45deg) translateY(6px);
        background: #3498db;
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateX(-50%) rotate(-45deg) translateY(-6px);
        background: #3498db;
    }
    
    body.mobile-menu-open {
        overflow: hidden;
    }
    
    .search-btn,
    .contact-btn {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .logo img {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .header-actions {
        gap: 8px;
    }
    
    .search-btn,
    .contact-btn {
        width: 35px;
        height: 35px;
        font-size: 1.4rem;
    }
    
    .mobile-menu-btn {
        width: 35px;
        height: 35px;
    }
    
    .mobile-menu-btn span {
        width: 16px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .contact-item {
        justify-content: left;
    }
}

/* Services Section Styles */
.services-professional-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.03), rgba(26,188,156,0.01));
}

.services-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.services-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.services-subtitle-modern {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}

.services-content-modern {
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.service-item-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(26,188,156,0.05));
    transition: left 0.6s ease;
}

.service-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(52,152,219,0.15);
}

.service-item-modern:hover::before {
    left: 0;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(52,152,219,0.2);
    transition: transform 0.3s ease;
}

.service-icon-modern i {
    font-size: 1.8rem;
    color: white;
}

.service-item-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-content-modern {
    flex: 1;
}

.service-heading-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-text-modern {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #6c757d;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.service-features-modern li:last-child {
    border-bottom: none;
}

.service-features-modern li:hover {
    color: #3498db;
    transform: translateX(5px);
}

.service-features-modern i {
    color: #3498db;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.services-cta-modern {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52,152,219,0.1), rgba(26,188,156,0.05));
    transition: left 0.6s ease;
}

.services-cta-modern:hover::before {
    left: 0;
}

.cta-content-modern {
    position: relative;
    z-index: 1;
}

.cta-heading-modern {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-text-modern {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-actions-modern {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-modern,
.cta-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary-modern {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    box-shadow: 0 8px 25px rgba(52,152,219,0.3);
}

.cta-secondary-modern {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-primary-modern:hover,
.cta-secondary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(52,152,219,0.4);
}

.cta-primary-modern i,
.cta-secondary-modern i {
    font-size: 1.1rem;
}

/* Responsive Design for Services Section */
@media (max-width: 991px) {
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-item-modern {
        padding: 30px 25px;
        gap: 25px;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-modern i {
        font-size: 1.5rem;
    }
    
    .service-heading-modern {
        font-size: 1.4rem;
    }
    
    .service-text-modern {
        font-size: 0.95rem;
    }
    
    .cta-actions-modern {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .services-professional-section {
        padding: 60px 0;
    }
    
    .services-title-modern {
        font-size: 2.4rem;
    }
    
    .services-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .service-item-modern {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }
    
    .service-icon-modern {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    
    .service-icon-modern i {
        font-size: 1.3rem;
    }
    
    .service-heading-modern {
        font-size: 1.3rem;
    }
    
    .service-text-modern {
        font-size: 0.9rem;
    }
    
    .cta-heading-modern {
        font-size: 1.8rem;
    }
    
    .cta-text-modern {
        font-size: 1rem;
    }
    
    .cta-primary-modern,
    .cta-secondary-modern {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-professional-section {
        padding: 50px 0;
    }
    
    .services-title-modern {
        font-size: 2.2rem;
    }
    
    .services-subtitle-modern {
        font-size: 1rem;
    }
    
    .service-item-modern {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .service-icon-modern {
        width: 45px;
        height: 45px;
    }
    
    .service-icon-modern i {
        font-size: 1.2rem;
    }
    
    .service-heading-modern {
        font-size: 1.2rem;
    }
    
    .service-text-modern {
        font-size: 0.85rem;
    }
    
    .service-features-modern li {
        font-size: 0.85rem;
    }
    
    .cta-heading-modern {
        font-size: 1.6rem;
    }
    
    .cta-text-modern {
        font-size: 0.95rem;
    }
    
    .cta-primary-modern,
    .cta-secondary-modern {
        padding: 12px 25px;
        font-size: 0.85rem;
    }
}

/* About Section Styles */
.about-professional-section {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.03), rgba(26,188,156,0.01));
}

.about-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.about-title-modern {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.title-highlight {
    color: #3498db;
    font-weight: 800;
}

.about-subtitle-modern {
    font-size: 1.4rem;
    color: #6c757d;
    margin-bottom: 0;
    font-weight: 500;
}

.about-content-modern {
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: center;
}

.about-image-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.main-about-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.about-image-modern {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52,152,219,0.9), rgba(26,188,156,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.overlay-content p {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
}

.stats-container-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item-modern {
    background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(52,152,219,0.2);
    transition: transform 0.3s ease;
}

.stat-item-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52,152,219,0.3);
}

.stat-number-modern {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-description-modern {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 0px;
}

.content-title-modern {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-paragraph-modern {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 25px;
    text-align: left;
}

.features-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.feature-item-modern:hover {
    background: #e8f4f8;
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(52,152,219,0.1);
}

.feature-icon-modern {
    color: #3498db;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.founder-section-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.founder-header-modern {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-info-modern {
    display: flex;
    align-items: center;
    gap: 15px;
}

.founder-name-modern {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.founder-title-modern {
    font-size: 1rem;
    color: #6c757d;
    margin: 5px 0 0;
}

.founder-signature-modern {
    height: 80px;
    width: auto;
    opacity: 0.9;
}

.founder-contact-modern {
    display: flex;
    align-items: center;
}

.contact-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(52,152,219,0.3);
}

.contact-btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52,152,219,0.4);
}

.contact-btn-modern i {
    transition: transform 0.3s ease;
}

.contact-btn-modern:hover i {
    transform: translateX(5px);
}

/* Responsive Design for About Section */
@media (max-width: 991px) {
    .about-title-modern {
        font-size: 2.4rem;
    }
    
    .about-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .about-image-modern {
        height: 350px;
    }
    
    .stats-container-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .content-title-modern {
        font-size: 2rem;
    }
    
    .about-paragraph-modern {
        font-size: 1rem;
    }
    
    .features-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founder-section-modern {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .stat-label-modern {
        font-size: 1rem;
    }
    
    .founder-name-modern {
        font-size: 1.4rem;
    }
    
    .founder-signature-modern {
        height: 60px;
    }
    
    .contact-btn-modern {
        padding: 15px 30px;
    }
}

@media (max-width: 767px) {
    .about-professional-section {
        padding: 60px 0;
    }
    
    .about-title-modern {
        font-size: 2.2rem;
    }
    
    .about-subtitle-modern {
        font-size: 1rem;
    }
    
    .about-image-modern {
        height: 300px;
    }
    
    .stats-container-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-title-modern {
        font-size: 1.8rem;
    }
    
    .about-paragraph-modern {
        font-size: 0.95rem;
    }
    
    .features-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founder-section-modern {
        gap: 20px;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .stat-label-modern {
        font-size: 0.9rem;
    }
    
    .founder-name-modern {
        font-size: 1.3rem;
    }
    
    .founder-signature-modern {
        height: 50px;
    }
    
    .contact-btn-modern {
        padding: 12px 25px;
    }
}

@media (max-width: 576px) {
    .about-title-modern {
        font-size: 2rem;
    }
    
    .about-subtitle-modern {
        font-size: 0.9rem;
    }
    
    .about-image-modern {
        height: 250px;
    }
    
    .stats-container-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-title-modern {
        font-size: 1.5rem;
    }
    
    .about-paragraph-modern {
        font-size: 0.9rem;
    }
    
    .features-modern {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .founder-section-modern {
        gap: 15px;
    }
    
    .stat-number-modern {
        font-size: 1.8rem;
    }
    
    .stat-label-modern {
        font-size: 0.85rem;
    }
    
    .founder-name-modern {
        font-size: 1.2rem;
    }
    
    .founder-signature-modern {
        height: 40px;
    }
    
    .contact-btn-modern {
        padding: 10px 20px;
    }
}

/* Smooth Transitions */
.modern-professional-header * {
    transition: all 0.3s ease;
}