









  .aalieh-container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
            padding: 20px;
        }
        
        .aalieh-header {
            margin-bottom: 40px;
        }
        
       .aalieh-title {
    color: #2a334e;
}
        
        .aalieh-subtitle {
            font-size: 1.2rem;
            opacity: 0.85;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .aalieh-gallery-container {
            position: relative;
            width: 100%;
            margin: 40px auto;
            padding: 30px 0;
            overflow: hidden;
            border-radius: 20px;
            background: white;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .aalieh-gallery-track {
            display: flex;
            width: 200%; /* Double width for seamless looping */
            animation: aalieh-scroll 35s linear infinite;
        }
        
        .aalieh-gallery-track:hover {
            animation-play-state: paused;
        }
        
        .aalieh-gallery-item {
            position: relative;
            width: 320px;
            height: 220px;
            margin: 0 15px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            flex-shrink: 0;
        }
        
        .aalieh-gallery-item:hover {
            transform: scale(1.08) translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            z-index: 10;
        }
        
        .aalieh-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .aalieh-gallery-item:hover img {
            transform: scale(1.15);
        }
        
        .aalieh-gallery-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
            z-index: 1;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }
        
        .aalieh-gallery-item:hover::before {
            opacity: 0.2;
        }
        
        
        .aalieh-image-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    text-shadow: 0 1px 3px rgb(0 0 0 / 80%);
    z-index: 2;
    opacity: 0.9;
    transform: translateY(10px);
    transition: all 0.3s ease;
}
        
        .aalieh-gallery-item:hover .aalieh-image-title {
            transform: translateY(0);
            opacity: 1;
        }
        
        .aalieh-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 25px;
        }
        
        .aalieh-btn {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 25px;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .aalieh-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .aalieh-btn i {
            font-size: 1.2rem;
        }
        
        .aalieh-footer {
            margin-top: 50px;
            text-align: center;
            opacity: 0.8;
            font-size: 0.9rem;
            padding: 15px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            width: 100%;
            max-width: 600px;
        }
        
        /* Animation */
        @keyframes aalieh-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%); /* Move half the width to create infinite loop */
            }
        }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .aalieh-title {
                font-size: 2.2rem;
            }
            
            .aalieh-gallery-item {
                width: 260px;
                height: 180px;
            }
            
            .aalieh-controls {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .aalieh-title {
                font-size: 1.8rem;
            }
            
            .aalieh-gallery-item {
                width: 220px;
                height: 160px;
                margin: 0 10px;
            }
            
            .aalieh-image-title {
                font-size: 0.9rem;
            }
        }
        
        /* Decorative elements */
        .aalieh-decoration {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #ff7e5f, #feb47b);
            filter: blur(80px);
            opacity: 0.2;
            z-index: -1;
        }
        
        .aalieh-decoration:nth-child(1) {
            top: 10%;
            left: 10%;
        }
        
        .aalieh-decoration:nth-child(2) {
            bottom: 10%;
            right: 10%;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        



 
       
 :root {
            --primary: #0056b3;
            --secondary: #00a8e8;
            --accent: #ff6b00;
            --dark: #2c3e50;
            --light: #f8f9fa;
            --gray: #6c757d;
        }
        
     
        
        .ttel2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        .ttel2-header {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 20px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .ttel2-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .ttel2-logo {
            
            font-size: 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .ttel2-logo i {
            margin-right: 10px;
            color: var(--accent);
        }
        
        .ttel2-nav-links {
            display: flex;
            list-style: none;
        }
        
        .ttel2-nav-links li {
            margin-left: 30px;
        }
        
        .ttel2-nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .ttel2-nav-links a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        
        .ttel2-nav-links a:hover:after {
            width: 100%;
        }
        
        /* Hero Section */
        .ttel2-hero {
            background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../photo/qwe (1).jpeg') center/cover;
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .ttel2-hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: -25%;
            width: 150%;
            height: 100%;
            background: radial-gradient(circle, transparent 20%, rgba(0, 86, 179, 0.9) 70%);
            animation: ttel2-pulse 6s infinite alternate;
        }
        
        .ttel2-hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ttel2-hero h1 {
            
            font-size: 48px;
            margin-bottom: 20px;
            animation: ttel2-fadeInDown 1s ease;
        }
        
        .ttel2-hero p {
            font-size: 20px;
            margin-bottom: 30px;
            animation: ttel2-fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }
        
       .ttel2-hero-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #030303;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    animation: ttel2-fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    border: 2px solid #6a86ff;
}
        
        .ttel2-hero-btn:hover {
            background-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* About Section */
        .ttel2-about {
            padding: 100px 0;
            background-color: white;
        }
        
        .ttel2-section-title {
            
            font-size: 36px;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            color: var(--dark);
        }
        
        .ttel2-section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }
        
        .ttel2-about-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
        }
        
        .ttel2-about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .ttel2-about-text p {
            margin-bottom: 20px;
            font-size: 18px;
            color: var(--gray);
        }
        
        .ttel2-about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: perspective(1000px) rotateY(-5deg);
            transition: all 0.5s ease;
        }
        
        .ttel2-about-image:hover {
            transform: perspective(1000px) rotateY(0);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        
        .ttel2-about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Mission & Vision */
        .ttel2-mission-vision {
            background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
            padding: 100px 0;
        }
        
        .ttel2-mv-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .ttel2-mv-box {
            flex: 1;
            min-width: 300px;
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }
        
        .ttel2-mv-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttel2-mv-box:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }
        
        .ttel2-mv-icon {
            font-size: 40px;
            color: #6a86fe;
            margin-bottom: 20px;
        }
        
        .ttel2-mv-title {
            
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        /* Services Section */
        .ttel2-services {
            padding: 100px 0;
            background-color: white;
        }
        
        .ttel2-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .ttel2-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
        }
        
        .ttel2-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttel2-service-icon {
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            font-size: 60px;
        }
        
        .ttel2-service-content {
            padding: 25px;
        }
        
        .ttel2-service-title {
            
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .ttel2-service-list {
            list-style: none;
        }
        
        .ttel2-service-list li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }
        
        .ttel2-service-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }
        
        /* Industries Section */
        .ttel2-industries {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7fa, #e4e8f0);
        }
        
       .ttel2-industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(263px, 1fr));
    gap: 25px;
}
        
        .ttel2-industry-item {
            background: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }
        
        .ttel2-industry-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, white, #f0f4f9);
        }
        
        .ttel2-industry-icon {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        /* Contact Section */
        .ttel2-contact {
            padding: 100px 0;
            background-color: white;
        }
        
        .ttel2-contact-box {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 15px;
            padding: 50px;
            color: white;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 20px 40px rgba(0, 86, 179, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .ttel2-contact-box:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: ttel2-rotate 20s linear infinite;
        }
        
        .ttel2-contact-title {
            
            font-size: 32px;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttel2-contact-info {
            font-size: 24px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .ttel2-contact-phone, .ttel2-contact-email {
            display: block;
            margin-bottom: 15px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .ttel2-contact-phone:hover, .ttel2-contact-email:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        
        /* Footer */
        .ttel2-footer {
            background-color: var(--dark);
            color: white;
            padding: 40px 0 20px;
            text-align: center;
        }
        
        .ttel2-footer p {
            opacity: 0.8;
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes ttel2-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes ttel2-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes ttel2-pulse {
            0% {
                transform: scale(1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1.2);
                opacity: 0.8;
            }
        }
        
        @keyframes ttel2-rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
        .ttel2-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .ttel2-animate.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ttel2-nav {
                flex-direction: column;
            }
            
            .ttel2-nav-links {
                margin-top: 20px;
            }
            
            .ttel2-nav-links li {
                margin: 0 10px;
            }
            
            .ttel2-hero h1 {
                font-size: 36px;
            }
            
            .ttel2-section-title {
                font-size: 28px;
            }
            
            .ttel2-contact-box {
                padding: 30px 20px;
            }
            
            .ttel2-contact-info {
                font-size: 18px;
            }
        }


          :root {
            --primary: #1e3a8a;
            --secondary: #0ea5e9;
            --accent: #f59e0b;
            --light: #f0f9ff;
            --dark: #0c1a32;
            --gray: #64748b;
        }
        /* Header */
        .ttl7-header {
            background: linear-gradient(rgba(12, 26, 50, 0.9), rgba(12, 26, 50, 0.9)), url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?q=80') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .ttl7-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttl7-hero-title {
            
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInDown 1s ease-out;
        }
        
        .ttl7-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .ttl7-btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            opacity: 0;
        }
        
        .ttl7-btn:hover {
            background: #f97316;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
        }
        
        /* Services Section */
        .ttl7-section {
            padding: 100px 0;
        }
        
        .ttl7-section-title {
           
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
        }
        
        .ttl7-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
        }
        
        .ttl7-section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 30px auto 60px;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .ttl7-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl7-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl7-service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl7-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ttl7-service-icon {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--primary);
            color: white;
            font-size: 2.5rem;
        }
        
        .ttl7-service-content {
            padding: 30px;
        }
        
        .ttl7-service-title {
            
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl7-service-desc {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        /* Process Section */
        .ttl7-process {
            background: linear-gradient(rgba(30, 58, 138, 0.05), rgba(30, 58, 138, 0.05)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?q=80') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        
        .ttl7-process::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: -1;
        }
        
        .ttl7-process-title {
           
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--primary);
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }
        
        .ttl7-process-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .ttl7-process-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 60px;
        }
        
        .ttl7-process-step {
            flex: 1;
            min-width: 200px;
            max-width: 250px;
            text-align: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl7-process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl7-step-number {
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttl7-step-title {
            
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl7-step-desc {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Why Choose Us */
        .ttl7-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl7-benefit-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl7-benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl7-benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttl7-benefit-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }
        
        .ttl7-benefit-title {
          
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl7-benefit-desc {
            color: var(--gray);
            font-size: 1rem;
        }
        
        /* Stats Section */
        .ttl7-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 60px 0;
        }
        
        .ttl7-stat-card {
            background: white;
            border-radius: 10px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .ttl7-stat-number {
            
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .ttl7-stat-label {
            color: var(--gray);
            font-size: 1rem;
        }
        
        /* Call to Action */
        .ttl7-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(rgba(12, 26, 50, 0.9), rgba(12, 26, 50, 0.9)), url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?q=80') center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl7-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .ttl7-cta-title {
            
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .ttl7-cta-text {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ttl7-hero-title {
                font-size: 3rem;
            }
            
            .ttl7-section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ttl7-hero-title {
                font-size: 2.3rem;
            }
            
            .ttl7-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .ttl7-section-title {
                font-size: 2.2rem;
            }
            
            .ttl7-section {
                padding: 80px 0;
            }
            
            .ttl7-services-grid,
            .ttl7-benefits {
                grid-template-columns: 1fr;
            }
            
            .ttl7-process-steps {
                flex-direction: column;
                align-items: center;
            }
        }
        
        @media (max-width: 480px) {
            .ttl7-hero-title {
                font-size: 2rem;
            }
            
            .ttl7-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .ttl7-section-title {
                font-size: 1.8rem;
            }
        }
        
        /* Floating elements */
        .ttl7-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .ttl7-pmc-icon {
            position: absolute;
            z-index: 0;
            opacity: 0.05;
            font-size: 8rem;
            color: var(--primary);
        }
        
/*serv 6*/
 
        /* TTL6 Classes */
        .ttl6-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .ttl6-header {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?q=80') center/cover no-repeat;
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        
        
        .ttl6-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttl6-hero-title {
            
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInDown 1s ease-out;
        }
        
        .ttl6-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .ttl6-btn {
            display: inline-block;
            background: var(--accent);
            color: white;
            padding: 16px 45px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            opacity: 0;
        }
        
        .ttl6-btn:hover {
            background: #0891b2;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
        }
        
        /* Products Section */
        .ttl6-section {
            padding: 100px 0;
        }
        
        .ttl6-section-title {
            
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
        }
        
        .ttl6-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--accent);
        }
        
        .ttl6-section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 30px auto 60px;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .ttl6-category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl6-category-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl6-category-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl6-category-img {
            height: 250px;
            overflow: hidden;
        }
        
        .ttl6-category-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .ttl6-category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ttl6-category-card:hover .ttl6-category-img img {
            transform: scale(1.1);
        }
        
        .ttl6-category-content {
            padding: 30px;
        }
        
        .ttl6-category-title {
            
            font-size: 1.6rem;
            margin-bottom: 20px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .ttl6-category-title i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .ttl6-product-list {
            list-style: none;
        }
        
        .ttl6-product-item {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .ttl6-product-item::before {
            content: "•";
            color: var(--accent);
            font-weight: bold;
            position: absolute;
            left: 0;
            font-size: 1.5rem;
            line-height: 1;
        }
        
        /* Why Choose Us */
        .ttl6-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl6-benefit-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl6-benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl6-benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttl6-benefit-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }
        
        .ttl6-benefit-title {
            
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl6-benefit-desc {
            color: var(--gray);
            font-size: 1rem;
        }
        
        /* Product Showcase */
        .ttl6-showcase {
            background: linear-gradient(rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.05)), url('https://images.unsplash.com/photo-1518770660439-4636190af475?q=80') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        
        .ttl6-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.9);
            z-index: -1;
        }
        
        .ttl6-showcase-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .ttl6-showcase-title {
            
            font-size: 2.5rem;
            margin-bottom: 40px;
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .ttl6-showcase-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .ttl6-showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl6-showcase-item {
            background: white;
            border-radius: 10px;
            padding: 25px 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .ttl6-showcase-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .ttl6-showcase-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
        .ttl6-showcase-name {
            font-weight: 600;
            color: var(--dark);
        }
        
        /* Call to Action */
        .ttl6-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), url('https://images.unsplash.com/photo-1558346490-a72e53ae2d4f?q=80') center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl6-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .ttl6-cta-title {
            
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .ttl6-cta-text {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ttl6-hero-title {
                font-size: 3rem;
            }
            
            .ttl6-section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ttl6-hero-title {
                font-size: 2.3rem;
            }
            
            .ttl6-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .ttl6-section-title {
                font-size: 2.2rem;
            }
            
            .ttl6-section {
                padding: 80px 0;
            }
            
            .ttl6-category-grid,
            .ttl6-benefits {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .ttl6-hero-title {
                font-size: 2rem;
            }
            
            .ttl6-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .ttl6-section-title {
                font-size: 1.8rem;
            }
        }
        
        /* Floating elements */
        .ttl6-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .ttl6-tech-bg {
            position: absolute;
            z-index: 0;
            opacity: 0.05;
            font-size: 8rem;
            color: var(--primary);
        }
        
        
        
/*service 5*/

 /* TTL5 Classes */
        .ttl5-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .ttl5-header {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
       
        .ttl5-hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttl5-hero-title {
            
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
            text-transform: uppercase;
            animation: fadeInDown 1s ease-out;
        }
        
        .ttl5-hero-subtitle {
            font-size: 1.4rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.3s forwards;
            opacity: 0;
        }
        
        .ttl5-btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 16px 45px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.5s forwards;
            opacity: 0;
            border: 2px solid var(--secondary);
        }
        
        .ttl5-btn:hover {
            background: transparent;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 152, 0, 0.4);
        }
        
        /* Services Section */
        .ttl5-section {
            padding: 100px 0;
        }
        
        .ttl5-section-title {
            
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--primary);
            position: relative;
        }
        
        .ttl5-section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--secondary);
        }
        
        .ttl5-section-subtitle {
            text-align: center;
            max-width: 800px;
            margin: 30px auto 60px;
            font-size: 1.1rem;
            color: var(--gray);
        }
        
        .ttl5-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl5-service-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl5-service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl5-service-img {
            height: 250px;
            overflow: hidden;
        }
        
        .ttl5-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .ttl5-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ttl5-service-card:hover .ttl5-service-img img {
            transform: scale(1.1);
        }
        
        .ttl5-service-content {
            padding: 30px;
        }
        
        .ttl5-service-title {
            
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .ttl5-service-title i {
            margin-right: 12px;
            color: var(--secondary);
            font-size: 1.8rem;
        }
        
        .ttl5-service-desc {
            color: var(--gray);
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        /* Capabilities Section */
        .ttl5-capabilities {
            background: linear-gradient(rgba(0, 90, 156, 0.9), rgba(0, 90, 156, 0.9)), url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?q=80') center/cover no-repeat;
            padding: 100px 0;
            color: white;
            position: relative;
            text-align: center;
        }
        
        .ttl5-capabilities-title {
            
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        
        .ttl5-capabilities-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary);
        }
        
        .ttl5-capabilities-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }
        
        /* Why Choose Us */
        .ttl5-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl5-benefit-card {
            background: white;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl5-benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl5-benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttl5-benefit-icon {
            font-size: 3.5rem;
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .ttl5-benefit-title {
            
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl5-benefit-desc {
            color: var(--gray);
            font-size: 1rem;
        }
        
        /* Stats Section */
        .ttl5-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 60px 0;
        }
        
        .ttl5-stat-card {
            background: white;
            border-radius: 8px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .ttl5-stat-number {
            
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .ttl5-stat-label {
            color: var(--gray);
            font-size: 1rem;
        }
        
        /* Call to Action */
        .ttl5-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?q=80') center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl5-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .ttl5-cta-title {
            
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .ttl5-cta-text {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ttl5-hero-title {
                font-size: 3.2rem;
            }
            
            .ttl5-section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ttl5-hero-title {
                font-size: 2.5rem;
            }
            
            .ttl5-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .ttl5-section-title {
                font-size: 2.2rem;
            }
            
            .ttl5-section {
                padding: 80px 0;
            }
            
            .ttl5-services-grid,
            .ttl5-benefits {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .ttl5-hero-title {
                font-size: 2rem;
            }
            
            .ttl5-btn {
                padding: 14px 30px;
                font-size: 1rem;
            }
            
            .ttl5-section-title {
                font-size: 1.8rem;
            }
        }

/*service 4*/

 
        .ttl4-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .ttl4-header {
            background: linear-gradient(rgba(26, 60, 64, 0.9), rgba(26, 60, 64, 0.9)), url('https://images.unsplash.com/photo-1616486029423-aaa4789e8c9a?q=80') center/cover no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl4-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            
            background-size: 100% 100px;
        }
        
        .ttl4-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 0;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
        }
        
        .ttl4-logo {
           
            font-size: 28px;
            font-weight: 700;
            color: white;
            text-decoration: none;
            padding-left: 20px;
        }
        
        .ttl4-logo span {
            color: var(--accent);
        }
        
        .ttl4-hero-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .ttl4-hero-title {
           
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.1;
            animation: fadeInUp 1s ease-out;
        }
        
        .ttl4-hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }
        
        .ttl4-btn {
            display: inline-block;
            background: var(--accent);
            color: var(--primary);
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }
        
        .ttl4-btn:hover {
            background: #e6c350;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
        }
        
        /* Services Section */
        .ttl4-section {
            padding: 100px 0;
        }
        
        .ttl4-section-title {
          
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl4-section-subtitle {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            color: var(--dark);
            opacity: 0.8;
        }
        
        .ttl4-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .ttl4-service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl4-service-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl4-service-img {
            height: 250px;
            overflow: hidden;
        }
        
        .ttl4-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .ttl4-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .ttl4-service-card:hover .ttl4-service-img img {
            transform: scale(1.1);
        }
        
        .ttl4-service-content {
            padding: 30px;
        }
        
        .ttl4-service-title {
            
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--primary);
            display: flex;
            align-items: center;
        }
        
        .ttl4-service-title i {
            margin-right: 12px;
            color: var(--accent);
            font-size: 1.8rem;
        }
        
        .ttl4-service-desc {
            color: var(--dark);
            margin-bottom: 15px;
            font-size: 0.95rem;
            opacity: 0.8;
        }
        
        /* Design Philosophy */
        .ttl4-philosophy {
            background: linear-gradient(rgba(26, 60, 64, 0.9), rgba(26, 60, 64, 0.9)), url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?q=80') center/cover no-repeat;
            padding: 120px 0;
            color: white;
            position: relative;
            text-align: center;
        }
        
        .ttl4-philosophy-title {
           
            font-size: 2.5rem;
            margin-bottom: 40px;
            position: relative;
            display: inline-block;
        }
        
        .ttl4-philosophy-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--accent);
        }
        
        .ttl4-philosophy-content {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }
        
        .ttl4-philosophy-quote {
            font-style: italic;
            margin: 40px 0;
            padding: 0 20px;
            font-size: 1.3rem;
            position: relative;
        }
        
        .ttl4-philosophy-quote::before,
        .ttl4-philosophy-quote::after {
            content: '"';
            font-size: 3rem;
            color: var(--accent);
            position: absolute;
           
        }
        
        .ttl4-philosophy-quote::before {
            top: -20px;
            left: -10px;
        }
        
        .ttl4-philosophy-quote::after {
            bottom: -40px;
            right: -10px;
        }
        
        /* Why Choose Us */
        .ttl4-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .ttl4-benefit-card {
            background: white;
            border-radius: 10px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .ttl4-benefit-card.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ttl4-benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .ttl4-benefit-icon {
            font-size: 3.5rem;
            color: var(--accent);
            margin-bottom: 25px;
        }
        
        .ttl4-benefit-title {
          
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .ttl4-benefit-desc {
            color: var(--dark);
            opacity: 0.8;
            font-size: 0.95rem;
        }
        
        /* Portfolio Gallery */
        .ttl4-portfolio {
            background-color: #f0ece3;
            padding: 100px 0;
        }
        
        .ttl4-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        
        .ttl4-gallery-item {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }
        
        .ttl4-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }
        
        .ttl4-gallery-item:hover {
            transform: translateY(-10px);
        }
        
        .ttl4-gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Call to Action */
        .ttl4-cta {
            text-align: center;
            padding: 120px 0;
            background: linear-gradient(rgba(26, 60, 64, 0.9), rgba(26, 60, 64, 0.9)), url('https://images.unsplash.com/photo-1503174971373-b1f69850bded?q=80') center/cover no-repeat;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl4-cta-content {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        
        .ttl4-cta-title {
          
            font-size: 2.8rem;
            margin-bottom: 20px;
        }
        
        .ttl4-cta-text {
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }
        
        /* Footer */
        .ttl4-footer {
            background: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .ttl4-footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .ttl4-footer-logo {
           
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .ttl4-footer-logo span {
            color: var(--accent);
        }
        
        .ttl4-footer-about {
            opacity: 0.8;
            margin-bottom: 20px;
        }
        
        .ttl4-footer-title {
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .ttl4-footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: var(--accent);
        }
        
        .ttl4-footer-links {
            list-style: none;
        }
        
        .ttl4-footer-links li {
            margin-bottom: 10px;
        }
        
        .ttl4-footer-links a {
            color: white;
            text-decoration: none;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }
        
        .ttl4-footer-links a:hover {
            opacity: 1;
            color: var(--accent);
        }
        
        .ttl4-footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            opacity: 0.7;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .ttl4-hero-title {
                font-size: 3.2rem;
            }
            
            .ttl4-section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .ttl4-hero-title {
                font-size: 2.5rem;
            }
            
            .ttl4-hero-subtitle {
                font-size: 1.1rem;
            }
            
            .ttl4-section-title {
                font-size: 2.2rem;
            }
            
            .ttl4-section {
                padding: 80px 0;
            }
            
            .ttl4-services-grid,
            .ttl4-benefits {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .ttl4-hero-title {
                font-size: 2rem;
            }
            
            .ttl4-btn {
                padding: 12px 30px;
            }
            
            .ttl4-section-title {
                font-size: 1.8rem;
            }
        }
        
/* service 3 */


  /* TTL3 Classes - Environmental Focus */
        .ttl3-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .ttl3-section {
            background-color: rgba(255, 255, 255, 0.92);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid #e0f2e1;
        }
        
        .ttl3-section:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 100, 83, 0.12);
        }
        
        .ttl3-section-title {
            color: #006655;
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #4caf50;
            position: relative;
            display: inline-block;
        }
        
        .ttl3-section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100px;
            height: 3px;
            background: #ff9800;
        }
        
        /* Service Cards */
        .ttl3-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        
        .ttl3-service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 1;
        }
        
        .ttl3-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 102, 85, 0.15);
        }
        
        .ttl3-service-img {
            height: 220px;
            overflow: hidden;
        }
        
        .ttl3-service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        
        .ttl3-service-card:hover .ttl3-service-img img {
            transform: scale(1.1);
        }
        
        .ttl3-service-content {
            padding: 25px;
        }
        
        .ttl3-service-title {
            color: #006655;
            font-size: 1.4rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .ttl3-service-title i {
            margin-right: 12px;
            color: #4caf50;
            font-size: 1.6rem;
        }
        
        .ttl3-service-desc {
            color: #555;
            margin-bottom: 15px;
        }
        
        /* Why Partner Section */
        .ttl3-benefits-container {
            background: linear-gradient(135deg, #006655 0%, #004d40 100%);
            border-radius: 12px;
            padding: 50px 40px;
            color: white;
            position: relative;
            overflow: hidden;
            margin-top: 50px;
        }
        
        .ttl3-benefits-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1532996122724-e3c354a0b15b?q=80') center/cover;
            opacity: 0.15;
        }
        
        .ttl3-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .ttl3-benefit-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 30px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .ttl3-benefit-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
        }
        
        .ttl3-benefit-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #a5d6a7;
            display: flex;
            align-items: center;
        }
        
        .ttl3-benefit-title i {
            margin-right: 12px;
            color: #ffeb3b;
        }
        
        /* Animation Classes */
        .ttl3-fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .ttl3-slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ttl3-pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }
        
        /* Stats Section */
        .ttl3-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 50px 0;
            text-align: center;
        }
        
        .ttl3-stat-item {
            background: rgba(76, 175, 80, 0.1);
            border-radius: 10px;
            padding: 25px 15px;
            transition: all 0.3s ease;
        }
        
        .ttl3-stat-item:hover {
            background: rgba(76, 175, 80, 0.2);
            transform: translateY(-5px);
        }
        
        .ttl3-stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #006655;
            margin-bottom: 10px;
        }
        
        .ttl3-stat-label {
            font-size: 1.1rem;
            color: #555;
        }
        
        /* Call to Action */
        .ttl3-cta {
            text-align: center;
            padding: 50px 20px;
            margin: 40px 0;
            background: linear-gradient(rgba(0, 102, 85, 0.9), rgba(0, 77, 64, 0.9)), url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?q=80') center/cover;
            border-radius: 12px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .ttl3-cta-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .ttl3-cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #fff;
        }
        
        .ttl3-cta-btn {
            display: inline-block;
            background: #ff9800;
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: 25px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 152, 0, 0.3);
        }
        
        .ttl3-cta-btn:hover {
            background: #ffa726;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .ttl3-section {
                padding: 25px;
            }
            
            .ttl3-section-title {
                font-size: 1.8rem;
            }
            
            .ttl3-services-grid {
                grid-template-columns: 1fr;
            }
            
            .ttl3-cta-title {
                font-size: 1.8rem;
            }
        }
        
        /* Leaf Animation */
        .ttl3-leaf {
            position: absolute;
            z-index: 0;
            opacity: 0.3;
            font-size: 3rem;
            color: #4caf50;
            animation: float 15s infinite linear;
        }
        
        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-30px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }





/* service 2 */

  .ttl2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .ttl2-header {
            background: linear-gradient(rgba(0, 90, 156, 0.8), rgba(0, 90, 156, 0.9)), url('https://via.placeholder.com/1920x600/005a9c/ffffff?text=BIM+Services') center/cover no-repeat;
            color: white;
            padding: 80px 20px;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }
        
        .ttl2-main-title {
            font-size: 2.5rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        
        .ttl2-subtitle {
            font-size: 1.2rem;
            font-weight: normal;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
        }
        
        /* Section Styles */
        .ttl2-section {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 30px;
            margin-bottom: 30px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .ttl2-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }
        
        .ttl2-section-title {
            color: #005a9c;
            border-bottom: 2px solid #e1e1e1;
            padding-bottom: 10px;
            margin-top: 0;
        }
        
        /* Service Cards */
        .ttl2-service-card {
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .ttl2-service-img {
            flex: 1;
            min-width: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        
        .ttl2-service-img:hover {
            transform: scale(1.03);
        }
        
        .ttl2-service-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .ttl2-service-content {
            flex: 2;
            min-width: 300px;
        }
        
        .ttl2-service-title {
            color: #005a9c;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .ttl2-feature-list {
            padding-left: 20px;
        }
        
        .ttl2-feature-item {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .ttl2-feature-item:before {
            content: "✓";
            color: #005a9c;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        
        /* Why Choose Us Section */
        .ttl2-benefits {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        
        .ttl2-benefit-item {
            background-color: #f0f7ff;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #005a9c;
            transition: all 0.3s ease;
        }
        
        .ttl2-benefit-item:hover {
            background-color: #e1f0ff;
            transform: translateY(-3px);
        }
        
        /* Animation Classes */
        .ttl2-fade-in {
            animation: fadeIn 1s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .ttl2-slide-up {
            animation: slideUp 0.8s ease-out;
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Footer */
        .ttl2-footer {
            text-align: center;
            padding: 30px;
            background-color: #333;
            color: white;
            margin-top: 40px;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .ttl2-service-card {
                flex-direction: column;
            }
            
            .ttl2-service-img, .ttl2-service-content {
                min-width: 100%;
            }
            
            .ttl2-header {
                padding: 60px 20px;
            }
        }











  :root {
            --jsfjla-primary: #1a3a5f;
            --jsfjla-secondary: #2c6d93;
            --jsfjla-accent: #ff6b35;
            --jsfjla-light: #f8f9fa;
            --jsfjla-dark: #212529;
            --jsfjla-card-bg: #ffffff;
            --jsfjla-shadow: 0 8px 30px rgba(0,0,0,0.12);
            --jsfjla-mechanical: #3498db;
            --jsfjla-electrical: #f39c12;
            --jsfjla-plumbing: #2ecc71;
            --jsfjla-firefighting: #e74c3c;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
       
        
        .jsfjla-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Header Styles */
        .jsfjla-header {
            background: linear-gradient(120deg, var(--jsfjla-primary) 0%, var(--jsfjla-secondary) 100%);
            color: white;
            padding: 50px 20px;
            text-align: center;
            border-radius: 20px;
            box-shadow: var(--jsfjla-shadow);
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .jsfjla-header::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('../photo/qwertyu (3).png') center/cover no-repeat;
            opacity: 0.15;
            z-index: -1;
        }
        
        .jsfjla-header::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(30deg);
            animation: jsfjla-bg-move 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes jsfjla-bg-move {
            0% { transform: rotate(30deg) translateX(0); }
            100% { transform: rotate(30deg) translateX(100px); }
        }
        
        .jsfjla-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .jsfjla-logo-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(to right, #ff9a9e 0%, #fad0c4 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: white;
            margin-right: 20px;
            animation: jsfjla-logo-pulse 2s infinite alternate;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        @keyframes jsfjla-logo-pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.05); }
        }
        
        .jsfjla-title {
            font-size: 3rem;
            margin-bottom: 10px;
            animation: jsfjla-title-appear 1s ease-out forwards;
            opacity: 0;
            transform: translateY(20px);
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        
        .jsfjla-subtitle {
            font-size: 1.4rem;
            font-weight: 300;
            opacity: 0;
            animation: jsfjla-title-appear 1s 0.3s forwards;
            transform: translateY(20px);
            margin-bottom: 30px;
        }
        
        @keyframes jsfjla-title-appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .jsfjla-contact {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin: 25px 0;
            flex-wrap: wrap;
        }
        
        .jsfjla-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: jsfjla-contact-appear 0.8s 0.3s forwards;
            opacity: 0;
            transform: translateY(20px);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .jsfjla-contact-item:nth-child(2) {
            animation-delay: 0.5s;
        }
        
        @keyframes jsfjla-contact-appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .jsfjla-contact-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .jsfjla-contact-icon {
            font-size: 1.8rem;
            color: var(--jsfjla-accent);
        }
        
        /* Intro Section */
        .jsfjla-intro {
            background: var(--jsfjla-card-bg);
            padding: 40px;
            border-radius: 20px;
            box-shadow: var(--jsfjla-shadow);
            margin-bottom: 50px;
            transform: translateY(20px);
            opacity: 0;
            animation: jsfjla-fade-in 0.8s 0.8s forwards;
            position: relative;
            overflow: hidden;
        }
        
        .jsfjla-intro::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: url('../photo/qwertyu (2).jpg') center/cover no-repeat;
            opacity: 0.1;
        }
        
        @keyframes jsfjla-fade-in {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .jsfjla-intro h2 {
            color: var(--jsfjla-primary);
            margin-bottom: 20px;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
        }
        
        .jsfjla-intro h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 5px;
            background: var(--jsfjla-accent);
            border-radius: 3px;
        }
        
        .jsfjla-intro p {
            font-size: 1.1rem;
            margin-top: 20px;
            color: #444;
            max-width: 800px;
            position: relative;
            z-index: 2;
        }
        
        /* MEPF Cards */
        .jsfjla-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .jsfjla-card {
            background: var(--jsfjla-card-bg);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--jsfjla-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform: translateY(30px);
            opacity: 0;
            animation: jsfjla-card-appear 0.6s forwards;
            position: relative;
        }
        
        .jsfjla-card:nth-child(1) { animation-delay: 0.9s; }
        .jsfjla-card:nth-child(2) { animation-delay: 1.1s; }
        .jsfjla-card:nth-child(3) { animation-delay: 1.3s; }
        .jsfjla-card:nth-child(4) { animation-delay: 1.5s; }
        
        @keyframes jsfjla-card-appear {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .jsfjla-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .jsfjla-card-image {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
            transition: transform 0.5s ease;
        }
        
        .jsfjla-card:hover .jsfjla-card-image {
            transform: scale(1.05);
        }
        
        .jsfjla-card-header {
            padding: 25px 25px 15px;
            position: relative;
            z-index: 2;
        }
        
        .jsfjla-card-header h3 {
            font-size: 1.6rem;
            margin-bottom: 10px;
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .jsfjla-card-header p {
            font-size: 1.05rem;
            color: #555;
            font-weight: 500;
        }
        
        .jsfjla-card-body {
            padding: 0 25px 25px;
        }
        
        .jsfjla-card-body ul {
            list-style-type: none;
        }
        
        .jsfjla-card-body li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            border-bottom: 1px dashed #eee;
            transition: all 0.3s ease;
        }
        
        .jsfjla-card-body li:hover {
            transform: translateX(5px);
            border-color: var(--jsfjla-accent);
        }
        
        .jsfjla-card-body li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 24px;
            height: 24px;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }
        
        /* Color coding for each system */
        .jsfjla-mechanical .jsfjla-card-image { 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                       url('../photo/chil.jpg') center/cover;
        }
        .jsfjla-mechanical .jsfjla-card-body li::before { background-color: var(--jsfjla-mechanical); }
        .jsfjla-mechanical .jsfjla-card-header h3 { color: var(--jsfjla-mechanical); }
        
        .jsfjla-electrical .jsfjla-card-image { 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                       url('../photo/3.jpg') center/cover;
        }
        .jsfjla-electrical .jsfjla-card-body li::before { background-color: var(--jsfjla-electrical); }
        .jsfjla-electrical .jsfjla-card-header h3 { color: var(--jsfjla-electrical); }
        
        .jsfjla-plumbing .jsfjla-card-image { 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                       url('../photo/4.jpg') center/cover;
        }
        .jsfjla-plumbing .jsfjla-card-body li::before { background-color: var(--jsfjla-plumbing); }
        .jsfjla-plumbing .jsfjla-card-header h3 { color: var(--jsfjla-plumbing); }
        
        .jsfjla-firefighting .jsfjla-card-image { 
            background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                       url('../photo/5.jpg') center/cover;
        }
        .jsfjla-firefighting .jsfjla-card-body li::before { background-color: var(--jsfjla-firefighting); }
        .jsfjla-firefighting .jsfjla-card-header h3 { color: var(--jsfjla-firefighting); }
        
        /* Footer */
        .jsfjla-footer {
            text-align: center;
            padding: 30px;
            background: linear-gradient(to right, var(--jsfjla-primary), var(--jsfjla-secondary));
            color: white;
            border-radius: 20px;
            margin-top: 30px;
            box-shadow: var(--jsfjla-shadow);
            opacity: 0;
            animation: jsfjla-fade-in 0.8s 1.8s forwards;
            position: relative;
            overflow: hidden;
        }
        
        .jsfjla-footer::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1519501025264-65ba15a82390?q=80&w=1964') center/cover no-repeat;
            opacity: 0.1;
        }
        
        .jsfjla-footer-content {
            position: relative;
            z-index: 2;
        }
        
        .jsfjla-footer p {
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .jsfjla-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        
        .jsfjla-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .jsfjla-social a:hover {
            background: var(--jsfjla-accent);
            transform: translateY(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .jsfjla-title {
                font-size: 2.5rem;
            }
            
            .jsfjla-subtitle {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .jsfjla-header {
                padding: 40px 20px;
            }
            
            .jsfjla-title {
                font-size: 2.2rem;
            }
            
            .jsfjla-logo {
                flex-direction: column;
                text-align: center;
            }
            
            .jsfjla-logo-icon {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            .jsfjla-contact {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .jsfjla-intro {
                padding: 30px;
            }
            
            .jsfjla-grid {
                grid-template-columns: 1fr;
            }
        }
        



