 /* --- Right Column: Query Form --- */
        .contact-form h2 {
            margin-bottom: 20px;
            color: #333;
            font-size: 28px;
            border-bottom: 2px solid #0056b3;
            display: inline-block;
            padding-bottom: 5px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background-color: #0056b3;
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: #004494;
        }

        /* 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;
        } /* =========================================
           TEXT CONTENT SECTION
           ========================================= */
        .text-content-section {
            padding: 60px 0;
            background-color: var(--white);
        }
        .text-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .feature-box {
            background: var(--light);
            padding: 30px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary);
        }
        .feature-box h3 {
            margin-bottom: 15px;
            color: var(--primary);
            font-family: var(--font-head);
        } .clients-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }

    .clients-section h2 {
      font-size: 32px;
      margin-bottom: 30px;
      color: #0177BF;
    }

    .clients-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .client-logo {
      background: #ffffff;
      border-radius: 15px;
      padding: 20px;
      width: 150px;
      height: 100px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .client-logo:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }

    .client-logo img {
      max-width: 100%;
      max-height: 60px;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .client-logo {
        width: 120px;
        height: 90px;
      }
    } .intro-section {
            background: var(--white);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 50px;
            border-left: 5px solid var(--primary);
        }

        .intro-section h3 { margin-bottom: 20px; font-size: 1.5rem; }
        .intro-section p { margin-bottom: 15px; }

        /* --- Gallery Grid --- */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .gallery-item {
            background: var(--white);
            padding: 10px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 4px;
        }
/* --- Design & Development Content Styles --- */
        .design-grid {
            display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
            align-items: start;
        }

        .intro-text {
            margin-bottom: 40px;
            padding: 20px;
            background: var(--white);
            border-left: 5px solid var(--primary);
            box-shadow: var(--shadow);
        }

        .service-card {
            background: var(--white);
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-5px);
            border-bottom: 4px solid var(--primary);
        }

        .service-card h3 {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3rem;
        }

        .service-card h3 i {
            color: var(--primary);
        }

        .feature-list {
            margin-top: 15px;
            padding-left: 20px;
        }

        .feature-list li {
            list-style-type: disc;
            margin-bottom: 5px;
            color: var(--text-light);
        }

        .gallery-image {
            position: sticky;
            top: 100px;
        }

        .gallery-img {
            width: 100%;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
 /* --- Section Specific Containers --- */
        .content-wrapper { display: flex; justify-content: center; align-items: center; flex-direction: column; }
        
        .chart-container, .certificate-container {
            background: var(--white); padding: 40px; border-radius: 10px;
            box-shadow: var(--shadow); text-align: center;
            max-width: 1000px; width: 100%;
            margin-top: 20px;
            position: relative; z-index: 1;
        }
        
        .certificate-container { max-width: 800px; }

        .chart-container img, .certificate-container img {
            width: 100%; height: auto; border-radius: 5px;
        }
  /* --- Single Image Header (Internal Page) --- */
        .page-header {
            position: relative;
            height: 50vh; 
            min-height: 400px;
            /* Using setup_files/moulds.gif from source code or fallback */
            background-image: url('setup_files/moulds.gif'); 
            background-size: cover;
            background-position: center;
            margin-top: 0px; 
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        /* Fallback background if image missing */
        .page-header {
            background-color: #333; 
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }

        .page-header-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            padding: 20px;
        }

        .page-header-content h1 {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        /* --- Setup Overview Grid --- */
        .setup-overview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .overview-card {
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            overflow: hidden;
            border-bottom: 4px solid var(--primary);
            transition: transform 0.3s ease;
        }

        .overview-card:hover {
            transform: translateY(-5px);
        }

        /* Image container for Overview */
        .card-img-container {
            height: 200px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .card-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .overview-card:hover .card-img-container img {
            transform: scale(1.05);
        }

        .overview-content {
            padding: 30px;
            text-align: center;
        }

        .overview-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        .overview-content h3 {
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .overview-list li {
            margin-bottom: 8px;
            color: var(--text-light);
            font-size: 0.95rem;
        }

        /* --- Machinery Grid --- */
        .machinery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .machine-card {
            background: var(--white);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .machine-card:hover {
            transform: translateY(-5px);
        }

        .machine-img {
            height: 200px;
            width: 100%;
            overflow: hidden;
        }

        .machine-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .machine-header {
            background: var(--primary);
            color: var(--white);
            padding: 15px 20px;
        }

        .machine-header h3 {
            color: var(--white);
            font-size: 1.1rem;
            margin: 0;
        }

        .machine-body {
            padding: 20px;
            flex-grow: 1;
        }

        .machine-body ul li {
            margin-bottom: 8px;
            font-size: 0.9rem;
            display: flex;
            justify-content: space-between;
            border-bottom: 1px solid #eee;
            padding-bottom: 4px;
        }

        .machine-body ul li span:first-child {
            font-weight: 600;
            color: var(--text-dark);
        }

        .machine-body ul li span:last-child {
            color: var(--text-light);
            text-align: right;
        }

        /* --- Design & QC Section --- */
        .software-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            margin-top: 20px;
        }

        .software-badge {
            background: #eef2f5;
            padding: 8px 16px;
            border-radius: 50px;
            font-weight: 600;
            color: var(--primary);
            border: 1px solid #ddd;
            font-size: 0.9rem;
        }
 /* --- Utilities --- */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Toast */
        .toast {
            visibility: hidden;
            min-width: 250px;
            background-color: #333;
            color: #fff;
            text-align: center;
            border-radius: 4px;
            padding: 16px;
            position: fixed;
            z-index: 2000;
            left: 50%;
            bottom: 30px;
            transform: translateX(-50%);
            font-size: 17px;
        }

        .toast.show {
            visibility: visible;
            animation: fadein 0.5s, fadeout 0.5s 2.5s;
        }

        .toast.success { background-color: #2ecc71; }

        @keyframes fadein {
            from {bottom: 0; opacity: 0;}
            to {bottom: 30px; opacity: 1;}
        }

        @keyframes fadeout {
            from {bottom: 30px; opacity: 1;}
            to {bottom: 0; opacity: 0;}
        }
 /* --- Features Grid --- */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: var(--white);
            padding: 30px;
            text-align: center;
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 3px solid transparent;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            border-bottom-color: var(--primary);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* --- About Section --- */
        .about-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image img {
            border-radius: 10px;
            box-shadow: var(--shadow);
        }

        .stats-grid {
            display: flex;
            gap: 30px;
            margin-top: 30px;
        }

        .stat-item h4 {
            font-size: 2.5rem;
            color: var(--accent);
        }

        /* --- Founders Section --- */
        .founders-grid {
            display: grid; 
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }

        .founder-card {
            background: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .founder-img {
            height: 300px;
            width: 100%;
            object-fit: cover;
            object-position: top;
        }

        .founder-info {
            padding: 25px;
        }

        .founder-info h3 {
            margin-bottom: 5px;
            font-size: 1.4rem;
        }

        .founder-info .role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
            font-size: 0.9rem;
        }

        .founder-info p {
            font-size: 0.95rem;
            color: var(--text-light);
            text-align: justify;
        }

        /* --- 2D Animation Showcase (Die Casting Process) --- */
        .animation-showcase {
            background: #1a1a1a;
            color: white;
            overflow: hidden;
        }

        .animation-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
            align-items: center;
        }

        .anim-controls {
            flex: 1;
            min-width: 300px;
            padding: 20px;
        }

        .anim-controls h3 { color: white; margin-bottom: 20px; }
        .anim-controls p { margin-bottom: 30px; color: #ccc; }

        .anim-stage {
            width: 400px;
            height: 300px;
            background: #2a2a2a;
            border: 2px solid #444;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            margin: 0 auto;
        }

        /* Die Casting CSS Animation Elements */
        .die-top, .die-bottom {
            width: 200px;
            height: 40px;
            background: #555;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 4px;
            z-index: 2;
        }
        .die-top { top: 40px; transition: top 2s ease-in-out; border-bottom: 4px solid var(--primary); }
        .die-bottom { bottom: 40px; border-top: 4px solid var(--primary); }
        
        .cavity {
            width: 100px;
            height: 80px;
            background: #222;
            position: absolute;
            left: 50%;
            top: 80px;
            transform: translateX(-50%);
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px dashed #444;
        }

        .molten-metal {
            width: 0%;
            height: 100%;
            background: linear-gradient(to top, #ff9900, #ffcc00);
            position: absolute;
            bottom: 0;
            left: 0;
            transition: width 2s ease-in-out 2s; /* Delay until closed */
            opacity: 0.9;
        }

        .part {
            width: 100px;
            height: 80px;
            background: #silver; /* Final part color */
            position: absolute;
            left: 50%;
            bottom: 40px;
            transform: translateX(-50%);
            z-index: 1;
            opacity: 0;
            transition: all 1s ease 5s;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
            background: #d1d1d1;
        }

        /* Animation States */
        .anim-stage.running .die-top {
            top: 80px; /* Close Die */
        }
        .anim-stage.running .molten-metal {
            width: 100%; /* Fill */
        }
        .anim-stage.running .part {
            bottom: 150px; /* Eject */
            opacity: 1;
        }
        .anim-stage.running .cavity {
            opacity: 0; /* Hide cavity placeholder */
        }

        .anim-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            margin-right: 10px;
        }
        .anim-btn:disabled { background: #555; cursor: not-allowed; }


        /* --- Contact --- */
        .contact-section {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .contact-section h2, .contact-section p {
            color: var(--white);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-item {
            display: flex;
            margin-bottom: 30px;
            align-items: flex-start;
        }

        .contact-item i {
            font-size: 1.5rem;
            margin-right: 20px;
            color: #ffcc00; /* Gold accent */
            margin-top: 5px;
        }

        .enquiry-form {
            background: var(--white);
            padding: 30px;
            border-radius: 8px;
            color: var(--text-dark);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-family: inherit;
        }

        .btn-submit {
            background: var(--primary);
            color: var(--white);
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-weight: 600;
            transition: background 0.3s;
        }

        .btn-submit:hover {
            background: var(--primary-dark);
        }
/* --- CSS Variables & Reset --- */
:root {
    --primary-color: #0f172a; /* Dark Navy */
    --secondary-color: #1e293b; /* Slate */
    --accent-color: #E41327; /* Industrial Amber */
    --text-light: #f8fafc;
    --text-dark: #334155;
    --bg-light: #f1f5f9;
    --transition: all 0.3s ease;--primary: #804000; /* Classic Brown */
            --primary-dark: #5a2d00;
            --accent: #0066CC;
            --text-dark: #333333;
            --text-light: #666666;
            --bg-light: #f9f9f9;
            --white: #ffffff;
            --shadow: 0 4px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* --- Utility Classes for Animation --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Header & Navigation --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 8px 5%;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar span { margin-right: 20px; }
.top-bar i { margin-right: 5px; color: var(--accent-color); }

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i { color: var(--accent-color); }

/* Dropdown Menu Styles */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 0;
    display: block;
    transition: var(--transition);
}

.nav-link:hover { color: var(--accent-color); }
.nav-link i { font-size: 0.8em; margin-left: 5px; }

/* The Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    border-top: 3px solid var(--accent-color);
    z-index: 100;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    transition: var(--transition);
}

.dropdown li a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
    padding-left: 25px; /* Slide effect */
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { opacity: 1; }

/* Dark overlay for text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15, 23, 42, 0.6);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.slide-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.5s;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.7s;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--accent-color);
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0;
    transform: translateY(30px);
    transition-delay: 0.9s;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Slide Active State for Text Animation */
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .btn-primary {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active { background-color: var(--accent-color); transform: scale(1.2); }

/* --- Features Section --- */
.section { padding: 80px 5%; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.section-header h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.feature-card h3 { margin-bottom: 15px; color: var(--primary-color); }

/* --- About Section --- */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-image { flex: 1; min-width: 300px; border-radius: 10px; overflow: hidden; }
.about-image img { width: 100%; height: auto; transition: transform 0.5s; }
.about-image:hover img { transform: scale(1.05); }

.about-text { flex: 1; min-width: 300px; }
.about-text h3 { font-size: 1.8rem; color: var(--primary-color); margin-bottom: 20px; }
.about-text p { margin-bottom: 20px; color: #64748b; }
.stats-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}
.stat-item {
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}
.stat-item h4 { font-size: 2rem; color: var(--primary-color); margin-bottom: 5px; }
.stat-item span { font-size: 0.9rem; text-transform: uppercase; color: #64748b; }

/* --- Products Preview --- */
.products-bg { background-color: var(--bg-light); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.product-card:hover { transform: translateY(-5px); }

.product-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.product-info { padding: 25px; }
.product-info h3 { color: var(--primary-color); margin-bottom: 10px; }
.product-info p { color: #64748b; font-size: 0.9rem; margin-bottom: 20px; }

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.read-more:hover { gap: 10px; }

/* --- Contact Section --- */
.contact-section { background: var(--primary-color); color: #fff; }
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info, .enquiry-form { flex: 1; min-width: 300px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
}
.contact-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-top: 5px;
}

.form-group { margin-bottom: 20px; }
.form-control {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    transition: var(--transition);
}
.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255,255,255,0.1);
}

.btn-submit {
    background-color: var(--accent-color);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}
.btn-submit:hover { background-color: #d97706; }

/* --- Footer --- */
footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 60px 5% 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #1e293b;
    padding-bottom: 40px;
}

.footer-col h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--accent-color); }

.copyright { text-align: center; }

/* --- Toast Notification --- */
.toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 16px;
    position: fixed;
    z-index: 2000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    font-size: 17px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.5s, bottom 0.5s;
}
.toast.show { visibility: visible; opacity: 1; bottom: 50px; }
.toast.success { background-color: #10b981; }

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px;
    }
    .nav-menu.active { display: flex; }
    
    .mobile-toggle { display: block; }
    
    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: var(--bg-light);
        padding-left: 20px;
        border-top: none;
    }
    
    .nav-item:hover .dropdown { display: block; }
    
    .slide-content h1 { font-size: 2.5rem; }
    
    .top-bar { flex-direction: column; gap: 5px; text-align: center; }
}