

  
/* career */

        :root {
            --career-primary: #f85f0a;
            --career-secondary: #20bb4d;
            --career-dark: #222;
            --career-light: #f8f9fa;
            --career-gray: #444;
            --career-light-gray: #eaeaea;
        }
        
        .career-page {
            background-color: var(--career-light);
            color: var(--career-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .career-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .career-header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: career-fadeInDown 1s ease;
        }
        
        .career-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .career-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--career-dark);
            text-decoration: none;
        }
        
        .career-logo span {
            color: var(--career-primary);
        }
        
        /* Hero Section */
        .career-hero {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
        }
        
        .career-hero-content {
            position: relative;
            max-width: 800px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: career-fadeInUp 1s ease;
        }
        
        .career-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--career-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .career-hero h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--career-primary);
        }
        
        .career-hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--career-gray);
        }
        
        .career-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--career-primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--career-primary);
        }
        
        .career-btn:hover {
            background-color: transparent;
            color: var(--career-primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 95, 10, 0.3);
        }
        
        .career-btn-secondary {
            background-color: var(--career-secondary);
            border-color: var(--career-secondary);
        }
        
        .career-btn-secondary:hover {
            color: var(--career-secondary);
        }
        
        /* Section Styling */
        .career-section {
            padding: 100px 0;
        }
        
        .career-section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .career-section-title h2 {
            font-size: 2.5rem;
            color: var(--career-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .career-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--career-primary);
        }
        
        /* Why Join Section */
        .career-why {
            background-color: rgba(248, 95, 10, 0.05);
        }
        
        .career-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .career-benefit {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .career-benefit:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .career-benefit-icon {
            width: 80px;
            height: 80px;
            background: var(--career-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        .career-benefit h3 {
            margin-bottom: 15px;
            color: var(--career-dark);
            font-size: 1.5rem;
        }
        
        /* Culture */
        .career-culture {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
        }
        
        .career-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .career-value {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .career-value:hover {
            transform: translateY(-10px);
        }
        
        .career-value-icon {
            width: 60px;
            height: 60px;
            background: var(--career-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* Positions */
        .career-positions {
            background-color: rgba(32, 187, 77, 0.05);
        }
        
        .career-position-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .career-position {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .career-position:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .career-position-header {
            background: linear-gradient(135deg, var(--career-primary), var(--career-secondary));
            color: white;
            padding: 20px;
        }
        
        
        .career-position-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}
        
        .career-position-location {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
        }
        
        .career-position-content {
            padding: 30px;
        }
        
        .career-position-details {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .career-position-detail {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }
        
        .career-position-detail i {
            color: var(--career-primary);
            margin-top: 3px;
        }
        
        /* Testimonials */
        .career-testimonials {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
        }
        
        .career-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .career-testimonial {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .career-testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(248, 95, 10, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .career-testimonial p {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .career-testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .career-author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--career-secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .career-author-info h4 {
            color: var(--career-primary);
        }
        
        .career-author-info p {
            color: var(--career-gray);
            font-size: 0.9rem;
            margin: 0;
            font-style: normal;
        }
        
        /* How to Apply */
        .career-apply {
            background-color: rgba(32, 187, 77, 0.1);
        }
        
        .career-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .career-step {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }
        
        .career-step:hover {
            transform: translateY(-10px);
        }
        
        .career-step-number {
            width: 60px;
            height: 60px;
            background: var(--career-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .career-step h3 {
            margin: 15px 0;
            color: var(--career-dark);
            font-size: 1.2rem;
        }
        
        /* CTA */
        .career-cta {
            background: linear-gradient(135deg, var(--career-primary), var(--career-secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .career-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .career-cta-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .career-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .career-contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .career-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
        }
        
        .career-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Footer */
        .career-footer {
            background-color: var(--career-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .career-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .career-social-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .career-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .career-social-links a:hover {
            background: var(--career-primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes career-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes career-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes career-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .career-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .career-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .career-position-details {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .career-hero h1 {
                font-size: 2.5rem;
            }
            
            .career-section-title h2 {
                font-size: 2rem;
            }
            
            .career-cta h2 {
                font-size: 2rem;
            }
        }
   
   
     
/* 3rd*/

        
        :root {
            --ejeje-primary: #f85f0a;
            --ejeje-secondary: #20bb4d;
            --ejeje-dark: #222;
            --ejeje-light: #f8f9fa;
            --ejeje-gray: #444;
            --ejeje-light-gray: #eaeaea;
        }
        
        .ejeje-page {
            background-color: var(--ejeje-light);
            color: var(--ejeje-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .ejeje-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .ejeje-header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: ejeje-fadeInDown 1s ease;
        }
        
        .ejeje-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .ejeje-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--ejeje-dark);
            text-decoration: none;
        }
        
        .ejeje-logo span {
            color: var(--ejeje-primary);
        }
        
        .ejeje-nav-links {
            display: flex;
            list-style: none;
        }
        
        .ejeje-nav-links li {
            margin-left: 30px;
        }
        
        .ejeje-nav-links a {
            color: var(--ejeje-dark);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
        }
        
        .ejeje-nav-links a:hover {
            color: var(--ejeje-primary);
        }
        
        .ejeje-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--ejeje-primary);
            transition: width 0.3s ease;
        }
        
        .ejeje-nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .ejeje-hero {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1)), url('../photo/qesa.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
        }
        
        .ejeje-hero-content {
            position: relative;
            max-width: 800px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: ejeje-fadeInUp 1s ease;
        }
        
        .ejeje-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--ejeje-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .ejeje-hero h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--ejeje-primary);
        }
        
        .ejeje-hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--ejeje-gray);
        }
        
        .ejeje-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--ejeje-primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--ejeje-primary);
        }
        
        .ejeje-btn:hover {
            background-color: transparent;
            color: var(--ejeje-primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 95, 10, 0.3);
        }
        
        .ejeje-btn-secondary {
            background-color: var(--ejeje-secondary);
            border-color: var(--ejeje-secondary);
        }
        
        .ejeje-btn-secondary:hover {
            color: var(--ejeje-secondary);
        }
        
        /* Section Styling */
        .ejeje-section {
            padding: 100px 0;
        }
        
        .ejeje-section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .ejeje-section-title h2 {
            font-size: 2.5rem;
            color: var(--ejeje-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .ejeje-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--ejeje-primary);
        }
        
        /* Why Choose Section */
        .ejeje-why {
            background-color: rgba(248, 95, 10, 0.05);
        }
        
        .ejeje-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ejeje-benefit {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ejeje-benefit:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ejeje-benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--ejeje-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .ejeje-benefit h3 {
            margin-bottom: 15px;
            color: var(--ejeje-dark);
            font-size: 1.5rem;
        }
        
        /* Roles */
        .ejeje-roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ejeje-role-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 5px solid var(--ejeje-secondary);
        }
        
        .ejeje-role-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ejeje-role-header {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
            padding: 20px;
        }
        
        .ejeje-role-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--ejeje-dark);
        }
        
        .ejeje-role-content {
            padding: 30px;
        }
        
        .ejeje-role-list {
            list-style: none;
        }
        
        .ejeje-role-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
        
        .ejeje-role-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--ejeje-secondary);
        }
        
        /* Process */
        .ejeje-process {
            background-color: rgba(32, 187, 77, 0.05);
        }
        
        .ejeje-process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .ejeje-step {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
        }
        
        .ejeje-step:hover {
            transform: translateY(-10px);
        }
        
        .ejeje-step-number {
            width: 60px;
            height: 60px;
            background: var(--ejeje-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .ejeje-step h3 {
            margin: 15px 0;
            color: var(--ejeje-dark);
            font-size: 1.2rem;
        }
        
        /* Industries */
        .ejeje-industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(32%, 1fr));
            gap: 20px;
        }
        
        .ejeje-industry {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 3px solid var(--ejeje-secondary);
        }
        
        .ejeje-industry:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.05), rgba(32, 187, 77, 0.05));
        }
        
        .ejeje-industry-icon {
            width: 60px;
            height: 60px;
            background: var(--ejeje-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* Testimonials */
        .ejeje-testimonials {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
        }
        
        .ejeje-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ejeje-testimonial {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .ejeje-testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(248, 95, 10, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .ejeje-testimonial p {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .ejeje-testimonial-author {
            font-weight: 700;
            color: var(--ejeje-primary);
        }
        
        .ejeje-testimonial-location {
            color: var(--ejeje-gray);
            font-size: 0.9rem;
        }
        
        /* CTA */
        .ejeje-cta {
            background: linear-gradient(135deg, var(--ejeje-primary), var(--ejeje-secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .ejeje-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .ejeje-cta-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .ejeje-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .ejeje-contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .ejeje-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
        }
        
        .ejeje-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Footer */
        .ejeje-footer {
            background-color: var(--ejeje-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .ejeje-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .ejeje-social-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .ejeje-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .ejeje-social-links a:hover {
            background: var(--ejeje-primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes ejeje-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes ejeje-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes ejeje-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ejeje-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .ejeje-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .ejeje-process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .ejeje-hero h1 {
                font-size: 2.5rem;
            }
            
            .ejeje-section-title h2 {
                font-size: 2rem;
            }
            
            .ejeje-cta h2 {
                font-size: 2rem;
            }
            
            .ejeje-nav-links {
                display: none;
            }
            
            .ejeje-process-steps {
                grid-template-columns: 1fr;
            }
        }
    
    
    
    
/* exe */

 :root {
            --julya-primary: #f85f0a;
            --julya-secondary: #20bb4d;
            --julya-dark: #222;
            --julya-light: #f8f9fa;
            --julya-gray: #444;
            --julya-light-gray: #eaeaea;
        }
        
        .julya-page {
            background-color: var(--julya-light);
            color: var(--julya-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .julya-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .julya-header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: julya-fadeInDown 1s ease;
        }
        
        .julya-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .julya-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--julya-dark);
            text-decoration: none;
        }
        
        .julya-logo span {
            color: var(--julya-primary);
        }
        
        .julya-nav-links {
            display: flex;
            list-style: none;
        }
        
        .julya-nav-links li {
            margin-left: 30px;
        }
        
        .julya-nav-links a {
            color: var(--julya-dark);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
        }
        
        .julya-nav-links a:hover {
            color: var(--julya-primary);
        }
        
        .julya-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--julya-primary);
            transition: width 0.3s ease;
        }
        
        .julya-nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .julya-hero {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1)), url('../photo/weaq.jpeg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
        }
        
        .julya-hero-content {
            position: relative;
            max-width: 800px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: julya-fadeInUp 1s ease;
        }
        
        .julya-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--julya-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .julya-hero h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--julya-primary);
        }
        
        .julya-hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--julya-gray);
        }
        
        .julya-btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--julya-primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--julya-primary);
        }
        
        .julya-btn:hover {
            background-color: transparent;
            color: var(--julya-primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 95, 10, 0.3);
        }
        
        .julya-btn-secondary {
            background-color: var(--julya-secondary);
            border-color: var(--julya-secondary);
        }
        
        .julya-btn-secondary:hover {
            color: var(--julya-secondary);
        }
        
        /* Section Styling */
        .julya-section {
            padding: 100px 0;
        }
        
        .julya-section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .julya-section-title h2 {
            font-size: 2.5rem;
            color: var(--julya-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .julya-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--julya-primary);
        }
        
        /* Why Choose Section */
        .julya-why {
            background-color: rgba(248, 95, 10, 0.05);
        }
        
        .julya-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .julya-benefit {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .julya-benefit:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .julya-benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--julya-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .julya-benefit h3 {
            margin-bottom: 15px;
            color: var(--julya-dark);
            font-size: 1.5rem;
        }
        
        /* Services */
        .julya-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .julya-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-top: 5px solid var(--julya-primary);
        }
        
        .julya-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .julya-service-header {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
            padding: 20px;
        }
        
        .julya-service-header h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--julya-dark);
        }
        
        .julya-service-content {
            padding: 30px;
        }
        
        .julya-service-list {
            list-style: none;
        }
        
        .julya-service-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
        
        .julya-service-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--julya-secondary);
        }
        
        /* Process */
        .julya-process {
            background-color: rgba(32, 187, 77, 0.05);
        }
        
        .julya-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
        }
        
        .julya-process-steps::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: var(--julya-primary);
            z-index: 0;
        }
        
        .julya-step {
            width: calc(32.66% - 30px);
            min-width: 160px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .julya-step-number {
            width: 60px;
            height: 60px;
            background: var(--julya-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .julya-step h3 {
            margin: 15px 0;
            color: var(--julya-dark);
            font-size: 1.1rem;
        }
        
        /* Industries */
        .julya-industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .julya-industry {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 3px solid var(--julya-secondary);
        }
        
        .julya-industry:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.05), rgba(32, 187, 77, 0.05));
        }
        
        .julya-industry-icon {
            width: 60px;
            height: 60px;
            background: var(--julya-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* Testimonials */
        .julya-testimonials {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
        }
        
        .julya-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .julya-testimonial {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .julya-testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(248, 95, 10, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .julya-testimonial p {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .julya-testimonial-author {
            font-weight: 700;
            color: var(--julya-primary);
        }
        
        .julya-testimonial-location {
            color: var(--julya-gray);
            font-size: 0.9rem;
        }
        
        /* CTA */
        .julya-cta {
            background: linear-gradient(135deg, var(--julya-primary), var(--julya-secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .julya-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .julya-cta-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .julya-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .julya-contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .julya-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
        }
        
        .julya-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Footer */
        .julya-footer {
            background-color: var(--julya-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .julya-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .julya-social-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .julya-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .julya-social-links a:hover {
            background: var(--julya-primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes julya-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes julya-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes julya-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .julya-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .julya-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .julya-step {
                width: calc(33.33% - 30px);
                min-width: 250px;
            }
            
            .julya-process-steps::before {
                display: none;
            }
        }
        
        @media (max-width: 992px) {
            .julya-process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .julya-step {
                width: 100%;
                max-width: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .julya-hero h1 {
                font-size: 2.5rem;
            }
            
            .julya-section-title h2 {
                font-size: 2rem;
            }
            
            .julya-cta h2 {
                font-size: 2rem;
            }
            
            .julya-nav-links {
                display: none;
            }
        }
   

/*health care*/


        
        :root {
            --ttl1-primary: #f85f0a;
            --ttl1-secondary: #20bb4d;
            --ttl1-dark: #222;
            --ttl1-light: #f8f9fa;
            --ttl1-gray: #444;
        }
        
      
        
        .ttl1-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header */
        .ttl1-header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            animation: ttl1-fadeInDown 1s ease;
        }
        
        .ttl1-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .ttl1-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--ttl1-dark);
            text-decoration: none;
        }
        
        .ttl1-logo span {
            color: var(--ttl1-primary);
        }
        
        /* Hero Section */
        .ttl1-hero {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.2), rgba(32, 187, 77, 0.2)), url('../photo/qaw.jpg');
            background-size: cover;
            background-position: center;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
            position: relative;
        }
        
        .ttl1-hero-content {
            position: relative;
            max-width: 800px;
            padding: 40px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            animation: ttl1-fadeInUp 1s ease;
        }
        
        .ttl1-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--ttl1-dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .ttl1-hero h1::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--ttl1-primary);
        }
        
        .ttl1-hero p {
            font-size: 1.1rem;
            margin-bottom: 30px;
            color: var(--ttl1-gray);
        }
        
        /* Section Styling */
        .ttl1-section {
            padding: 100px 0;
        }
        
        .ttl1-section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .ttl1-section-title h2 {
            font-size: 2.5rem;
            color: var(--ttl1-dark);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .ttl1-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--ttl1-primary);
        }
        
        /* Why Choose Section */
        .ttl1-why {
            background-color: rgba(248, 95, 10, 0.05);
        }
        
        .ttl1-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ttl1-benefit {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ttl1-benefit:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .ttl1-benefit-icon {
            width: 60px;
            height: 60px;
            background: var(--ttl1-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .ttl1-benefit h3 {
            margin-bottom: 15px;
            color: var(--ttl1-dark);
            font-size: 1.5rem;
        }
        
        /* Services */
        .ttl1-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ttl1-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ttl1-service-card:hover {
            transform: translateY(-10px);
        }
        
        .ttl1-service-header {
            background: linear-gradient(135deg, var(--ttl1-primary), var(--ttl1-secondary));
            color: white;
            padding: 20px;
        }
      
      .ttl1-service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: white;
}
        
        .ttl1-service-content {
            padding: 30px;
        }
        
        .ttl1-service-list {
            list-style: none;
        }
        
        .ttl1-service-list li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 25px;
        }
        
        .ttl1-service-list li:before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--ttl1-secondary);
        }
        
        /* Process */
        .ttl1-process {
            background-color: rgba(32, 187, 77, 0.05);
        }
        
        .ttl1-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            position: relative;
        }
        
        .ttl1-process-steps::before {
            content: '';
            position: absolute;
            top: 80px;
            left: 10%;
            width: 80%;
            height: 3px;
            background: var(--ttl1-primary);
            z-index: 0;
        }
        
        .ttl1-step {
            width: calc(33% - 30px);
            min-width: 200px;
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .ttl1-step-number {
            width: 60px;
            height: 60px;
            background: var(--ttl1-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        .ttl1-step h3 {
            margin: 15px 0;
            color: var(--ttl1-dark);
        }
        
        /* Sectors */
        .ttl1-sectors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .ttl1-sector {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ttl1-sector:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.05), rgba(32, 187, 77, 0.05));
        }
        
        .ttl1-sector-icon {
            width: 60px;
            height: 60px;
            background: var(--ttl1-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin: 0 auto 20px;
        }
        
        /* Testimonials */
        .ttl1-testimonials {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1));
        }
        
        .ttl1-testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ttl1-testimonial {
            background: white;
            padding: 40px 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .ttl1-testimonial::before {
            content: '"';
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 5rem;
            color: rgba(248, 95, 10, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .ttl1-testimonial p {
            margin-bottom: 20px;
            font-style: italic;
            position: relative;
            z-index: 1;
        }
        
        .ttl1-testimonial-author {
            font-weight: 700;
            color: var(--ttl1-primary);
        }
        
        .ttl1-testimonial-location {
            color: var(--ttl1-gray);
            font-size: 0.9rem;
        }
        
        /* CTA */
        .ttl1-cta {
            background: linear-gradient(135deg, var(--ttl1-primary), var(--ttl1-secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .ttl1-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1586773860418-d37222d8fce3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .ttl1-cta-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .ttl1-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .ttl1-contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .ttl1-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.2);
            padding: 15px 25px;
            border-radius: 50px;
        }
        
        .ttl1-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        /* Footer */
        .ttl1-footer {
            background-color: var(--ttl1-dark);
            color: white;
            padding: 30px 0;
            text-align: center;
        }
        
        .ttl1-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .ttl1-social-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .ttl1-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .ttl1-social-links a:hover {
            background: var(--ttl1-primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes ttl1-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes ttl1-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes ttl1-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ttl1-animate {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .ttl1-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .ttl1-process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .ttl1-process-steps::before {
                display: none;
            }
            
            .ttl1-step {
                width: 100%;
                max-width: 500px;
            }
        }
        
        @media (max-width: 768px) {
            .ttl1-hero h1 {
                font-size: 2.5rem;
            }
            
            .ttl1-section-title h2 {
                font-size: 2rem;
            }
            
            .ttl1-cta h2 {
                font-size: 2rem;
            }
        }
        

/* about page  */

    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
           
        }
        
        :root {
            --june-primary: #f85f0a;
            --june-secondary: #20bb4d;
            --june-dark: #222;
            --june-light: #f8f9fa;
            --june-gray: #444;
        }
        
      
        
        .june-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header & Navigation */
       
        
        .june-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }
        
        .june-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--june-dark);
            text-decoration: none;
        }
        
        .june-logo span {
            color: var(--june-primary);
        }
        
        .june-nav-links {
            display: flex;
            list-style: none;
        }
        
        .june-nav-links li {
            margin-left: 30px;
        }
        
        .june-nav-links a {
            color: var(--june-dark);
            text-decoration: none;
            font-weight: 600;
            position: relative;
            transition: color 0.3s;
        }
        
        .june-nav-links a:hover {
            color: var(--june-primary);
        }
        
        .june-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--june-primary);
            transition: width 0.3s ease;
        }
        
        .june-nav-links a:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .june-hero {
            background: linear-gradient(135deg, rgba(248, 95, 10, 0.1), rgba(32, 187, 77, 0.1)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .june-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
        }
        
        .june-hero-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            animation: june-fadeInUp 1s ease;
        }
        
        .june-hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--june-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .june-hero h1 span {
            color: var(--june-primary);
        }
        
        .june-hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--june-gray);
        }
        
        .june-btn {
            display: inline-block;
            padding: 15px 30px;
            background-color: var(--june-primary);
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid var(--june-primary);
            margin: 10px;
        }
        
        .june-btn:hover {
            background-color: transparent;
            color: var(--june-primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(248, 95, 10, 0.3);
        }
        
        .june-btn-secondary {
            background-color: var(--june-secondary);
            border-color: var(--june-secondary);
        }
        
        .june-btn-secondary:hover {
            color: var(--june-secondary);
        }
        
        /* Section Styling */
        section {
            padding: 100px 0;
        }
        
        .june-section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
            animation: june-fadeIn 1s ease;
        }
        
        .june-section-title h2 {
            font-size: 2.5rem;
            color: var(--june-dark);
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        
        .june-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--june-primary);
        }
        
        .june-section-title p {
            color: var(--june-gray);
            max-width: 700px;
            margin: 30px auto 0;
        }
        
        /* Our Story */
        .june-story-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .june-story-text {
            flex: 1;
            animation: june-fadeInLeft 1s ease;
        }
        
        .june-story-image {
            flex: 1;
            animation: june-fadeInRight 1s ease;
        }
        
        .june-story-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        /* Services */
        .june-services {
            background-color: rgba(248, 95, 10, 0.05);
        }
        
        .june-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .june-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            animation: june-fadeInUp 1s ease;
        }
        
        .june-service-card:hover {
            transform: translateY(-10px);
        }
        
        .june-service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--june-primary), var(--june-secondary));
            color: white;
            font-size: 4rem;
        }
        
        .june-service-content {
            padding: 30px;
        }
        
        .june-service-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--june-dark);
        }
        
        /* Approach */
        .june-approach-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }
        
        .june-step {
            width: calc(25% - 30px);
            min-width: 250px;
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            animation: june-fadeIn 1s ease;
            transition: transform 0.3s ease;
        }
        
        .june-step:hover {
            transform: scale(1.05);
        }
        
        .june-step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: var(--june-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .june-step h3 {
            margin: 15px 0;
            color: var(--june-dark);
        }
        
        /* Why Choose Us */
        .june-why-us {
            background-color: rgba(32, 187, 77, 0.05);
        }
        
        .june-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .june-benefit {
            display: flex;
            gap: 20px;
            animation: june-fadeInUp 1s ease;
        }
        
        .june-benefit-icon {
            min-width: 60px;
            height: 60px;
            background: var(--june-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .june-benefit-content h3 {
            margin-bottom: 10px;
            color: var(--june-dark);
        }
        
        /* Values */
        .june-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .june-value-card {
            background: white;
            padding: 40px 30px;
            text-align: center;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            animation: june-fadeIn 1s ease;
        }
        
        .june-value-card:hover {
            transform: translateY(-10px);
        }
        
        .june-value-icon {
            width: 80px;
            height: 80px;
            background: var(--june-secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 20px;
        }
        
        .june-value-card h3 {
            margin-bottom: 15px;
            color: var(--june-dark);
        }
        
        /* Contact */
        .june-contact {
            background: linear-gradient(135deg, var(--june-primary), var(--june-secondary));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .june-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1557804506-669a67965ba0?ixlib=rb-4.0.3&auto=format&fit=crop&w=1267&q=80') no-repeat center center/cover;
            opacity: 0.1;
        }
        
        .june-contact-content {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .june-contact-info {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        
        .june-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .june-contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }
        
        .june-contact-text {
            text-align: left;
        }
        
        /* Footer */
       
        
        .june-footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .june-social-links {
            display: flex;
            gap: 20px;
            margin: 20px 0;
        }
        
        .june-social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .june-social-links a:hover {
            background: var(--june-primary);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes june-fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        @keyframes june-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes june-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes june-fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes june-fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes june-pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        .june-animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .june-animate-on-scroll.june-visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .june-story-content {
                flex-direction: column;
            }
            
            .june-step {
                width: calc(50% - 30px);
            }
        }
        
        @media (max-width: 768px) {
            .june-hero h1 {
                font-size: 2.5rem;
            }
            
            .june-nav-links {
                display: none;
            }
            
            .june-step {
                width: 100%;
            }
            
            .june-section-title h2 {
                font-size: 2rem;
            }
        }