/* Responsive Design */
        @media (max-width: 768px) {
            .contact-wrapper {
                grid-template-columns: 1fr; /* Stack columns on mobile */
                padding: 20px;
            }
        }
				  .form-container {
            max-width: 500px;  
            margin: 0 auto;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            color: #333;
            font-weight: 700;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .control-label {
            font-weight: 600;
            color: #555;
        }
        
        .form-control {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #4e73df;
            box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
        }
        
        .btn-primary {
            background-color: #4e73df;
            border-color: #4e73df;
            font-weight: 600;
            padding: 12px 20px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #2e59d9;
            border-color: #2653d4;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        /* Notification Popup Styles */
        .notification-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }
        
        .notification-overlay.show {
            opacity: 1;
            visibility: visible;
        }
        
        .notification-popup {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            transform: scale(0.7);
            transition: transform 0.3s;
        }
        
        .notification-overlay.show .notification-popup {
            transform: scale(1);
        }
        
        .notification-icon {
            font-size: 60px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .notification-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .notification-message {
            font-size: 16px;
            color: #666;
            margin-bottom: 25px;
        }
        
        .close-notification {
            background-color: #4e73df;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        
        .close-notification:hover {
            background-color: #2e59d9;
        }
        
        .loading-spinner {
            display: none;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
            margin-right: 10px;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .required-field {
            color: #e74a3b;
        }  table {
            width: 100%;
            border-collapse: collapse;
            margin-bottom: 20px;
        }
        th, td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        th {
            background-color: #f2f2f2;
            font-weight: bold;
        }
        .additional-info {
            margin-top: 30px;
        }
        .info-item {
            margin-bottom: 10px;
        }.product-card {
    transition: all 0.3s ease;
}

.product-card img {
    width: 100%; background: #fff;
    height: 100%;
    object-fit: contain; /* Fix: applied to image */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-card:hover img {
    transform: scale(1.05);
} /* --- About Us Banner Styles --- */
        .about-banner {
            position: relative;
            width: 100%;
            height: 500px; /* Height of the banner */
            display: flex;
            align-items: center;
            justify-content: center;
            
            /* Background Image Setup */
            background-image: url('https://picsum.photos/seed/foundry_dark/1920/1080');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            /* Parallax Effect: Background stays fixed while content scrolls over it */
            background-attachment: fixed; 
        }

        /* Dark Overlay to make text pop */
        .about-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(15, 44, 76, 0.8), rgba(15, 44, 76, 0.6));
            z-index: 1;
        }

        /* Content Wrapper */
        .banner-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: #ffffff;
            max-width: 800px;
            padding: 0 20px;
        }

        /* Breadcrumb (Optional small top text) */
        .breadcrumb {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #c5a059; /* Gold Accent */
            margin-bottom: 15px;
            font-weight: 600;
            display: block;
        }

        /* Main Heading */
        .banner-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin: 0 0 20px 0;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        /* Divider Line */
        .divider {
            width: 80px;
            height: 4px;
            background-color: #c5a059;
            margin: 0 auto 25px auto;
            border-radius: 2px;
        }

        /* Subtitle/Tagline */
        .banner-content p {
            font-size: 1.25rem;
            font-weight: 300;
            line-height: 1.6;
            margin: 0;
            color: #f0f0f0;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .about-banner {
                height: 400px;
                background-attachment: scroll; /* Disable parallax on mobile for better performance */
            }
            
            .banner-content h1 {
                font-size: 2.5rem;
            }

            .banner-content p {
                font-size: 1rem;
            }
        }/* Reset & Typography for this content block */
        .content-wrapper {
            font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            box-sizing: border-box;
        }

        .content-wrapper * {
            box-sizing: border-box;
        }

        .content-wrapper h1, 
        .content-wrapper h2, 
        .content-wrapper h3 {
            margin-top: 0;
            line-height: 1.2;
            color: var(--primary-color);
        }

        .content-wrapper h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            border-bottom: 3px solid var(--accent-color);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .content-wrapper h2 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
            margin-top: 2.5rem;
            position: relative;
            padding-left: 1rem;
        }

        .content-wrapper h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            bottom: 5px;
            width: 4px;
            background-color: var(--accent-color);
            border-radius: 2px;
        }

        .content-wrapper p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-light);
        }

        /* --- Layout Components --- */

        /* Intro Section with Image */
        .intro-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            align-items: center;
        }

        .intro-text .badge {
            display: inline-block;
            background-color: var(--primary-color);
            color: #fff;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .intro-image img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            object-fit: cover;
        }

        /* Feature Cards (Marine & API) */
        .card-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: var(--border-radius);
            border-left: 5px solid var(--primary-color);
            transition: transform 0.2s ease;
        }

        .feature-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.4rem;
        }

        /* Infrastructure & Standards Split */
        .split-section {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: var(--border-radius);
        }

        .infra-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .infra-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #e0e0e0;
            display: flex;
            align-items: center;
        }

        .infra-list li::before {
            content: '✓';
            color: var(--accent-color);
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .standards-box {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            align-content: flex-start;
        }

        .standard-tag {
            background-color: #eef2f5;
            color: var(--primary-color);
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Materials Grid */
        .materials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }

        .material-item {
            background: #fff;
            border: 1px solid #ddd;
            padding: 1rem;
            text-align: center;
            border-radius: var(--border-radius);
            font-weight: 500;
            color: var(--primary-color);
            transition: all 0.2s;
        }

        .material-item:hover {
            border-color: var(--accent-color);
            background-color: var(--bg-light);
        }

        /* Process & Capabilities Section */
        .process-section {
            background:#000;
            color: #fff;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin-top: 3rem;
        }

        .process-section h2 {
            color: #fff;
            border-bottom: none;
            margin-top: 0;
            padding-left: 0;
        }
        
        .process-section h2::before {
            display: none;
        }

        .process-section p {
            color: rgba(255,255,255,0.9);
        }

        .process-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .process-item {
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            border: 1px solid rgba(255,255,255,0.3);
        }

        /* Responsive Adjustments */
        @media (min-width: 768px) {
            .intro-section {
                grid-template-columns: 1fr 1fr;
            }
            .card-grid {
                grid-template-columns: 1fr 1fr;
            }
            .split-section {
                grid-template-columns: 1fr 1fr;
            }
        }/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #F59E0B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d97706;
}

/* Unique Slider Transitions (Curtain Reveal) */
.slide-container {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    transform: scale(1.1);
}

.slide-container.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 10;
}

.slide-content {
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.slide-container.active .slide-content {
    clip-path: inset(0 0% 0 0);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Product Tabs */
.tab-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}
.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #F59E0B;
    transition: width 0.3s ease;
}
.tab-btn.active::after {
    width: 100%;
}
.tab-btn.active {
    color: #F59E0B;
}

/* Hero Text Gradient */
.text-gradient {
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Fade In Up Animation for Tabs */
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fade-in-up 0.5s ease-out forwards;
}