/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #64748b;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2563eb;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #f97316;
    color: white;
    border-color: #f97316;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #2563eb;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: #2563eb;
    border-color: white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    transform: translateY(20px);
    animation: float 6s ease-in-out infinite;
}

.hero-card i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #f97316;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(20px); }
    50% { transform: translateY(0px); }
}

/* Welcome Section */
.welcome {
    padding: 6rem 0;
    background: #f8fafc;
}

.welcome-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.welcome h2 {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 2rem;
    font-weight: 700;
}

.welcome-text {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.mission-box {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #f97316;
}

.mission-box h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-box p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Services Preview */
.services-preview {
    padding: 6rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 4rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

.services-cta {
    text-align: center;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.cta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.cta-item i {
    color: #f97316;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: #f97316;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #f97316;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #f97316;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-info {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
    margin-top: 80px;
}

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

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Presentation Content */
.presentation-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.professional-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.professional-image {
    margin-bottom: 2rem;
}

.image-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.image-placeholder i {
    font-size: 4rem;
    color: white;
}

.professional-info h2 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.title {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 2rem;
}

.credentials {
    text-align: left;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
}

.credential-item i {
    color: #2563eb;
    width: 20px;
}

.studio-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.studio-info h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.studio-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.specializations h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.spec-item i {
    color: #f97316;
    font-size: 1.25rem;
}

/* Experience Timeline */
.experience-section {
    margin-bottom: 6rem;
}

.experience-section h3 {
    color: #2563eb;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563eb;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    flex: 1;
}

.timeline-content h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Values Section */
.values-section h3 {
    color: #2563eb;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: white;
    color: #f97316;
}

/* Services Page Styles */
.services-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem;
}

.services-intro h2 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.services-intro p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.8;
}

.services-detailed {
    display: grid;
    gap: 3rem;
}

.service-detailed {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.service-detailed .service-icon {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
}

.service-detailed h3 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-detailed p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #64748b;
}

.service-features li i {
    color: #f97316;
    font-size: 0.9rem;
}

/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-item-content h4 {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Responsive adjustments for internal pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 60px;
        padding: 0.5rem;
        font-size: 0.9rem;
    }

    .timeline-content {
        margin-left: 1rem;
        margin-right: 0;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detailed {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* Partners Section */
.partners-section {
    background: white;
    padding: 6rem 0;
}

.partners-content {
    text-align: center;
}

.partners-content h2 {
    color: #2563eb;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.partners-content p {
    color: #64748b;
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.partner-item {
    background: #f8fafc;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.partner-item:hover {
    background: white;
    border-color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.partner-item i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1.5rem;
}

.partner-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-item p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}


/* Online Services Styles */
.online-services-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.online-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.online-service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.online-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #2563eb;
}

.service-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 2rem;
    text-align: center;
}

.service-header .service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-header .service-icon i {
    font-size: 2rem;
    color: white;
}

.service-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.service-body {
    padding: 2rem;
}

.service-body p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-body .service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-body .service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #64748b;
}

.service-body .service-features li i {
    color: #f97316;
    font-size: 0.9rem;
}

.service-action {
    text-align: center;
}

.service-action .btn {
    width: 100%;
    justify-content: center;
}

/* How It Works */
.how-it-works {
    margin-bottom: 6rem;
    text-align: center;
}

.how-it-works h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    text-align: center;
}

.benefits-section h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.benefit-item i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for online services */
@media (max-width: 768px) {
    .online-services-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


/* Curriculum Styles */
.curriculum-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.professional-summary {
    margin-bottom: 6rem;
}

.summary-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.summary-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
}

.professional-avatar {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.professional-avatar i {
    font-size: 4rem;
    color: white;
}

.professional-details h2 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.professional-title {
    color: #f97316;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.professional-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CV Sections */
.cv-section {
    margin-bottom: 6rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title i {
    color: #f97316;
}

/* Experience Timeline */
.experience-timeline {
    position: relative;
    max-width: 900px;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 200px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563eb;
}

.experience-timeline .timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 3rem;
    align-items: start;
}

.experience-timeline .timeline-date {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.experience-timeline .timeline-date::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
}

.experience-timeline .timeline-content {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.experience-timeline .timeline-content h4 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.company {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.responsibilities {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: #64748b;
    line-height: 1.6;
}

.responsibilities li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #f97316;
    font-weight: bold;
}

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.education-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.education-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-icon i {
    font-size: 2rem;
    color: white;
}

.education-content h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.institution {
    color: #f97316;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.year {
    color: #64748b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.description {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.skill-category h4 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.skills-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.skill-item span {
    color: #64748b;
    font-weight: 600;
}

.skill-bar {
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 4px;
    transition: width 1s ease;
}

/* Certifications Grid */
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.certification-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.certification-item i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1.5rem;
}

.certification-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.certification-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-item {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
    display: block;
}

.achievement-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.achievement-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for curriculum */
@media (max-width: 768px) {
    .summary-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .professional-stats {
        grid-template-columns: 1fr;
    }

    .experience-timeline::before {
        left: 30px;
    }

    .experience-timeline .timeline-item {
        grid-template-columns: 1fr;
        padding-left: 60px;
    }

    .experience-timeline .timeline-date {
        position: absolute;
        left: -30px;
        top: 0;
        width: 60px;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .experience-timeline .timeline-date::after {
        right: -6px;
        width: 8px;
        height: 8px;
    }

    .education-grid {
        grid-template-columns: 1fr;
    }

    .education-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Page Styles */
.contact-content {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
}

.contact-info {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.contact-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-item-content h4 {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item-content p {
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.contact-item-content a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: #f97316;
}

/* Office Hours */
.office-hours {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 15px;
    color: white;
}

.office-hours h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
}

.time {
    font-weight: 500;
    opacity: 0.9;
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form h3 {
    color: #2563eb;
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Checkbox styling */
.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem !important;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto !important;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #2563eb;
    border-color: #2563eb;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #2563eb;
    text-decoration: underline;
}

/* Submit button */
.contact-form .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1.25rem;
}

/* Map Section */
.map-section {
    margin-bottom: 4rem;
}

.map-section h3 {
    color: #2563eb;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.map-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-placeholder {
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
}

.map-placeholder i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.map-placeholder h4 {
    color: #2563eb;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.map-placeholder p {
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Directions */
.directions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.direction-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.direction-item i {
    font-size: 2rem;
    color: #f97316;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.direction-item h4 {
    color: #2563eb;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.direction-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Emergency Contact */
.emergency-contact {
    text-align: center;
}

.emergency-card {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.emergency-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fef2f2;
}

.emergency-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-phone {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.emergency-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .directions {
        grid-template-columns: 1fr;
    }

    .direction-item {
        flex-direction: column;
        text-align: center;
    }

    .checkbox-label {
        align-items: flex-start !important;
    }
}



.hero-title {
    white-space: nowrap;
    display: inline-block;
}

