        /* About Us Page - Modern Clean Design */

.about-page {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Hero Section - Improved Design */
.about-hero {
    background: #ffffff;
    padding: 30px 0 40px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(95, 207, 229, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(45, 85, 115, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(95, 207, 229, 0.3), transparent);
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: left;
}

[dir="rtl"] .hero-text {
    text-align: right;
}

.hero-label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1b5278;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 60px;
}

.hero-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #1b5278, transparent);
}

[dir="rtl"] .hero-label {
    padding-left: 0;
    padding-right: 60px;
}

[dir="rtl"] .hero-label::before {
    left: auto;
    right: 0;
    background: linear-gradient(90deg, transparent, #1b5278);
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #19374B;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
    background: linear-gradient(135deg, #1b5278, #2D5573);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5A6C7D;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: linear-gradient(135deg, #1b5278, #2D5573);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(95, 207, 229, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 207, 229, 0.5);
    color: white;
}

.hero-btn-secondary {
    background: transparent;
    border: 2px solid #2D5573;
    color: #2D5573;
    box-shadow: none;
}

.hero-btn-secondary:hover {
    background: #2D5573;
    color: white;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    aspect-ratio: 3/2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-badge h4 {
    font-size: 2rem;
    font-weight: 800;
    color: #1b5278;
    margin: 0 0 5px 0;
}

.hero-image-badge p {
    font-size: 0.95rem;
    color: #5A6C7D;
    margin: 0;
}

.hero-breadcrumb {
    margin-top: 25px;
    font-size: 0.95rem;
    color: #5A6C7D;
}

.hero-breadcrumb a {
    color: #2D5573;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.hero-breadcrumb a:hover {
    color: #1b5278;
}

/* Main Content Section */
.main-content-section {
    padding: 50px 0;
    background: white;
    position: relative;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-text {
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(95, 207, 229, 0.1);
    position: relative;
}

.content-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1b5278, #2D5573);
    border-radius: 24px 0 0 24px;
}

[dir="rtl"] .content-text::before {
    left: auto;
    right: 0;
    border-radius: 0 24px 24px 0;
}

.section-label-small {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1b5278;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    padding-left: 30px;
}

.section-label-small::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #1b5278;
}

[dir="rtl"] .section-label-small {
    padding-left: 0;
    padding-right: 30px;
}

[dir="rtl"] .section-label-small::before {
    left: auto;
    right: 0;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #19374B;
    margin-bottom: 30px;
    line-height: 1.3;
    position: relative;
}

.section-description {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #5A6C7D;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Journey Cards */
.journey-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="%235FCFE5" opacity="0.1"/></svg>');
    opacity: 0.5;
}

.journey-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.journey-card {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1b5278, #2D5573);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

[dir="rtl"] .journey-card::before {
    transform-origin: right;
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(95, 207, 229, 0.2);
    border-color: rgba(95, 207, 229, 0.3);
}

.journey-card:hover::before {
    transform: scaleX(1);
}

.journey-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #19374B;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.journey-card h3::before {
    content: '✦';
    color: #1b5278;
    font-size: 1.2rem;
}

.journey-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5A6C7D;
}

/* Image Grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.image-box {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
    background: linear-gradient(135deg, #E8EEF2, #D1D9E0);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
}

.image-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 207, 229, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.image-box:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(95, 207, 229, 0.3);
}

.image-box:hover::after {
    opacity: 1;
}

.image-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-box:hover img {
    transform: scale(1.1);
}

/* Video & CTA Section */
.video-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.video-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.video-cta-content {
    padding: 20px 0;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0 40px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #19374B;
}

.cta-benefit i {
    color: #1b5278;
    font-size: 1.3rem;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.video-cta-video {
    position: relative;
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1b5278, transparent);
}

.video-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(95, 207, 229, 0.2);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1b5278, #2D5573);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1000') center/cover;
    transition: all 0.4s;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.4s;
}

.video-container:hover .video-placeholder::before {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    position: relative;
    z-index: 2;
    width: 110px;
    height: 110px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.play-button::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 3px solid white;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.play-button:hover {
    transform: scale(1.15);
    box-shadow: 0 20px 60px rgba(95, 207, 229, 0.6);
}

.play-button i {
    font-size: 2.2rem;
    color: #2D5573;
    margin-left: 6px;
}

.video-text-ring {
    position: absolute;
    width: 180px;
    height: 180px;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-text-ring text {
    fill: white;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 6px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #2D5573, #19374B);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(95, 207, 229, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item {
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1b5278, #e5893e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Certification Section */
.certification-section {
    padding: 60px 0;
    background: #F8F9FB;
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
   
}

.cert-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
    position: relative;
    border: 3px solid rgba(95, 207, 229, 0.2);
}

.cert-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 207, 229, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.cert-image:hover::before {
    opacity: 1;
}

.cert-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-image:hover img {
    transform: scale(1.05);
}

/* Experience Section */
.experience-section {
    background: white;
}

.exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.exp-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.exp-img-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    height: 260px;
    position: relative;
    border: 2px solid rgba(95, 207, 229, 0.15);
}

.exp-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(95, 207, 229, 0.3), rgba(45, 85, 115, 0.3));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.exp-img-box:hover::after {
    opacity: 1;
}

.exp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.exp-img-box:hover img {
    transform: scale(1.1);
}

.exp-img-box.large {
    grid-row: span 2;
    height: 545px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-list li:hover {
    border-color: rgba(95, 207, 229, 0.3);
    box-shadow: 0 10px 30px rgba(95, 207, 229, 0.15);
    transform: translateX(5px);
}

[dir="rtl"] .feature-list li:hover {
    transform: translateX(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1b5278, #2D5573);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(95, 207, 229, 0.3);
    transition: transform 0.3s;
}

.feature-list li:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

[dir="rtl"] .feature-icon {
    margin-right: 0;
    margin-left: 25px;
}

.feature-icon i {
    font-size: 1.7rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #19374B;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 1.05rem;
    color: #5A6C7D;
    line-height: 1.7;
    margin: 0;
}

.explore-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, #1b5278, #2D5573);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 40px;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(95, 207, 229, 0.3);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.explore-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2D5573, #19374B);
    opacity: 0;
    transition: opacity 0.4s;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(95, 207, 229, 0.5);
    color: white;
}

.explore-btn:hover::before {
    opacity: 1;
}

.explore-btn span {
    position: relative;
    z-index: 1;
}

/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20rem;
    color: rgba(95, 207, 229, 0.05);
    font-family: Georgia, serif;
    z-index: 0;
}

.testimonial-card {
    max-width: 1000px;
    margin: 60px auto 0;
    background: white;
    border-radius: 30px;
    padding: 80px 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(95, 207, 229, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #1b5278, #2D5573);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover::before {
    opacity: 0.1;
}

.quote-icon {
    font-size: 5rem;
    background: linear-gradient(135deg, #1b5278, #2D5573);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
    opacity: 0.7;
    display: inline-block;
}

.testimonial-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #19374B;
    margin-bottom: 35px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 2;
    color: #5A6C7D;
    margin-bottom: 50px;
    font-style: italic;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.author-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1b5278;
    box-shadow: 0 5px 20px rgba(95, 207, 229, 0.3);
    transition: transform 0.3s;
}

.author-img:hover {
    transform: scale(1.1);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #19374B;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.95rem;
    color: #5A6C7D;
    margin: 0;
}

.testimonial-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #D1D9E0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s;
}

.dot:hover {
    background: linear-gradient(135deg, #1b5278, #2D5573);
    transform: scale(1.2);
}

.dot:hover::before {
    border-color: rgba(95, 207, 229, 0.3);
}

.dot.active {
    background: linear-gradient(135deg, #1b5278, #2D5573);
    width: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(95, 207, 229, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .cert-grid,
    .exp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .testimonial-card {
        padding: 60px 40px;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    [dir="rtl"] .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-label {
        padding-left: 0;
    }
    
    .hero-label::before {
        display: none;
    }
    
    .video-cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0 40px;
        margin-top: 70px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-image-badge {
        bottom: 20px;
        left: 20px;
        padding: 20px 25px;
    }
    
    .hero-image-badge h4 {
        font-size: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .main-content-section,
    .journey-section,
    .video-section,
    .certification-section,
    .experience-section,
    .testimonial-section {
        padding: 80px 0;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .content-text {
        padding: 30px 25px;
    }
    
    .journey-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journey-card {
        padding: 40px 30px;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3.5rem;
    }
    
    .stat-label {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 50px 30px;
    }
    
    .testimonial-title {
        font-size: 1.6rem;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .exp-images {
        grid-template-columns: 1fr;
    }
    
    .exp-img-box.large {
        grid-row: span 1;
        height: 300px;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.3rem;
    }
    
    .feature-content h4 {
        font-size: 1.15rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
    
    .explore-btn {
        padding: 16px 40px;
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 40px 0 30px;
        margin-top: 65px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-label {
        font-size: 11px;
        padding: 6px 18px;
    }
    
    .section-heading {
        font-size: 1.6rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .content-text {
        padding: 25px 20px;
    }
    
    .journey-card {
        padding: 30px 25px;
    }
    
    .journey-card h3 {
        font-size: 1.4rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .testimonial-card {
        padding: 40px 20px;
    }
    
    .testimonial-title {
        font-size: 1.4rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .quote-icon {
        font-size: 3.5rem;
    }
    
    .exp-img-box {
        height: 220px;
    }
    
    .exp-img-box.large {
        height: 220px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.journey-card,
.stat-item,
.testimonial-card {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Improved Typography */
.about-page h1,
.about-page h2,
.about-page h3,
.about-page h4 {
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Enhanced Shadows */
.journey-card,
.testimonial-card,
.cert-image,
.exp-img-box {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* Button Improvements */
.explore-btn,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    text-transform: none;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Hover Effects */
.image-box,
.exp-img-box,
.cert-image {
    cursor: pointer;
}

/* RTL Support */
[dir="rtl"] .play-button i {
    margin-left: 0;
    margin-right: 5px;
}

[dir="rtl"] .hero-breadcrumb {
    direction: rtl;
}

[dir="rtl"] .author-info {
    text-align: right;
}

[dir="rtl"] .explore-btn {
    direction: rtl;
}

[dir="rtl"] .feature-list li {
    flex-direction: row-reverse;
}

/* Accessibility */
.about-page a:focus,
.about-page button:focus {
    outline: 2px solid #1b5278;
    outline-offset: 4px;
}

/* Performance Optimization */
.image-box img,
.exp-img-box img,
.cert-image img {
    will-change: transform;
}

/* Print Styles */
@media print {
    .about-hero,
    .video-section {
        break-inside: avoid;
    }
    
    .explore-btn,
    .testimonial-dots {
        display: none;
    }
}
