 /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #ff6b00;
            color: white;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: #e45e00;
            transform: translateY(-2px);
        }
        
        /* Header Styles */
        .top-bar {
            background-color: #2c3e50;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .contact-info span {
            margin-right: 20px;
        }
        
        .social-icons a {
            color: white;
            margin-left: 15px;
            font-size: 16px;
        }
        
        .header-main {
            padding: 15px 0;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
        }
        
        .logo span {
            color: #ff6b00;
        }
        
        .nav-menu {
            display: flex;
        }
        
        .nav-menu li {
            margin: 0 15px;
        }
        
        .nav-menu a {
            color: #2c3e50;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .nav-menu a:hover {
            color: #ff6b00;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('logibg.jpg') center/cover no-repeat;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        /* Content Sections */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 36px;
            /* color: #2c3e50; */
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background-color: #ff6b00;
        }
        
        .section-title p {
            /* color: #777; */
            max-width: 700px;
            margin: 0 auto;
        }
        
        .two-column {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .two-column .image {
            flex: 1;
        }
        
        .two-column .image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .two-column .content {
            flex: 1;
        }
        
        .two-column .content h2 {
            font-size: 32px;
            margin-bottom: 20px;
            color: #2c3e50;
        }
        
        .two-column .content p {
            margin-bottom: 20px;
            color: #555;
        }
        
        /* Services Icons */
        .services-icons {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
        }
        
        .service-icon {
            text-align: center;
            width: 200px;
            margin: 20px;
        }
        
        .service-icon i {
            font-size: 40px;
            color: #ff6b00;
            margin-bottom: 15px;
        }
        
        .service-icon h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        /* Quote Form */
        .quote-form {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            margin-top: 40px;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
        }
        
        .service-card i {
            font-size: 50px;
            color: #ff6b00;
            margin-bottom: 20px;
        }
        
        .service-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .service-card p {
            color: #666;
        }
        
        .service-card-content {
            padding: 30px;
            text-align: center;
        }
        
        /* Why Choose Us */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature {
            text-align: center;
            padding: 20px;
        }
        
        .feature i {
            font-size: 40px;
            color: #ff6b00;
            margin-bottom: 20px;
        }
        
        .feature h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }
        
        /* Reviews */
        .reviews-container {
            overflow: hidden;
            position: relative;
            height: 250px;
        }
        
        .reviews {
            display: flex;
            animation: slide 20s infinite;
        }
        
        .review {
            min-width: 100%;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-right: 30px;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .reviewer img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 10px;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            25% { transform: translateX(-100%); }
            50% { transform: translateX(-200%); }
            75% { transform: translateX(-300%); }
            100% { transform: translateX(0); }
        }
        
        /* Clients */
        .clients {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .client-logo {
            margin: 15px;
			opacity: 1;
            filter: grayscale(0%);
           
        }
        
        .client-logo:hover {
             opacity: 0.6;
            transition: opacity 0.3s ease;
            filter: grayscale(100%);
        }
        
        .client-logo img {
            height: 60px;
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 70px 0 0;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-column h3 {
            font-size: 20px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ff6b00;
        }
        
        .footer-column p, .footer-column li {
            margin-bottom: 10px;
            color: #ccc;
        }
        
        .footer-column li {
            margin-bottom: 12px;
        }
        
        .footer-column i {
            margin-right: 10px;
            color: #ff6b00;
        }
        
        .footer-bottom {
            background-color: #1a2530;
            padding: 20px 0;
            text-align: center;
            margin-top: 50px;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #ff6b00;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 1000;
        }
        
        .back-to-top.visible {
            opacity: 1;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .two-column {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 36px;
            }
            
            .hero p {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            .logo {
                margin-bottom: 15px;
            }
            
            .nav-menu {
                margin: 20px 0;
            }
            
            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 28px;
            }
            
            .section {
                padding: 50px 0;
            }
        }



            /* Custom class to ensure uniform logo sizing */
    .partner-card {
        @apply bg-white border border-gray-100 rounded-xl p-6 
               flex items-center justify-center transition-all duration-300 
               hover:shadow-lg hover:-translate-y-1;
    }
    
    .logo-wrapper {
        @apply w-full aspect-[3/2] flex items-center justify-center overflow-hidden;
    }

    .partner-img {
        @apply w-full h-full object-contain grayscale opacity-60 
               group-hover:grayscale-0 group-hover:opacity-100 transition-all duration-500;
    }

    .partner-img{
        width: 100%;
    }


    /* .text-blue-600 {
    --text-opacity: 1;
    color: #E45E00;
} */