.service-hero {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:7%;
}

    .service-hero .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-hero h1 {
        color: white;
        font-size: 80px;
        font-family: "Readex-Bold";
        text-align: center;
        z-index: 2;
    }

/* Two Column Section Styles */
.two-column-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

    .two-column-section h2 {
        font-size: 3.12rem;
        font-weight: bold;
        color: #003176;
        margin-bottom: 20px;
    }

    .two-column-section .subtitle {
        font-size: 1rem;
        color: #0D406B;
        line-height: 1.6;
    }

    .two-column-section img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    }



/* Points List Styles */
.points-list {
    list-style: none;
    padding: 0;
}

    .points-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        font-size: 1.1rem;
        color: #2c3e50;
    }

        .points-list li i {
            color: #003176;
            font-size: 1.2rem;
            margin-right: 15px;
            flex-shrink: 0;
            margin-top: 5px;
        }

[dir="rtl"] .points-list li i {
    margin-right: 0;
    margin-left: 15px;
    margin-top: 5px;
}

.points-list li span {
    line-height: 1.6;
}


/*css for min page mobile responsive form second - third section */
@media (max-width: 991px) {
    .two-column-section .row {
        flex-direction: column;
    }

    .two-column-section .col-lg-6:first-child {
        order: 1;
    }

    .two-column-section .col-lg-6:last-child {
        order: 2;
    }
}


/*steper*/

/* Modern Card-Based Stepper Section Styles */
.stepper-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

    .stepper-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 30%, rgba(0, 49, 118, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    }

    .stepper-section h2 {
        text-align: center;
        font-size: 3.125rem;
        font-weight: bold;
        color: #003176;
        margin-bottom: 60px;
        position: relative;
        z-index: 2;
    }

.stepper-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.stepper-item {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    border: 2px solid transparent;
}

    .stepper-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: linear-gradient(90deg, #003176, #FF6B35);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .stepper-item:hover::before {
        transform: scaleX(1);
    }

    .stepper-item:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 49, 118, 0.15);
        border-color: rgba(255, 107, 53, 0.3);
    }

.stepper-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003176;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 3px solid #e2e8f0;
}

    .stepper-icon::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: 50%;
        background: linear-gradient(135deg, #003176, #FF6B35);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

.stepper-item:hover .stepper-icon {
    transform: scale(1.1) rotate(360deg);
    color: white;
    border-color: transparent;
}

    .stepper-item:hover .stepper-icon::after {
        opacity: 1;
    }

.stepper-icon i {
    transition: all 0.3s ease;
    z-index: 1;
    position: relative;
}

.stepper-item:hover .stepper-icon i {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
}

.stepper-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.5;
    margin: 0;
    transition: all 0.3s ease;
}

.stepper-item:hover .stepper-title {
    color: #003176;
    transform: scale(1.05);
}

/* Number badge */
.stepper-item {
    counter-increment: step-counter;
}

.stepper-container {
    counter-reset: step-counter;
}

.stepper-item::after {
    content: counter(step-counter);
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #e2e8f0;
    color: #64748b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.stepper-item:hover::after {
    background: linear-gradient(135deg, #003176, #FF6B35);
    color: white;
    transform: scale(1.1);
}

/* Floating animation */
.stepper-item {
    animation: float 6s ease-in-out infinite;
}

    .stepper-item:nth-child(2) {
        animation-delay: -2s;
    }

    .stepper-item:nth-child(3) {
        animation-delay: -4s;
    }

    .stepper-item:nth-child(4) {
        animation-delay: -1s;
    }

    .stepper-item:nth-child(5) {
        animation-delay: -3s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.stepper-item:hover {
    animation-play-state: paused;
}

/* Glow effect on hover */
.stepper-item:hover {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 20px 40px rgba(0, 49, 118, 0.15);
    }

    to {
        box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
    }
}

/* Responsive Design for Stepper */
@media (max-width: 992px) {
    .stepper-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 25px;
        padding: 0 15px;
    }

    .stepper-item {
        padding: 35px 20px;
    }

    .stepper-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .stepper-section h2 {
        font-size: 2.5rem;
    }

    .stepper-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .stepper-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .stepper-item {
        padding: 30px 20px;
    }

    .stepper-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .stepper-icon {
        width: 75px;
        height: 75px;
        font-size: 1.9rem;
    }

    .stepper-title {
        font-size: 1.1rem;
    }

    .service-hero h1 {
        font-size: 60px;
    }

    .two-column-section h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .stepper-section {
        padding: 60px 0;
    }

        .stepper-section h2 {
            font-size: 1.8rem;
            margin-bottom: 30px;
        }

    .stepper-item {
        padding: 25px 15px;
    }

    .stepper-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }

    .stepper-title {
        font-size: 1rem;
    }

    .service-hero h1 {
        font-size: 40px;
    }

    .two-column-section h2 {
        font-size: 2rem;
    }

    .two-column-section {
        padding: 60px 0;
    }
}
/* === Enhanced Horizontal Timeline === */
.timeline-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    perspective: 1200px;
}

.timeline-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 49, 118, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(74, 144, 226, 0.04) 0%, transparent 30%);
    z-index: 1;
    animation: floatBg 15s ease-in-out infinite alternate;
}

@keyframes floatBg {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(30px, 20px) rotate(1deg); }
}

.timeline-section h2 {
    text-align: center;
    font-size: 3.8rem;
    color: #003176;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 49, 118, 0.1);
}

.timeline-section .subtitle {
    color: #0D406B;
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 80px;
    z-index: 2;
    position: relative;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 500;
}

/* === Enhanced Main container === */
.timeline-container {
    position: relative;
    margin: 0 auto;
    padding: 0 50px;
    height: 420px;
    display: flex;
    align-items: center;
    z-index: 2;
    max-width: 1400px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 6%;
    right: 6%;
    height: 8px;
    background: linear-gradient(90deg, 
        #003176 0%, 
        #4A90E2 20%, 
        #FF6B35 50%, 
        #4A90E2 80%, 
        #003176 100%);
    border-radius: 4px;
    box-shadow: 
        0 0 40px rgba(0, 49, 118, 0.5),
        0 0 80px rgba(255, 107, 53, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    z-index: 1;
    animation: lineGlow 4s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% {
        box-shadow: 
            0 0 30px rgba(0, 49, 118, 0.4),
            0 0 60px rgba(255, 107, 53, 0.2),
            inset 0 2px 4px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 60px rgba(0, 49, 118, 0.7),
            0 0 120px rgba(255, 107, 53, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.5);
    }
}

/* === Enhanced Timeline items === */
.timeline-item {
    position: absolute;
    width: 320px;
    opacity: 0;
    animation: fadeInScale 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.timeline-item:nth-child(1) {
    left: 5%;
    top: -40%;
    animation-delay: 0.4s;
}

.timeline-item:nth-child(2) {
    left: 27%;
    bottom: -40%;
    animation-delay: 0.8s;
}

.timeline-item:nth-child(3) {
    right: 27%;
    top: -40%;
    animation-delay: 1.2s;
}

.timeline-item:nth-child(4) {
    right: 5%;
    bottom: -40%;
    animation-delay: 1.6s;
}

/* === Enhanced Content box === */
.timeline-content {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 25px 30px;
    border-radius: 50%;
    width: 320px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.12),
        0 5px 20px rgba(0, 49, 118, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform-style: preserve-3d;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.timeline-content::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
/*    background: linear-gradient(45deg, 
        transparent, 
        rgba(0, 49, 118, 0.1), 
        rgba(255, 107, 53, 0.1), 
        transparent);*/
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.timeline-content:hover {
    transform: translateY(-25px) scale(1) rotateX(10deg) rotateY(5deg);
    box-shadow: 
        0 35px 80px rgba(0, 49, 118, 0.25),
        0 15px 50px rgba(255, 107, 53, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
}

.timeline-content:hover::before {
    opacity: 1;
}

/* === Enhanced Icon === */
.timeline-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003176;
    font-size: 2rem;
    margin-bottom: 20px;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.timeline-content:hover .timeline-icon {
    background: linear-gradient(135deg, #003176, #FF6B35);
    color: #fff;
    transform: scale(1.25) rotate(360deg);
    box-shadow: 
        0 12px 35px rgba(255, 107, 53, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
}

/* === Enhanced Text === */
.timeline-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #003176;
    margin-bottom: 15px;
    transition: all 0.6s ease;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.timeline-content:hover .timeline-title {
    color: #FF6B35;
    transform: scale(1.05);
    text-shadow: 0 2px 5px rgba(255, 107, 53, 0.3);
}

.timeline-description {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 85%;
    font-weight: 400;
    opacity: 0.9;
}

/* === Enhanced Dot === */
.timeline-dot {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #003176, #FF6B35);
    border: 5px solid #fff;
    border-radius: 50%;
    transform: translateX(-50%);
    animation: enhancedPulse 3s infinite;
    z-index: 10;
    box-shadow: 
        0 6px 20px rgba(0, 49, 118, 0.4),
        0 0 0 0 rgba(255, 107, 53, 0.6);
}

.timeline-item:nth-child(1) .timeline-dot,
.timeline-item:nth-child(3) .timeline-dot {
    bottom: -50px;
}

.timeline-item:nth-child(2) .timeline-dot,
.timeline-item:nth-child(4) .timeline-dot {
    top: -50px;
}

@keyframes enhancedPulse {
    0% {
        box-shadow: 
            0 6px 20px rgba(0, 49, 118, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0.6);
    }
    50% {
        box-shadow: 
            0 8px 25px rgba(0, 49, 118, 0.6),
            0 0 0 20px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 
            0 6px 20px rgba(0, 49, 118, 0.4),
            0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.timeline-content:hover + .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    animation-play-state: paused;
    box-shadow: 
        0 10px 30px rgba(255, 107, 53, 0.8),
        0 0 0 15px rgba(255, 107, 53, 0.3);
}

/* === Enhanced Entrance animation === */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateY(80px) scale(0.6) rotateX(30deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
    }
}

/* === Enhanced Responsive === */
@media (max-width: 1200px) {
    .timeline-container {
        padding: 0 40px;
        height: 380px;
        max-width: 1200px;
    }
    
    .timeline-item {
        width: 300px;
    }
    
    .timeline-content {
        width: 300px;
        height: 300px;
        padding: 35px 25px;
    }
    
    .timeline-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .timeline-section {
        padding: 80px 0;
    }
    
    .timeline-section h2 {
        font-size: 3.2rem;
        margin-bottom: 20px;
    }
    
    .timeline-section .subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
        padding: 0 20px;
    }
    
    .timeline-container {
        flex-direction: column;
        height: auto;
        padding: 30px 20px;
        gap: 0;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        position: relative;
    }

    /* Enhanced Vertical line */
    .timeline-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 35px;
        bottom: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, 
            #003176 0%, 
            #4A90E2 25%, 
            #FF6B35 50%, 
            #4A90E2 75%, 
            #003176 100%);
        border-radius: 3px;
        box-shadow: 
            0 0 25px rgba(0, 49, 118, 0.4),
            0 0 50px rgba(255, 107, 53, 0.2);
        transform: none;
        z-index: 1;
        animation: lineGlow 3s ease-in-out infinite alternate;
    }

    .timeline-item {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        margin: 0;
        padding: 25px 0;
        display: flex;
        align-items: flex-start;
        padding-left: 90px;
    }

    /* Remove timeline dots on responsive */
    .timeline-dot {
        display: none;
    }

    .timeline-content {
        border-radius: 20px;
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 30px 25px;
        transform: none !important;
        display: block;
        text-align: left;
        box-shadow: 
            0 10px 40px rgba(0, 0, 0, 0.1),
            0 4px 20px rgba(0, 49, 118, 0.05);
        background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    /* Remove circle hover effects on responsive */
    .timeline-content:hover {
        transform: none !important;
        
    }
    
    .timeline-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        float: left;
        margin: 0 20px 15px 0;
        box-shadow: 
            0 6px 20px rgba(0, 0, 0, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.7);
    }

    /* Remove icon hover rotation on responsive */
    .timeline-content:hover .timeline-icon {
        background: linear-gradient(135deg, #003176, #FF6B35);
        color: #fff;
        transform: none;
        box-shadow: 
            0 8px 25px rgba(255, 107, 53, 0.3),
            inset 0 2px 0 rgba(255, 255, 255, 0.3);
        border-color: rgba(255, 255, 255, 0.8);
    }
    
    .timeline-title {
        font-size: 1.3rem;
        margin-bottom: 12px;
        clear: none;
    }

    /* Remove title hover scaling on responsive */
    .timeline-content:hover .timeline-title {
        color: #FF6B35;
        transform: none;
        text-shadow: none;
    }
    
    .timeline-description {
        font-size: 1rem;
        max-width: 100%;
        clear: left;
        line-height: 1.7;
    }
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 60px 0;
    }
    
    .timeline-section h2 {
        font-size: 2.8rem;
        margin-bottom: 15px;
    }
    
    .timeline-section .subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .timeline-container {
        padding: 20px 15px;
    }
    
    .timeline-container::before {
        left: 30px;
    }
    
    .timeline-item {
        padding: 20px 0 20px 80px;
    }

    .timeline-content {
        padding: 25px 20px;
    }
    
    .timeline-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin: 0 15px 10px 0;
    }
    
    .timeline-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .timeline-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .timeline-section {
        padding: 50px 0;
    }
    
    .timeline-section h2 {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .timeline-section .subtitle {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .timeline-container {
        padding: 15px 10px;
    }
    
    .timeline-container::before {
        left: 25px;
    }
    
    .timeline-item {
        padding: 18px 0 18px 70px;
    }

    .timeline-content {
        padding: 20px 15px;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin: 0 12px 8px 0;
    }
    
    .timeline-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .timeline-section h2 {
        font-size: 2rem;
    }
    
    .timeline-section .subtitle {
        font-size: 0.9rem;
        padding: 0 25px;
    }
    
    .timeline-container::before {
        left: 20px;
    }
    
    .timeline-item {
        padding: 15px 0 15px 60px;
    }

    .timeline-content {
        padding: 18px 12px;
    }
    
    .timeline-icon {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        margin: 0 10px 6px 0;
    }
    
    .timeline-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }
    
    .timeline-description {
        font-size: 0.85rem;
    }
}

/* === RTL Support for Timeline === */
[dir="rtl"] .timeline-icon {
    float: right;
    margin: 0 0 15px 20px;
}

[dir="rtl"] .timeline-content {
    text-align: right;
}

[dir="rtl"] .timeline-title {
    text-align: center;
}

[dir="rtl"] .timeline-description {
    text-align: center;
}

/* RTL Responsive adjustments */
@media (max-width: 992px) {
    [dir="rtl"] .timeline-container::before {
        right: 35px;
        left: auto;
    }

    [dir="rtl"] .timeline-item {
        padding-right: 90px;
        padding-left: 0;
    }

    [dir="rtl"] .timeline-icon {
        float: right;
        margin: 0 0 15px 20px;
    }
}

@media (max-width: 768px) {
    [dir="rtl"] .timeline-container::before {
        right: 30px;
        left: auto;
    }
    
    [dir="rtl"] .timeline-item {
        padding-right: 80px;
        padding-left: 0;
    }

    [dir="rtl"] .timeline-icon {
        margin: 0 0 10px 15px;
    }
}

@media (max-width: 576px) {
    [dir="rtl"] .timeline-container::before {
        right: 25px;
        left: auto;
    }
    
    [dir="rtl"] .timeline-item {
        padding-right: 70px;
        padding-left: 0;
    }

    [dir="rtl"] .timeline-icon {
        margin: 0 0 8px 12px;
    }
}

@media (max-width: 480px) {
    [dir="rtl"] .timeline-container::before {
        right: 20px;
        left: auto;
    }
    
    [dir="rtl"] .timeline-item {
        padding-right: 60px;
        padding-left: 0;
    }

    [dir="rtl"] .timeline-icon {
        margin: 0 0 6px 10px;
    }
}
@media (max-width: 991px) {
        .third-section .row {
            flex-direction: column;
        }

        .third-section .col-lg-6:first-child {
            order: 1;
        }

        .third-section .col-lg-6:last-child {
            order: 2;
        }
    } 