
        /* Page Specific Styles */

/* Mobile Responsive Styles for About Page */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }

    .hero .lead {
        font-size: 1.1rem !important;
    }

    .section-header h2 {
        font-size: 2rem !important;
    }

    .section-header .section-badge {
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }

    .about-card,
    .timeline-card,
    .team-card {
        padding: 25px !important;
        margin-bottom: 20px !important;
    }

    .about-icon,
    .timeline-icon,
    .team-avatar {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }

    .timeline-content {
        padding: 20px !important;
    }

    .team-info h4 {
        font-size: 1.2rem !important;
    }

    .team-info p {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 60px 0 !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    .about-card,
    .timeline-card,
    .team-card {
        padding: 20px !important;
    }

    .about-icon,
    .timeline-icon,
    .team-avatar {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.3rem !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    .timeline-content {
        padding: 15px !important;
    }

    .team-info h4 {
        font-size: 1.1rem !important;
    }
}
        .hero {
            padding: 150px 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://img.freepik.com/free-photo/business-people-meeting-office_53876-25060.jpg') center/cover;
            opacity: 0.1;
            animation: zoomInOut 20s infinite alternate;
        }

        @keyframes zoomInOut {
            from { transform: scale(1); }
            to { transform: scale(1.1); }
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }

        .hero-badge:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .story-content {
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .story-content:hover {
            transform: translateY(-10px);
        }

        .stat-card {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

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

        .stat-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

        .stat-card h3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .stat-card p {
            color: #666;
            margin: 0;
        }

        .value-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
        }

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

        .value-card i {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 20px;
        }

        .value-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

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

        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

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

        .team-image {
            position: relative;
            padding-top: 100%;
        }

        .team-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-content {
            padding: 30px;
            text-align: center;
        }

        .team-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .team-content p {
            color: var(--secondary-color);
            margin-bottom: 15px;
        }

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

        .social-links a {
            width: 40px;
            height: 40px;
            background: var(--light-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-color);
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--gradient-secondary);
            color: white;
            transform: translateY(-5px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .section-badge {
            background: var(--gradient-secondary);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }

        .section-header h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .section-header p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .modal-header {
            padding: 1.5rem 1.5rem 0;
        }

        .btn-close {
            background-color: rgba(0, 0, 0, 0.1);
            padding: 0.5rem;
            border-radius: 50%;
            opacity: 1;
            transition: all 0.3s ease;
        }

        .btn-close:hover {
            background-color: rgba(0, 0, 0, 0.2);
            transform: rotate(90deg);
        }

        .modal-body {
            padding: 1.5rem;
        }

        .callback-form .form-floating > .form-control,
        .callback-form .form-floating > .form-select {
            height: calc(3.5rem + 2px);
            padding: 1rem 0.75rem;
            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background-color: white;
            position: relative;
            z-index: 2;
            line-height: 1.5;
        }

        .callback-form .form-floating > textarea.form-control {
            height: 100px;
            padding-top: 1.5rem;
        }

        .callback-form .form-floating > label {
            padding: 1rem 0.75rem;
            z-index: 2;
            background-color: transparent;
            height: auto;
        }

        .callback-form .form-control:focus,
        .callback-form .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(44, 62, 80, 0.1);
            z-index: 2;
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .callback-form .form-control:not(:placeholder-shown) {
            padding-top: 1.625rem;
            padding-bottom: 0.625rem;
        }

        .callback-form .btn-primary {
            border-radius: 12px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .callback-form .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 62, 80, 0.2);
        }

        .callback-form .btn-primary i {
            transition: transform 0.3s ease;
        }

        .callback-form .btn-primary:hover i {
            transform: translateX(5px);
        }

