 /* Custom Carousel Styles */
   :root {
            --primary-blue: #2563eb;
            --dark-blue: #1e40af;
            --dark: #1e293b;
            --light: #f8fafc;
            --accent: #f59e0b;
            --gold: #ffcc00;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark);
            background-color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, .nav-pills .nav-link.active {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .hero-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 6rem 0 5rem;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
        }
        
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--dark-blue);
            border-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .nav-pills .nav-link {
            color: var(--dark);
            border-radius: 0.5rem;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            font-weight: 500;
            transition: all 0.3s ease;
            text-align: left;
        }
        
        .nav-pills .nav-link.active {
            background-color: var(--primary-blue);
            color: white;
            box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
        }
        
        .nav-pills .nav-link:hover:not(.active) {
            background-color: rgba(37, 99, 235, 0.1);
        }
        
        .service-card {
            border-radius: 0.75rem;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            border-color: var(--primary-blue);
        }
        
        .service-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(37, 99, 235, 0.1);
            border-radius: 0.75rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            font-size: 1.75rem;
        }
        
        .case-study-card {
            border-radius: 0.75rem;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
        }
        
        .case-study-card .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 1.5rem;
            color: white;
        }
        
        .case-study-card:hover .overlay {
            opacity: 1;
        }
        
        .case-study-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-card {
            background-color: #f8fafc;
            border-radius: 0.75rem;
            padding: 2rem;
            position: relative;
            border-left: 4px solid var(--primary-blue);
        }
        
        .testimonial-card::before {
            content: """;
            position: absolute;
            top: 1.5rem;
            left: 1.5rem;
            font-size: 4rem;
            color: rgba(37, 99, 235, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0.75rem;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 3rem 0;
        }
        
        .highlight {
            color: var(--primary-blue);
        }
        
        .impact-stat {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .stats-section {
            background-color: #f1f5f9;
            padding: 5rem 0;
        }
        
        .stat-card {
            text-align: center;
            padding: 2rem;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .process-step {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 2rem;
        }
        
        .process-step .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 2.5rem;
            height: 2.5rem;
            background-color: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .client-logo {
            filter: grayscale(100%);
            opacity: 0.6;
            transition: all 0.3s ease;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .client-logo:hover {
            filter: grayscale(0);
            opacity: 1;
        }
        
        .project-showcase {
            position: relative;
            overflow: hidden;
            border-radius: 0.75rem;
            height: 400px;
        }
        
        .project-showcase img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .project-showcase:hover img {
            transform: scale(1.05);
        }
        
        .project-showcase .project-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
            color: white;
        }
        
        .filter-controls .btn {
            margin: 0.25rem;
        }
        
        .filter-controls .btn.active {
            background-color: var(--primary-blue);
            color: white;
        }
        
        @media (max-width: 992px) {
            .vertical-tabs {
                flex-direction: column;
            }
            
            .nav-pills {
                flex-direction: row !important;
                overflow-x: auto;
                white-space: nowrap;
                padding-bottom: 1rem;
            }
            
            .nav-pills .nav-link {
                display: inline-block;
                margin-right: 0.5rem;
                margin-bottom: 0;
            }
        }
        
    .slide-banner{height: 70vh;}
    .carousel-item {
      height: 70vh;
      min-height: 500px;
    }
    
    .carousel-item img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      filter: brightness(0.7);
    }
    
    .carousel-caption {
      bottom: 15%;
      position: absolute;
      width: 40%;
      left: 10%;
      right: 10%;
      text-align: left;
      padding: 30px;
      background: rgba(0, 35, 102, 0.8); /* AAA brand blue with transparency */
      border-radius: 10px;
      backdrop-filter: blur(5px);
      transition: all 0.5s ease;
    }
    
    .carousel-caption h2 {
      font-size: 3rem;
      font-weight: 700;
      color: #fff;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
      margin-bottom: 1rem;
    }
    
    .carousel-caption p {
      font-size: 1.2rem;
      color: #fff;
      max-width: 600px;
    }
    
    .carousel-indicators button {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin: 0 8px;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
    }
    
    .carousel-indicators button.active {
      background-color: #D4AF37; /* AAA brand gold */
    }
    
    .btn-cta {
      background-color: #D4AF37;
      color: #002366;
      border: none;
      padding: 12px 30px;
      font-weight: 600;
      border-radius: 50px;
      margin-top: 20px;
      transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
      background-color: #f1c762;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .carousel-control-prev,
    .carousel-control-next {
      width: 50px;
      height: 50px;
      background-color: rgba(0, 35, 102, 0.7);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .hero-carousel:hover .carousel-control-prev,
    .hero-carousel:hover .carousel-control-next {
      opacity: 1;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
      .carousel-item {
        height: 70vh;
      }
      
      .carousel-caption h2 {
        font-size: 2.5rem;
      }
      
      .carousel-caption p {
        font-size: 1.1rem;
      }
    }
    
    @media (max-width: 768px) {
      .carousel-item {
        height: 60vh;
      }
      
      .carousel-caption {
        bottom: 10%;
        padding: 20px;
      }
      
      .carousel-caption h2 {
        font-size: 2rem;
      }
      
      .carousel-caption p {
        font-size: 1rem;
      }
      
      .btn-cta {
        padding: 10px 25px;
      }
    }
    
    @media (max-width: 576px) {
      .slide-banner{height: 40vh;}
      .carousel-item {
        height: 40vh;
        min-height: 400px;
      }
      
      .carousel-caption {
        left: 5%;
        width: 90%;
        right: 5%;
        bottom: 5%;
        visibility: hidden;
      }
      
      .carousel-caption h2 {
        font-size: 1.5rem;
      }
      
      .carousel-caption p {
        font-size: 0.9rem;
      }
    }


    
       /* Features Section */
        .features-section {
            padding: 80px 0;
        }
        
        .feature-box {
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            background: white;
            border-top: 4px solid var(--secondary-color);
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        .carousel-item img {
            height: 500px;
            object-fit: cover;
        }
        .contact-btn {
            background-color: #0d6efd;
            color: white;
            font-weight: bold;
            padding: 10px 25px;
            border-radius: 30px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .contact-btn:hover {
            background-color: #0b5ed7;
            color: white;
        }


        .floating-btns {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        
        .floating-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }
        
        .floating-btn i {
            font-size: 20px;
        }
        
        .floating-btn.whatsapp {
            background: #25D366;
        }
        
        .floating-btn.chat {
            background: var(--secondary-color);
        }
        
        .floating-btn.back-to-top {
            background: var(--dark-color);
        }
        
        .floating-btn .tooltip {
            position: absolute;
            right: 60px;
            background: white;
            color: var(--dark-color);
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .floating-btn:hover .tooltip {
            opacity: 1;
            right: 65px;
        }
        
        @media (max-width: 576px) {
            .floating-btns {
                right: 15px;
                bottom: 15px;
            }
            
            .floating-btn {
                width: 45px;
                height: 45px;
            }
        }
    




        
        .ukh-breaddcrumb-header {
            background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
            color: white;
            padding: 60px 0;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .ukh-breaddcrumb-header h1 {
            font-weight: 700;
            font-size: 2.5rem;
        }
        
        .ukh-breaddcrumb-header p {
            font-size: 1.2rem;
            opacity: 0.9;
        }
