
        :root {
            --primary: #00539B;
            --secondary: #FFD100;
            --accent: #DC4405;
            --dark: #333333;
            --light: #f8f9fa;
        }
        
        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }
        
        .navbar {
            background-color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            color: white;
            font-weight: 700;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: black;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--secondary);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: width 0.3s;
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        /* Slider Section */
        .slider-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100vh;
            background-position: center;
            background-size: cover;
        }
        
        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 83, 155, 0.7), rgba(0, 83, 155, 0.8));
        }
        
        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            width: 80%;
            z-index: 2;
        }
        
        .carousel-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
        }
        
        .carousel-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 5%;
        }
        
        .carousel-indicators {
            bottom: 30px;
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            color: var(--primary);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
        }
        
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .card-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .service-card {
            border-top: 5px solid var(--primary);
            padding: 30px 20px;
            text-align: center;
        }
        
        .training-card {
            border-left: 5px solid var(--secondary);
            padding: 25px;
        }
        
        .accreditation-badge {
            background-color: var(--light);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .accreditation-badge:hover {
            transform: translateY(-5px);
        }
        
        .accreditation-badge i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .bg-light-custom {
            background-color: #f8f9fa;
        }
        
        .footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer h5 {
            color: var(--secondary);
            margin-bottom: 25px;
        }
        
        .footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: var(--secondary);
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #004080;
            border-color: #004080;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .btn-outline-primary {
            color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--accent);
            color: white;
            transform: translateY(-3px);
        }
        
        .logo-section {
            background-color: white;
            padding: 30px 0;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        }
        
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-item {
            margin: 15px 30px;
            text-align: center;
        }
        
        .logo-item img {
            max-height: 80px;
            max-width: 150px;
            filter: grayscale(100%);
            transition: filter 0.3s, transform 0.3s;
        }
        
        .logo-item img:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        
        .service-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
            transition: transform 0.5s;
        }
        
        .card:hover .service-image {
            transform: scale(1.05);
        }
        
        .client-logo {
            max-height: 80px;
            max-width: 150px;
            margin: 20px;
            filter: grayscale(100%);
            transition: all 0.3s;
        }
        
        .client-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        
        .tool-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
        }
        
        .tool-card:hover .tool-image {
            transform: scale(1.05);
        }
        
        .tool-image {
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .counter-section {
            background: linear-gradient(rgba(0, 83, 155, 0.9), rgba(0, 83, 155, 0.9)), url('https://images.unsplash.com/photo-1581094794329-cd6cbb8e2b0d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat fixed;
            color: white;
            padding: 80px 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--secondary);
        }
        
        .counter-text {
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .testimonial-card {
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin-bottom: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--primary);
        }
        
        .testimonial-position {
            color: var(--dark);
            font-size: 0.9rem;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50%;
            right: -10%;
            width: 20%;
            height: 2px;
            background-color: var(--primary);
            z-index: 1;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #004080 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .floating-animation {
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }
        
        .progress-bar-custom {
            background-color: var(--secondary);
        }
        
        .skill-item {
            margin-bottom: 25px;
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
        }
        
        .infrastructure-image {
            height: 350px;
            object-fit: cover;
            width: 100%;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .machinery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .machinery-item {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }
        
        .machinery-item:hover {
            transform: translateY(-5px);
        }
        
        .training-program {
            background: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid var(--primary);
        }
        
        .software-logo {
            max-height: 80px;
            margin: 15px;
            filter: grayscale(100%);
            transition: all 0.3s;
        }
        
        .software-logo:hover {
            filter: grayscale(0%);
            transform: scale(1.1);
        }
        
        .quality-control-image {
            height: auto;
            object-fit: cover;
            width: 100%;
            border-radius: 10px;
        }
        
        .pdf-download-btn {
            position: fixed;
            top: 100px;
            right: 30px;
            z-index: 1000;
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 12px 20px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s;
        }
        
        .pdf-download-btn:hover {
            background-color: #b83705;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
        }
        
        @media (max-width: 768px) {
            .carousel-title {
                font-size: 2.5rem;
            }
            
            .carousel-subtitle {
                font-size: 1.2rem;
            }
            
            .logo-item {
                margin: 10px 15px;
            }
            
            .logo-item img {
                max-height: 60px;
                max-width: 120px;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
            
            .pdf-download-btn {
                top: 80px;
                right: 15px;
                padding: 10px 15px;
                font-size: 0.9rem;
            }
        }
        
        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* PDF-specific styles */
        @media print {
            .navbar, .footer, .back-to-top, .pdf-download-btn, #contactForm {
                display: none !important;
            }
            
            body {
                padding-top: 0;
            }
            
            .slider-section {
                height: auto;
            }
            
            .section-title:after {
                width: 60px;
            }
            
            .card {
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                break-inside: avoid;
            }
            
            .container {
                max-width: 100%;
            }
            
            /* Prevent page breaks inside important sections */
            .counter-section, .cta-section {
                break-inside: avoid;
            }
            
            /* Add page breaks between major sections */
            .py-5 {
                padding-top: 2rem !important;
                padding-bottom: 2rem !important;
            }
        }
        
        /* Custom animations */
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out forwards;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .slide-in-left {
            animation: slideInLeft 0.8s ease-out forwards;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .slide-in-right {
            animation: slideInRight 0.8s ease-out forwards;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .zoom-in {
            animation: zoomIn 0.8s ease-out forwards;
        }
        
        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Parallax backgrounds */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Parallax for Services and Training sections */
        .services-parallax {
            background: linear-gradient(rgba(0, 83, 155, 0.8), rgba(0, 83, 155, 0.8)), url('https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat fixed;
            padding: 100px 0;
        }
        
        .training-parallax {
            background: linear-gradient(rgba(0, 83, 155, 0.8), rgba(0, 83, 155, 0.8)), url('https://images.unsplash.com/photo-1597852074816-d933c7d2b988?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') center/cover no-repeat fixed;
            padding: 100px 0;
        }
		
		.protech-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.pro-red {
    color: #d25424;
}

.tech-black {
    color: #000000;
}

/* Custom CSS for the contact section */
#contact {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e60000 0%, #000000 100%);
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.pro-red {
    color: #e60000;
    font-weight: 700;
}

.tech-black {
    color: #000000;
    font-weight: 700;
}

.company-name {
    font-weight: 600;
    font-size: 1.1em;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    margin-top: 3px;
    min-width: 20px;
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

/* Ensure equal height cards */
.align-items-stretch .card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.align-items-stretch .card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.align-items-stretch .card form .btn {
    margin-top: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

 
        /* Premium CSS Enhancements */
        :root {
            --primary-color: #0056b3;
            --secondary-color: #343a40;
            --accent-color: #dc3545;
            --light-color: #f8f9fa;
            --dark-color: #212529;
            --gradient-primary: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
            --gradient-secondary: linear-gradient(135deg, #343a40 0%, #212529 100%);
            --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
            --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 15px 50px rgba(0, 0, 0, 0.15);
        }

        body {
            font-family: 'Roboto', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .premium-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            padding: 15px 0;
        }

        .premium-nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            padding: 10px 0;
            box-shadow: var(--shadow-medium);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
        }

        .pro-red {
            color: var(--accent-color);
        }

        .tech-black {
            color: var(--dark-color);
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 100%;
        }

        .slider-section {
            position: relative;
            overflow: hidden;
        }

        .carousel-item {
            height: 100vh;
            min-height: 700px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .carousel-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        .carousel-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 2;
            width: 80%;
            max-width: 900px;
        }

        .carousel-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }

        .carousel-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2.5rem;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .btn {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .btn:hover::before {
            width: 100%;
        }

        .btn-light {
            background: white;
            color: var(--primary-color);
            border: 2px solid white;
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary-color);
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }

        .section-title.center {
            text-align: center;
            display: block;
        }

        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .counter-section {
            background: var(--gradient-primary);
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .counter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .counter-section .container {
            position: relative;
            z-index: 1;
        }

        .counter-item {
            padding: 20px;
        }

        .counter-number {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .counter-text {
            font-size: 1.2rem;
            font-weight: 500;
        }

        .card {
            border: none;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
            overflow: hidden;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-image {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .services-parallax {
            background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') fixed;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }

        .services-parallax::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 0;
        }

        .services-parallax .container {
            position: relative;
            z-index: 1;
        }

        .floating-animation {
            animation: floating 3s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .infrastructure-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow-medium);
        }

        .machinery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .machinery-item {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .machinery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .machinery-item h5 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .machinery-item ul {
            padding-left: 20px;
        }

        .machinery-item li {
            margin-bottom: 8px;
            position: relative;
        }

        .machinery-item li::before {
            content: '▸';
            color: var(--primary-color);
            position: absolute;
            left: -15px;
        }

        .quality-control-image {
            width: 100%;
            border-radius: 15px;
            box-shadow: var(--shadow-medium);
        }

        .cta-section {
            background: var(--gradient-secondary);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
        }

        .cta-section .container {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .contact-info p {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-top: 5px;
            min-width: 20px;
        }

        .company-name {
            font-weight: 600;
            font-size: 1.1rem;
        }

        .footer {
            background: var(--dark-color);
            color: white;
            padding: 70px 0 20px;
        }

        .footer h5 {
            color: white;
            margin-bottom: 25px;
            font-weight: 600;
        }

        .footer ul li {
            margin-bottom: 10px;
        }

        .footer ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: white;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 50px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }

        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: var(--accent-color);
            transform: translateY(-5px);
        }

        /* Manufacturing Capabilities Section */
        .manufacturing-capabilities {
            padding: 100px 0;
            background: url('https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') fixed;
            background-size: cover;
            position: relative;
        }

        .manufacturing-capabilities::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 0;
        }

        .manufacturing-capabilities .container {
            position: relative;
            z-index: 1;
        }

        .capability-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: var(--shadow-light);
            backdrop-filter: blur(10px);
        }

        .capability-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
            background: white;
        }

        .capability-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .capability-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--dark-color);
        }

        .capability-card p {
            color: var(--secondary-color);
        }

        /* Product Gallery Section */
        .product-gallery {
            padding: 100px 0;
            background: var(--light-color);
        }

        .gallery-carousel .carousel-item {
            height: auto;
            min-height: auto;
        }

        .gallery-carousel .carousel-item::before {
            display: none;
        }

        .gallery-item {
            padding: 0 15px;
        }

        .gallery-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: var(--shadow-light);
            transition: all 0.3s ease;
        }

        .gallery-img:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-medium);
        }

        .gallery-carousel .carousel-control-prev,
        .gallery-carousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .gallery-carousel .carousel-control-prev {
            left: -25px;
        }

        .gallery-carousel .carousel-control-next {
            right: -25px;
        }

        .gallery-carousel .carousel-control-prev:hover,
        .gallery-carousel .carousel-control-next:hover {
            opacity: 1;
        }

        /* Team Section */
        .team-section {
            padding: 100px 0;
        }

        .team-carousel .carousel-item {
            height: auto;
            min-height: auto;
        }

        .team-member {
            text-align: center;
            padding: 0 15px;
        }

        .team-img {
            width: 200px;
            height: 200px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 20px;
            box-shadow: var(--shadow-medium);
            transition: all 0.3s ease;
        }

        .team-img:hover {
            transform: scale(1.05);
        }

        .team-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

        .team-position {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .team-description {
            color: var(--secondary-color);
        }

        .team-carousel .carousel-control-prev,
        .team-carousel .carousel-control-next {
            width: 50px;
            height: 50px;
            background: var(--primary-color);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.8;
        }

        .team-carousel .carousel-control-prev {
            left: -25px;
        }

        .team-carousel .carousel-control-next {
            right: -25px;
        }

        .team-carousel .carousel-control-prev:hover,
        .team-carousel .carousel-control-next:hover {
            opacity: 1;
        }

        /* File Upload Styling */
        .file-upload-container {
            margin-bottom: 20px;
        }

        .file-upload-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }

        .file-upload-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ced4da;
            border-radius: 5px;
            background-color: #f8f9fa;
        }

        .file-upload-input::file-selector-button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .file-upload-input::file-selector-button:hover {
            background: #004494;
        }

        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .carousel-title {
                font-size: 2.5rem;
            }
            
            .carousel-subtitle {
                font-size: 1.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .counter-number {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .carousel-title {
                font-size: 2rem;
            }
            
            .carousel-subtitle {
                font-size: 1rem;
            }
            
            .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .counter-number {
                font-size: 2rem;
            }
            
            .gallery-carousel .carousel-control-prev,
            .gallery-carousel .carousel-control-next,
            .team-carousel .carousel-control-prev,
            .team-carousel .carousel-control-next {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .carousel-title {
                font-size: 1.8rem;
            }
            
            .carousel-content {
                width: 90%;
            }
            
            .back-to-top {
                bottom: 20px;
                right: 20px;
                width: 40px;
                height: 40px;
            }
        }
        .logo {
        width: 60px;
      }   
     :root {
            --primary: #00539B;
            --secondary: #FFD100;
            --accent: #DC4405;
        }

        .card-container {
            position: relative;
            padding: 20px;
        }

        .animated-border-card {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            z-index: 1;
            border: 1px solid #f0f0f0;
        }

        .animated-border-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 15px;
            background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary), var(--primary));
            background-size: 400% 400%;
            opacity: 0;
            z-index: -1;
            animation: none;
            transition: opacity 0.3s ease;
        }

        .animated-border-card:hover::before {
            opacity: 1;
            animation: rotateBorder 3s linear infinite, gradientShift 3s ease infinite;
        }

        .animated-border-card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: white;
            border-radius: 13px;
            z-index: -1;
        }

        @keyframes rotateBorder {
            0% {
                background-position: 0% 50%;
            }
            100% {
                background-position: 400% 50%;
            }
        }

        @keyframes gradientShift {
            0%, 100% {
                background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary), var(--primary));
            }
            25% {
                background: linear-gradient(45deg, var(--accent), var(--secondary), var(--primary), var(--accent));
            }
            50% {
                background: linear-gradient(45deg, var(--secondary), var(--primary), var(--accent), var(--secondary));
            }
            75% {
                background: linear-gradient(45deg, var(--primary), var(--accent), var(--secondary), var(--primary));
            }
        }

        .animated-border-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .animated-border-card:hover i {
            color: var(--accent);
            transform: scale(1.1);
        }

        .animated-border-card h5 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
            transition: color 0.3s ease;
        }

        .animated-border-card:hover h5 {
            color: var(--primary);
        }

        .animated-border-card p {
            color: #666;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .animated-border-card:hover p {
            color: #444;
        }

        /* Alternative Style - Single Color Border */
        .single-color-card {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
            z-index: 1;
            border: 1px solid #f0f0f0;
        }

        .single-color-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border: 2px solid transparent;
            border-radius: 15px;
            background: linear-gradient(90deg, transparent 50%, var(--primary) 50%);
            background-size: 400% 400%;
            opacity: 0;
            z-index: -1;
            animation: none;
            transition: opacity 0.3s ease;
        }

        .single-color-card:hover::before {
            opacity: 1;
            animation: singleBorder 2s linear infinite;
        }

        .single-color-card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: white;
            border-radius: 13px;
            z-index: -1;
        }

        @keyframes singleBorder {
            0% {
                background-position: 0% 0%;
            }
            100% {
                background-position: 400% 0%;
            }
        }

        /* Simple Border Animation */
        .simple-border-card {
            position: relative;
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .simple-border-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--secondary), var(--primary));
            border-radius: 17px;
            opacity: 0;
            transition: opacity 0.3s ease;
            animation: none;
            z-index: -1;
        }

        .simple-border-card:hover::before {
            opacity: 1;
            animation: rotateConic 2s linear infinite;
        }

        .simple-border-card::after {
            content: '';
            position: absolute;
            top: 2px;
            left: 2px;
            right: 2px;
            bottom: 2px;
            background: white;
            border-radius: 15px;
            z-index: -1;
        }

        @keyframes rotateConic {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }
        
		
