* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 25, 45, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 15px 5%;
}

.nav-logo img {
    height: 60px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;

    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-link:hover {
    color: #FF6B00;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #FF6B00;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #FF6B00;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('images/bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    animation: zoomBackground 10s ease-in-out infinite alternate;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #FF6B00;
    color: #FF6B00;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B00;
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0f192d;
    margin-bottom: 20px;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    color: #0f192d;
    margin-bottom: 30px;
}

.about-text p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #0f192d;
    font-weight: 500;
}

.feature i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}

.image-placeholder {
    width: 500px;
    height: 400px;
    background: linear-gradient(135deg, #0f192d 0%, #1a365d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 500 400"><rect fill="%23FF6B00" opacity="0.1" width="500" height="400" rx="20"/><circle fill="%23FF6B00" opacity="0.2" cx="100" cy="100" r="60"/><circle fill="%23FF6B00" opacity="0.1" cx="400" cy="300" r="80"/></svg>');
}

.image-placeholder i {
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    position: relative;
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f1edeb 0%, #FF8C42 100%);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.2);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0f192d;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* Products Section */
.products {
    padding: 120px 0;
    background: #f8fafc;
}

.products-slider {
    overflow: hidden;
}

.slider-container {
    position: relative;
}


.slider-track {
    display: flex;
    gap: 30px;
    width: max-content;

    animation: autoScroll 25s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes autoScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.product-slide { width: 350px; flex-shrink: 0; }

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0f192d 0%, #1a365d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: #FF6B00;
}

.product-card h3 {
    font-size: 1.4rem;
    color: #0f192d;
    margin-bottom: 15px;
}

.product-card p {
    color: #666;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: none;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* Projects Section */
.projects {
    padding: 120px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    display: flex;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.project-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0f192d 0%, #1a365d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FF6B00;
}

.project-info {
    padding: 30px;
    flex: 1;
}

.project-info h3 {
    font-size: 1.4rem;
    color: #0f192d;
    margin-bottom: 10px;
}

.project-info p {
    color: #666;
    margin-bottom: 15px;
}

.project-year {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Clients Section */
.clients {
    padding: 120px 0;
    background: #f8fafc;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.client-logo {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.15);
}

.logo-placeholder {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f192d;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f192d 0%, #1a365d 100%);
    color: white;
}

.contact .section-header h2 {
    color: white;
}

.contact .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #FF6B00;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Footer */
.footer {
    background: #0a1421;
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B00;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FF6B00;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}


.email-btn {
    position: fixed;
    bottom: 95px; /* posisi di atas whatsapp */
    right: 20px;

    width: 60px;
    height: 60px;

    background: #FF6B00;
    color: white;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 25px;

    text-decoration: none;

    z-index: 999;
}
/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(15, 25, 45, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 40px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .product-slide { width: 350px; flex-shrink: 0; }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .about,
    .services,
    .products,
    .projects,
    .clients,
    .contact {
        padding: 80px 0;
    }
}

/* Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
.footer-logo img {
    height: 60px;
    width: auto;
}
.nav-logo img {
    height: 60px;
    width: auto;
}
.logo-placeholder img {
    width: 150px;
    height: auto;
    object-fit: contain;
}
.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    display: block;
}
.product-image {
    width: 100%;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product-image img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}
.nav-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
.product-description {
    text-align: justify;
    line-height: 1.8;
    color: #444;
    font-size: 15px;
    margin-top: 15px;
}
.qr-section {
    text-align: center;
}

.qr-section h3 {
    color: white;
    margin-bottom: 15px;
}

.qr-section p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.qr-image {
    width: 220px;
    height: 220px;

    background: white;
    padding: 15px;
    border-radius: 20px;

    transition: 0.3s;
}

.qr-image:hover {
    transform: scale(1.05);
}
.footer-logo-img {
    width: 250px;
    height: auto;
}
/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 45px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(15, 25, 45, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        padding: 30px 0;
        gap: 20px;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3 {
        font-size: 1.8rem;
    }

    .image-placeholder {
        width: 100%;
        height: auto;
    }

    .image-placeholder img {
        height: auto;
    }

    .services-grid,
    .projects-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        flex-direction: column;
    }

    .project-image {
        width: 100%;
        height: auto;
    }

    .project-image img {
        height: 220px;
    }

   .product-slide { width: 350px; flex-shrink: 0; }

   
    .product-card {
        padding: 25px 20px;
    }

    .product-image {
        height: 180px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        width: 180px;
    }

    .whatsapp-btn,
    .email-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
        right: 15px;
    }

    .email-btn {
        bottom: 85px;
    }

    .whatsapp-btn {
        bottom: 15px;
    }

    .qr-image {
        width: 180px;
        height: 180px;
    }
}

/* EXTRA SMALL DEVICE */

@media (max-width: 480px) {

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item i {
        margin-bottom: 10px;
    }
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 420px));
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f1edeb 0%, #FF8C42 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(255, 107, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #0f192d;
    margin-bottom: 20px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================
   FLOWMETER SECTION
========================= */

.flowmeter-section {
    padding: 100px 0;
    background: #f8fafc;
}

.flowmeter-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}
.flowmeter-image {
    flex: 1.3;
    text-align: center;
}

.flowmeter-image img {
    width: 100%;
    max-width: 750px;
}
.flowmeter-content {
    flex: 1;
}

.flowmeter-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #0f172a;
    color: white;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.flowmeter-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #0f172a;
    line-height: 1.1;
}

.flowmeter-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 16px;
}

.flowmeter-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #0f172a;
    color: white;
}

.btn-primary:hover {
    background: #1e293b;
}

.btn-secondary {
    border: 2px solid #0f172a;
    color: #0f172a;
}

.btn-secondary:hover {
    background: #0f172a;
    color: white;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.flowmeter-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    min-height: 420px;
}

.flowmeter-card:hover {
    transform: translateY(-8px);
}

.flowmeter-card img {
    width: 100%;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    margin-bottom: 20px;
}

.flowmeter-card h3 {
    margin-bottom: 15px;
    color: #0f172a;
    font-size: 24px;
}

.flowmeter-card p {
    color: #666;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .flowmeter-content h1 {
        font-size: 38px;
    }

    .flowmeter-hero {
        flex-direction: column;
        text-align: center;
    }

    .flowmeter-buttons {
        justify-content: center;
    }

}
/* =========================
   MARINE LOADING ARM
========================= */

.mla-section {
    padding: 100px 0;
    background: #f8fafc;
}

.mla-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.mla-section .section-header h2 {
    font-size: 52px;
    color: #0f172a;
    margin-bottom: 20px;
}

.mla-section .section-header p {
    max-width: 700px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
}

.mla-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.mla-item.reverse {
    flex-direction: row-reverse;
}

.mla-image {
    flex: 1;
}

.mla-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.mla-content {
    flex: 1;
}

.mla-tag {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.mla-content h3 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mla-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 16px;
}

.mla-features {
    list-style: none;
    padding: 0;
}

.mla-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    color: #334155;
    line-height: 1.7;
}

.mla-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #0f172a;
    font-size: 20px;
}

@media (max-width: 992px) {

    .mla-item,
    .mla-item.reverse {
        flex-direction: column;
    }

    .mla-content h3 {
        font-size: 34px;
    }

}

@media (max-width: 768px) {

    .mla-section {
        padding: 70px 0;
    }

    .mla-section .section-header h2 {
        font-size: 38px;
    }

    .mla-content {
        text-align: center;
    }

    .mla-features li {
        text-align: left;
    }

}


/* =========================
   AVERY HARDOLL SECTION
========================= */

.avery-hardoll-section {
    padding: 120px 0;
    background: #f8fafc;
}

.avery-hardoll-section .container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

/* TOP SECTION */

.avery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* IMAGE */

.avery-product-image {
    flex: 1;
    text-align: center;
}

.avery-product-image img {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
}

/* CONTENT */

.avery-product-content {
    flex: 1;
}

.avery-label {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 25px;
}

.avery-product-content h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 25px;
}

.avery-product-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 40px;
}

/* HIGHLIGHT BOX */

.avery-highlight {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.highlight-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    min-width: 170px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.highlight-box h3 {
    font-size: 32px;
    color: #0f172a;
    margin-bottom: 10px;
}

.highlight-box span {
    color: #64748b;
    font-size: 14px;
}

/* SPEC IMAGE */

.avery-spec-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
}

.spec-card {
    overflow: hidden;
    border-radius: 24px;
    background: white;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-8px);
}

.spec-card img {
    width: 100%;
    display: block;
}

/* VIDEO */

.avery-video iframe {
    width: 100%;
    height: 650px;
    border-radius: 24px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* PRODUCT DETAIL */

.product-detail {
    margin-top: 70px;
}

.product-detail h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 18px;
    margin-top: 35px;
}

.product-detail p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 20px;
}

.detail-list {
    padding-left: 20px;
}

.detail-list li {
    margin-bottom: 14px;
    color: #334155;
    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 992px) {

    .avery-top {
        flex-direction: column;
        text-align: center;
    }

    .avery-product-content h1 {
        font-size: 42px;
    }

    .avery-highlight {
        justify-content: center;
    }

    .avery-spec-gallery {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 768px) {

    .avery-hardoll-section {
        padding: 70px 0;
    }

    .avery-product-content h1 {
        font-size: 36px;
    }

    .avery-video iframe {
        height: 320px;
    }

}
/* =========================
   FIX LAYOUT
========================= */

.nav-link {
    position: relative;
}

.flowmeter-section {
    padding-top: 180px;
}

/* =========================
   AVERY SECTION
========================= */

.avery-section {
    padding: 100px 0;
    background: #ffffff;
}

.avery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.avery-content h2 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 20px;
}

.avery-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 35px;
}

.avery-tag {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.avery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 15px;

    background: #f8fafc;

    padding: 20px;
    border-radius: 16px;
}

.feature-box i {
    width: 50px;
    height: 50px;

    background: #0f172a;
    color: white;

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.avery-video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;

    border: none;
    border-radius: 24px;

    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* =========================
   FOOTER FIX
========================= */

.footer {
    overflow: hidden;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .avery-grid {
        grid-template-columns: 1fr;
    }

    .avery-content {
        text-align: center;
    }

    .flowmeter-content h1 {
        font-size: 38px;
    }

    .avery-content h2 {
        font-size: 34px;
    }

}
/* =========================
   EMCO WHEATON B0030 MLA
========================= */

.mla-product-section {
    padding: 120px 0;
    background: #f8fafc;
}

.mla-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.mla-product-content h2 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.1;
}

.mla-product-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 16px;
}

.mla-product-tag {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.mla-product-features {
    margin-bottom: 35px;
    padding-left: 20px;
}

.mla-product-features li {
    margin-bottom: 12px;
    color: #334155;
    line-height: 1.7;
}

/* RIGHT */

.mla-spec-gallery {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.spec-image-card {
    max-width: 750px;
    margin: auto;

    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.spec-image-card:hover {
    transform: translateY(-8px);
}

.spec-image-card img {
    width: 100%;
    height: 500px;

    object-fit: contain;

    display: block;

    background: white;
    padding: 20px;
}

/* MOBILE */

@media (max-width: 992px) {

    .mla-product-grid {
        grid-template-columns: 1fr;
    }

    .mla-product-content {
        text-align: center;
    }

    .mla-product-features {
        text-align: left;
    }

    .mla-product-content h2 {
        font-size: 38px;
    }

}
.best-seller-box {
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 700px;
}

.best-tag {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.best-seller-box h2 {
    font-size: 48px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.best-seller-box p {
    color: #475569;
    line-height: 1.9;
    font-size: 17px;
}
/* =========================
   BEST SELLER SECTION
========================= */

.best-seller-section {
    padding: 120px 0 80px;
    background: #f8fafc;

    display: flex;
    align-items: center;
    justify-content: center;
}

.best-seller-content {
    max-width: 850px;
    text-align: center;

    margin: auto;
}

.best-tag {
    display: inline-block;

    background: #FF6B00;
    color: white;

    padding: 10px 22px;
    border-radius: 50px;

    font-size: 13px;
    font-weight: 600;

    margin-bottom: 25px;
}

.best-seller-content h2 {
    font-size: 54px;
    line-height: 1.1;

    color: #0f172a;

    margin-bottom: 25px;
}

.best-seller-content p {
    font-size: 18px;
    line-height: 1.9;

    color: #475569;

    max-width: 750px;
    margin: auto;
}

/* MOBILE */

@media (max-width: 768px) {

    .best-seller-section {
        padding: 90px 0 60px;
    }

    .best-seller-content h2 {
        font-size: 38px;
    }

    .best-seller-content p {
        font-size: 16px;
    }

}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

/* PRODUCT FEATURE */
.product-feature {
    list-style: none;
    margin-top: 20px;
    text-align: left;
    padding-left: 0;
}

.product-feature li {
    margin-bottom: 10px;
    color: #444;
    font-size: 15px;
}

/* PRODUCT BUTTON */
.product-buttons {
    margin-top: 25px;
}

/* CATALOG SECTION */
.catalog-section {
    margin-top: 80px;
    text-align: center;
    background: #f8fafc;
    padding: 50px 30px;
    border-radius: 20px;
}

.catalog-section h3 {
    font-size: 2rem;
    color: #0f192d;
    margin-bottom: 15px;
}

.catalog-section p {
    color: #666;
    margin-bottom: 30px;
}

/* PRODUCT HERO */
.product-hero {
    padding: 140px 0 100px;
    background: #f8fafc;
}

.product-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.product-hero-text {
    flex: 1;
    min-width: 320px;
}

.product-hero-text h1 {
    font-size: 3.5rem;
    color: #0f192d;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.product-hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.9;
    max-width: 650px;
}

/* RIGHT IMAGE */
.product-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-hero-image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    display: block;

    border-radius: 24px;
    background: white;
    padding: 12px;

    box-shadow:
        0 20px 50px rgba(0,0,0,0.15),
        0 0 0 1px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.product-hero-image img:hover {
    transform: translateY(-8px);
}

/* MOBILE */
@media (max-width: 992px) {

    .product-hero {
        padding: 120px 0 80px;
    }

    .product-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .product-hero-text h1 {
        font-size: 2.6rem;
    }

    .product-hero-text p {
        margin: 0 auto 30px;
    }

    .product-hero-image img {
        max-width: 100%;
    }

}

/* PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* PRODUCT IMAGE */
.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 15px;
}

/* BUTTON */
.btn-primary {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #e65f00;
}

.brochure-button {
    text-align: center;
    margin-top: 50px;
}

.btn-brochure {
    display: inline-block;

    background: #0f172a;
    color: white;

    padding: 16px 34px;

    border-radius: 12px;

    text-decoration: none;
    font-weight: 600;
    font-size: 16px;

    transition: 0.3s ease;
}

.btn-brochure:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}
/* =========================
   PRODUCT INFO SECTION
========================= */

.product-info-section {
    padding: 120px 0;
    background: #f8fafc;
}

.product-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT */

.product-info-content h3 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-info-content p {
    color: #475569;
    line-height: 1.9;
    margin-bottom: 30px;
}

.product-tag {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 20px;
}

.product-feature-list {
    padding-left: 20px;
}

.product-feature-list li {
    margin-bottom: 14px;
    color: #334155;
    line-height: 1.7;
}

/* RIGHT */

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.gallery-card {
    background: white;

    padding: 20px;

    border-radius: 24px;

    border: 1px solid #e2e8f0;

    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.gallery-card img {
    width: 100%;
    height: 400px;

    object-fit: contain;

    display: block;

    background: #f8fafc;

    border-radius: 18px;
}

/* MOBILE */

@media (max-width: 992px) {

    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .product-info-content {
        text-align: center;
    }

    .product-feature-list {
        text-align: left;
    }

    .product-info-content h3 {
        font-size: 34px;
    }

}
.video-drive-btn {
    width: 100%;
    min-height: 320px;

    background: linear-gradient(135deg, #0f172a, #1e293b);

    border-radius: 24px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    color: white;
    text-decoration: none;

    font-size: 24px;
    font-weight: 600;

    gap: 20px;

    transition: 0.3s ease;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.video-drive-btn i {
    font-size: 70px;
    color: #FF6B00;
}

.video-drive-btn:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #1e293b, #334155);
}
/* TOPTECH PRODUCT SECTION */

.toptech-product-section {
    padding: 100px 0;
    background: #f8fafc;
}

.toptech-title {
    text-align: center;
    margin-bottom: 60px;
}

.toptech-title h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 15px;
}

.toptech-title p {
    color: #64748b;
}

   
/* FEATURES SECTION */

.services {
    padding: 100px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);

    transition: 0.3s ease;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;

    background: #0f172a;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
}

.service-card h3 {
    font-size: 24px;
    color: #0f172a;
    margin-bottom: 18px;
}

.service-card p {
    color: #475569;
    line-height: 1.8;
}

/* MOBILE */

@media (max-width: 992px) {

    .services-grid {
        grid-template-columns: 1fr;
    }

}
/* MOBILE RESPONSIVE */

@media (max-width: 992px) {

    .toptech-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }

    .toptech-card {
        width: 100%;
    }

    .toptech-content {
        padding: 24px;
    }

    .toptech-content h3 {
        font-size: 22px;
    }

    .toptech-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .toptech-image img {
        width: 100%;
        height: auto;
        max-height: 280px;
        object-fit: contain;
    }

}
.services-grid-custom {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px;
    margin-top: 50px;
    width: 100%;
}

.services-grid-custom .service-card {
    width: 100% !important;
    max-width: 100% !important;
}

@media (max-width: 768px) {
    .services-grid-custom {
        grid-template-columns: 1fr !important;
    }
}