 :root {
            --primary-orange: #F5821F;
            --primary-blue: #00AEEF;
            --gray: #939598;
            --black: #000000;
            --white: #FFFFFF;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--black);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
        }
.brand-logo img {
    width: 76px;
}
        /* Top Header */
        .top-header {
            background: var(--black);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .top-header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .top-contact-info {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .top-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .top-contact-item i {
            color: var(--primary-orange);
        }

        .top-social {
            display: flex;
            gap: 15px;
        }

        .top-social a {
            color: var(--white);
            transition: all 0.3s;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
        }

        .top-social a:hover {
            background: var(--primary-orange);
            transform: translateY(-2px);
        }
        
        /* Main Navbar */
        .main-navbar {
            background: var(--white) !important;
            padding: 15px 0;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s;
        }

        .main-navbar.scrolled {
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
        }
        
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--black) !important;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .brand-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);
        }

        .brand-logo i {
            color: var(--white);
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--black) !important;
            font-weight: 600;
            margin: 0 15px;
            transition: all 0.3s;
            position: relative;
            padding: 8px 0 !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
            transition: width 0.3s;
        }
        
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        
        .btn-navbar {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            color: var(--white);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 700;
            border: none;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(245, 130, 31, 0.3);
        }
        
        .btn-navbar:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 130, 31, 0.4);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            margin-top: 0;
        }

       .hero-slide {
    position: relative;
    height: 100%;
    min-height: 400px;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
}
        .hero-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(245,130,31,0.4));
        }

        .slide-1 {
            background: url(/img/b11.png);
            background-size: cover !important;
        }

        .slide-2 {
               background: url(/img/b22.png);
                background-size: cover !important;
        }

        .slide-3 {
                 background: url(/img/b33.png);
                  background-size: cover !important;
        }
        .slide-4 {
                 background: url(/img/b44.png);
                  background-size: cover !important;
        }
        .slide-5 {
                 background: url(/img/b55.png);
                  background-size: cover !important;
        }
        .slide-6 {
                 background: url(/img/b66.png);
                  background-size: cover !important;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            max-width: 900px;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 20px;
            font-weight: 600;
            border: 1px solid rgba(255,255,255,0.2);
        }
        
      .hero-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.5);
}
        
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
   .hero-subtitle {
    font-size: 18px;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.6;
    display: block;
}
        
      .hero-cta-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    display: block;
}
        
        .btn-hero-primary {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            color: var(--white);
            padding: 18px 45px;
            font-size: 1.15rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            transition: all 0.4s;
            box-shadow: 0 8px 25px rgba(245,130,31,0.4);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-hero-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(245,130,31,0.5);
        }
        
        .btn-hero-secondary {
            background: transparent;
            color: var(--white);
            padding: 18px 45px;
            font-size: 1.15rem;
            font-weight: 700;
            border: 3px solid var(--white);
            border-radius: 50px;
            transition: all 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        
        .btn-hero-secondary:hover {
            background: var(--white);
            color: var(--primary-orange);
            transform: translateY(-5px);
        }

        .trust-badges-hero {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .badge-item i {
            font-size: 1.5rem;
            color: var(--primary-blue);
        }

        /* Slick Slider Custom Styles */
        .slick-dots {
            bottom: 30px;
        }

        .slick-dots li button:before {
            font-size: 12px;
            color: var(--white);
            opacity: 0.5;
        }

        .slick-dots li.slick-active button:before {
            color: var(--primary-orange);
            opacity: 1;
        }

        .slick-prev, .slick-next {
            width: 50px;
            height: 50px;
            z-index: 10;
        }

        .slick-prev {
            left: 40px;
        }

        .slick-next {
            right: 40px;
        }

        .slick-prev:before, .slick-next:before {
            font-size: 40px;
            color: var(--white);
        }
        
        /* About Section */
  .about-section {
    padding: 60px 0;
    background: var(--white);
    padding-top: 0;
}
        
        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(245,130,31,0.1), rgba(0,174,239,0.1));
            color: var(--primary-orange);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-title {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .section-title .highlight {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-desc {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 2rem;
        }
        
        .stats-grid {
            margin-top: 4rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 20px;
            border-radius: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, var(--white) 100%);
            border: 2px solid transparent;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-orange), var(--primary-blue));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .stat-card:hover::before {
            transform: scaleX(1);
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-orange);
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 1.1rem;
            color: var(--gray);
            font-weight: 600;
        }
        
        /* Services Section */
     .services-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, var(--white) 100%);
}
        .service-card {
            background: var(--white);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 2px solid transparent;
        }

        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }

        .service-image {
            width: 100%;
            height: 280px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .service-card:nth-child(1) .service-image {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .service-card:nth-child(2) .service-image {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }

        .service-card:nth-child(3) .service-image {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }

        .service-card:nth-child(4) .service-image {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }

        .service-card:nth-child(5) .service-image {
            background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
        }

        .service-card:nth-child(6) .service-image {
            background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
        }

        .service-image::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.2);
            transition: all 0.4s;
        }

        .service-card:hover .service-image::before {
            background: rgba(0,0,0,0);
        }

        .service-image i {
            font-size: 5rem;
            color: var(--white);
            position: relative;
            z-index: 1;
        }

        .service-content {
            padding: 35px 30px;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: var(--black);
        }
        
        .service-desc {
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.7;
        }
        
        .btn-service {
            color: var(--primary-orange);
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-service:hover {
            color: var(--primary-blue);
            gap: 15px;
        }
        
        /* Why Section */
  .why-section {
    padding: 60px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
        .why-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(245,130,31,0.1), transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(0,174,239,0.1), transparent 50%);
        }

        .why-section .container {
            position: relative;
            z-index: 1;
        }
        
    .usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
        
        .usp-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            padding: 40px 35px;
            border-radius: 20px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .usp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
            transition: height 0.4s;
        }

        .usp-card:hover::before {
            height: 100%;
        }
        
        .usp-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-10px);
            border-color: var(--primary-orange);
        }

        .usp-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            box-shadow: 0 8px 20px rgba(245,130,31,0.3);
        }

        .usp-icon i {
            font-size: 2rem;
            color: var(--white);
        }
        
        .usp-card h4 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--white);
            font-weight: 700;
        }
        
        .usp-card p {
            color: rgba(255,255,255,0.8);
            margin: 0;
            line-height: 1.7;
        }
        
        /* Portfolio */
       .portfolio-section {
    padding: 60px 0;
    background: var(--white);
}
    .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
        
       .portfolio-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4 / 2;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
        .portfolio-img {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
            transition: all 0.4s;
        }
        
        .portfolio-card:nth-child(2) .portfolio-img {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .portfolio-card:nth-child(3) .portfolio-img {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .portfolio-card:nth-child(4) .portfolio-img {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
        }
        
        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent, rgba(0,0,0,0.95));
            display: flex;
            align-items: flex-end;
            padding: 40px;
            opacity: 0;
            transition: all 0.4s;
        }
        
        .portfolio-card .portfolio-overlay {
            opacity: 1;
        }
        
        .portfolio-card .portfolio-img {
            transform: scale(1.15);
        }
        
        .portfolio-info h4 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .portfolio-info p {
            color: var(--primary-blue);
            margin: 0;
            font-weight: 600;
        }
        
        /* Testimonials */
      .testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.05), rgba(0, 174, 239, 0.05));
}
        .testimonial-card {
            background: var(--white);
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            margin: 20px;
            position: relative;
            border: 2px solid transparent;
            transition: all 0.4s;
        }

        .testimonial-card:hover {
            border-color: var(--primary-orange);
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.12);
        }
        
        .quote-icon {
            font-size: 4rem;
            color: var(--primary-orange);
            opacity: 0.15;
            position: absolute;
            top: 30px;
            right: 40px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: var(--gray);
            margin-bottom: 30px;
            font-size: 1.15rem;
            line-height: 1.8;
        }
        
        .client-info {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .client-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--white);
            font-weight: 800;
            box-shadow: 0 5px 15px rgba(245,130,31,0.3);
        }
        
        .client-name {
            font-weight: 800;
            color: var(--black);
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .client-project {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        /* Redesigned Process Section */
       .process-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(245, 130, 31, 0.03), rgba(0, 174, 239, 0.03));
    position: relative;
    overflow: hidden;
}

        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(245,130,31,0.05), transparent 30%),
                radial-gradient(circle at 80% 70%, rgba(0,174,239,0.05), transparent 30%);
        }

        .process-container {
            position: relative;
            z-index: 1;
        }

        .process-timeline-new {
            position: relative;
            margin-top: 80px;
            padding: 40px 0;
        }

        .process-timeline-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, 
                var(--primary-orange), 
                var(--primary-blue));
            border-radius: 2px;
        }

        .process-step-new {
            position: relative;
            margin-bottom: 100px;
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .process-step-new:last-child {
            margin-bottom: 0;
        }

        .process-step-content {
            width: 45%;
            padding: 40px;
            background: var(--white);
            border-radius: 25px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            position: relative;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .process-step-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(0,0,0,0.15);
            border-color: var(--primary-orange);
        }

        .process-step-new:nth-child(odd) .process-step-content {
            margin-right: auto;
        }

        .process-step-new:nth-child(even) .process-step-content {
            margin-left: auto;
        }

        .step-number {
            position: absolute;
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--white);
            box-shadow: 0 10px 30px rgba(245,130,31,0.3);
            top: -40px;
            z-index: 2;
        }

        .process-step-new:nth-child(odd) .step-number {
            right: -40px;
        }

        .process-step-new:nth-child(even) .step-number {
            left: -40px;
        }

        .step-icon {
            position: absolute;
            font-size: 1.8rem;
            color: rgba(255,255,255,0.9);
        }

        .process-step-content h4 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--black);
            line-height: 1.3;
        }

        .process-step-content p {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-size: 1.05rem;
        }

        .step-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .step-feature {
            background: rgba(245,130,31,0.08);
            color: var(--primary-orange);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .step-feature i {
            font-size: 0.8rem;
        }

        /* Process Stats Bar */
        .process-stats-bar {
            display: flex;
            justify-content: space-between;
            background: var(--white);
            padding: 30px;
            border-radius: 20px;
            margin-top: 80px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 2px solid rgba(245,130,31,0.1);
        }

        .stat-item {
            text-align: center;
            flex: 1;
            padding: 0 20px;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: rgba(0,0,0,0.1);
        }

        .stat-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            color: var(--white);
            font-size: 1.3rem;
        }

        .stat-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.95rem;
            font-weight: 600;
        }

        /* Mobile Responsive for Process */
        @media (max-width: 992px) {
            .process-timeline-new::before {
                left: 30px;
            }
            
            .process-step-content {
                width: calc(100% - 80px);
                margin-left: 80px !important;
                margin-right: 0 !important;
            }
            
            .process-step-new:nth-child(odd) .step-number,
            .process-step-new:nth-child(even) .step-number {
                left: -40px;
                right: auto;
            }
            
            .process-stats-bar {
                flex-wrap: wrap;
                gap: 30px;
            }
            
            .stat-item {
                flex: 0 0 calc(50% - 15px);
            }
            
            .stat-item:nth-child(even)::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .process-step-content {
                padding: 30px 20px;
            }
            
            .process-step-content h4 {
                font-size: 1.3rem;
            }
            
            .stat-item {
                flex: 0 0 100%;
            }
            
            .stat-item::after {
                display: none;
            }
        }

        /* Remove old process styles */
        .old-process {
            display: none;
        }
        
        /* Contact */
      .contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--black), #1a1a1a);
    color: var(--white);
}
        
        .contact-info-card {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            padding: 40px;
            border-radius: 25px;
            margin-bottom: 30px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            transition: all 0.3s;
        }

        .contact-item:last-child {
            margin-bottom: 0;
        }

        .contact-item:hover {
            background: rgba(255,255,255,0.08);
            transform: translateX(10px);
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-icon i {
            font-size: 1.5rem;
            color: var(--white);
        }
        
        .form-control, .form-select {
            background: rgba(255,255,255,0.08);
            border: 2px solid rgba(255,255,255,0.1);
            color: var(--white);
            padding: 18px;
            border-radius: 15px;
            margin-bottom: 25px;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            background: rgba(255,255,255,0.12);
            border-color: var(--primary-orange);
            color: var(--white);
            box-shadow: 0 0 0 0.2rem rgba(245,130,31,0.25);
        }
        
        .form-control::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .form-select option {
            background: var(--black);
            color: var(--white);
        }
        
        .btn-submit {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            color: var(--white);
            padding: 18px 50px;
            font-size: 1.2rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            width: 100%;
            transition: all 0.4s;
            box-shadow: 0 8px 25px rgba(245,130,31,0.4);
        }
        
        .btn-submit:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(245,130,31,0.5);
        }
        
        .map-container {
            border-radius: 25px;
            overflow: hidden;
            height: 450px;
            background: rgba(255,255,255,0.05);
            margin-top: 30px;
        }
        
        /* Footer */
        .footer {
            background: var(--black);
            color: rgba(255,255,255,0.7);
            padding: 60px 0 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer h5 {
            color: var(--white);
            font-weight: 800;
            margin-bottom: 25px;
            font-size: 1.3rem;
        }

        .footer h6 {
            color: var(--white);
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a::before {
            content: '→';
            color: var(--primary-orange);
            opacity: 0;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--primary-orange);
            transform: translateX(10px);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .social-links a {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
            transform: translateY(-5px);
            border-color: transparent;
        }

        .copyright {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
            color: rgba(255,255,255,0.5);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .slick-prev {
                left: 20px;
            }

            .slick-next {
                right: 20px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
            
            .hero-cta-group {
                flex-direction: column;
            }
            
            .btn-hero-primary, 
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
            }

            .top-header-content {
                justify-content: center;
            }

            .top-contact-info {
                flex-direction: column;
                gap: 10px;
            }.top-contact-info {
    display: none;
}.trust-badges-hero {
    display: none;
}.hero-slide {
    position: relative;
    height: 100%;
    min-height: 100%;
    display: flex !important;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}.slick-prev, .slick-next {
    display: none;
}.about-section {
    padding: 60px 0;
    background: var(--white);
    padding-top: 0;
}section#about .col-lg-6.mb-5.mb-lg-0 {
    margin: 0 !important;
}.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    gap: 30px;
    margin-top: 60px;
}.portfolio-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}.portfolio-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}.brand-logo img {
    width: 100%;
}.brand-logo {
    width: 61px;
    height: 55px;
    background: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}.slick-prev, .slick-next {
    display: none !important;
}ul.slick-dots {
    display: none !important;
}.main-navbar {
    background: var(--white) !important;
    padding: 6px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}
        }
        
        /* =========================================
   CLIENTS LOGOS – Professional & Clean
========================================= */
.clients-section {
  overflow: hidden;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.lead-sm {
  font-size: 1.125rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.clients-logos-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 60px;
    padding: 35px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    gap: 0;
}

.clients-row:last-child {
  border-bottom: none;
  padding-bottom: 20px;
}

.client-logo {
    flex: 0 0 auto;
    width: 169px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.28s ease;
}

.client-logo:hover {
  transform: translateY(-6px);
  filter: grayscale(0%) opacity(1);
}

.client-logo img {
    max-width: 100%;
    max-height: 85px;
    height: auto;
    width: auto;
    object-fit: contain;
}

/* ── Responsive adjustments ──────────────────────── */
@media (max-width: 991px) {
  .clients-row {
    gap: 30px 50px;
  }
  .client-logo {
    width: 120px;
  }
}

@media (max-width: 767px) {
  .clients-row {
    gap: 25px 40px;
    padding: 25px 0;
  }
  .client-logo {
    width: 110px;
  }
  .client-logo img {
    max-height: 52px;
  }
}

@media (max-width: 575px) {
  .clients-row {
    gap: 20px 30px;
  }
  .client-logo {
    width: 100px;
  }
}@media (max-width: 575px) {
    .clients-row {
        gap: 0;
    }
}