﻿
:root {
    --primary: #16989A;
    --secondary: #076662;
    --accent: #16a085;
    --light: #f9f9f9;
    --success: #27ae60;
}

/* Section styles with scroll animations */

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    font-weight: bold
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary);
        margin-bottom: 1rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease forwards;
        color: #2c3e50;
        display: inline-block;
        background: #086d6e;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-family: 'Segoe UI';
    }

        .section-title h2::after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: #086d6e;
            margin: 10px auto 0;
            border-radius: 2px;
        }

.section h3 {
    text-align: center;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    font-weight: bold
}

.section-content {
    max-width: 1600px;
    margin: 0 auto;
}

/* Process Automation Section */
.automation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(700px, 1fr));
    gap: 1rem;
    position: relative;
}

.automation-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    height: 150px;
    width: 550px;
}



    .automation-card.animated {
        animation: fadeInUp 0.8s ease forwards;
    }

    .automation-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .automation-card h3 {
        color: #16989A;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        font-size: 1.5rem;
        font-weight: bold;
        font-family: 'Segoe UI';
    }

    .automation-card p {
        font-size: 1.2rem;
        font-family: 'Segoe UI';
        color: #707070;
    }

    .automation-card h3 i {
        margin-right: 10px;
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .automation-card ul {
        list-style-position: inside;
        padding-left: 0.5rem;
    }

    .automation-card li {
        margin-bottom: 0.5rem;
        position: relative;
        padding-left: 1.5rem;
    }

        .automation-card li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--secondary);
        }


/* Responsive styles */
@media (max-width: 768px) {


    .logo {
        margin-bottom: 1rem;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        padding: 0.5rem 0.8rem;
    }


    .section-title h2 {
        font-size: 2rem;
    }
    .row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .automation-grid,
    .electrical-features,
    .industries-container,
    .benefits-container {
        grid-template-columns: 1fr;
    }
    .bubble-container {
        padding: 0px;
    }

    .automation-card {
     
        width: auto;
    }

    .benefit-card {
        height: auto;
        width:auto;
    }
}
/* Benefits Section */
.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    height: 130px;
    margin-bottom: 15px;
}

    .benefit-card.animated {
        animation: fadeInUp 0.8s ease forwards;
    }

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size-1 .2rem;
    font-family: 'Segoe UI';
    color: #707070;
}




/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* Hero section with animated gradient */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align content to the right */
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9)), /* Transparent (left) → Black (right) */
        url('/assets/images/IMAGES/liquid filling machine/1bgimg.jpg');
        background-size: cover;
        background-position: center;
        background-blend-mode: multiply; /* Darkens the image under the gradient */
        filter: brightness(90%);
    }

.hero-content {
    width: 100%;
    z-index: 2;
    position: relative; /* Required for pseudo-elements */
    display: inline-block; /* Ensures the lines wrap the text properly */
    padding: 10px 60px;
}

    .hero-content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px; /* Thickness of the line */
        height: 100%; /* Length of the vertical part */
        background: white;
    }

.hero h1 {
    font-size: 3rem;
    font-weight: bolder;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease forwards 0.3s;
    color: white;
    position: relative; /* Required for pseudo-elements */
    display: inline-block; /* Ensures the lines wrap the text properly */
    padding: 10px 20px; /* Adds space around the text for the lines */
    max-width: 531px;
}

    /* Top-left corner line */
    .hero h1::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 40px; /* Length of the horizontal part */
        height: 3px; /* Thickness of the line */
        background: white;
    }

    /* Top-left vertical line */
    .hero h1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 3px; /* Thickness of the line */
        height: 40px; /* Length of the vertical part */
        background: white;
    }

    /* Bottom-right corner line (requires an additional wrapper or another pseudo-element) */
    .hero h1 span::before {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40px;
        height: 3px;
        background: white;
    }

    .hero h1 span::after {
        content: "";
        position: absolute;
        bottom: 0;
        right: 0;
        width: 3px;
        height: 40px;
        background: white;
    }

    .hero h1 span {
        color: #009999;
    }

.hero p {
    font-size: 20px;
    color: white;
    font-weight: bolder;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
    text-align: justify;
    max-width: 531px;
    font-family: 'Segoe UI';
    line-height: 1.2;
}

/* Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
        height: 90vh !important;
    }

    .hero-content {
        max-width: 90%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
    .bubble-container {
        padding: 0px!important;
    }
}



.bubble-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 50px;
    margin-left: 0px;
    padding-left: 0px;
}

.bubble {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 1)), /* Transparent (left) → Black (right) */
    url(/assets/images/IMAGES/Homepage/18.jpg);
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply; /* Darkens the image under the gradient */
    box-shadow: 0 20px 30px rgba(0,0,0,0.8);
}

.bubble-content {
    width: 80%;
    height: 80%;
    background:;
    border-radius: 50%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

    .bubble-content p {
        color: white;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.bubble-content h3 {
    font-weight: bold;
    text-decoration: underline;
    font-size: 1.5rem;
    color: #16989A;
    margin-bottom: 15px;
    font-family: 'Segoe UI';
}

.bubble-content p {
    font-size: 1.2rem;
    font-family: 'Segoe UI';
}

.arrow-box {
    display: inline-block;
    background: #16989A; /* arrow body color */
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    position: relative;
    font-size: 23px;
    border-radius: 4px 0 0 4px; /* optional for rounded left corner */
    height: 90px;
    margin-top: 85px;
    text-align: center;
    font-weight: bolder;
    width: 200px;
    font-family: 'Segoe UI';
}

    .arrow-box::after {
        content: "";
        position: absolute;
        top: 0;
        width: 0;
        height: 0;
        border-top: 100px solid transparent;
        border-bottom: 100px solid transparent;
        border-left: 100px solid #16989A;
        margin-top: -55px;
        margin-left: 30px;
    }


.core-values {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    margin: 0 auto;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(18, 38, 63, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(18, 38, 63, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .value-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(18, 38, 63, 0.15);
    }

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #16989A;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.8rem;
}

    .value-card h3::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        border-radius: 3px;
    }

.value-card p {
    color: #707070;
    line-height: 1.6;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.hexagon-mask {
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    width: 80px;
    height: 80px;
    background: #16989A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hexagon-icon {
    font-size: 2.5rem;
    color: white;
}

.bgimgbrdr {
    border: 150px solid white;
}

.bgshade {
    position: relative;
    color: white;
    padding: 320px 0 150px;
    margin-bottom: 80px;
    overflow: hidden;
    margin-top: -100px;
    width: 900px;
    height: 700px;
}

    .bgshade::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/assets/images/IMAGES/liquid filling machine/New folder (2)/1.png')center/cover no-repeat;
        z-index: 0;
    }

.section p {
    font-size: 1.2rem;
}

.image-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    perspective: 1000px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    z-index: 20;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 20px;
    box-sizing: border-box;
}

    .slider-dots .dot {
        display: inline-block;
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s;
        flex-shrink: 0;
        background: grey;
    }

        .slider-dots .dot.active {
            background-color: white;
            transform: scale(1.2);
            background: #16989A;
        }

.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

    .slider-images img {
        position: absolute;
        width: 80%;
        height: 80%;
        object-fit: cover;
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,0.3);
        transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        transform-origin: center center;
        cursor: pointer;
    }

/* Navigation arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
}

    .slider-arrow:hover {
        background: rgba(0,0,0,0.8);
        transform: translateY(-50%) scale(1.1);
    }

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

/* Active image */
.slider-images img.active {
    transform: translate(-50%, -50%) scale(1) translateZ(0);
    top: 50%;
    left: 50%;
    z-index: 10;
    opacity: 1;
    filter: brightness(1);
}

/* Next image */
.slider-images img.next {
    transform: translate(10%, -50%) scale(0.9) translateZ(-50px) rotateY(-15deg);
    top: 50%;
    left: 50%;
    z-index: 5;
    opacity: 0.8;
    filter: brightness(0.8) blur(1px);
}

/* Previous image */
.slider-images img.prev {
    transform: translate(-110%, -50%) scale(0.9) translateZ(-50px) rotateY(15deg);
    top: 50%;
    left: 50%;
    z-index: 5;
    opacity: 0.8;
    filter: brightness(0.8) blur(1px);
}

/* Hidden images */
.slider-images img:not(.active):not(.next):not(.prev) {
    transform: translate(-50%, -50%) scale(0.8) translateZ(-100px);
    opacity: 0;
    z-index: 1;
}

@media (max-width: 768px) {
    .slider-images img {
        width: 90%;
        height: 70%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .prev-arrow {
        left: 10px;
    }

    .next-arrow {
        right: 10px;
    }
}

.section-content {
    margin: 0 auto;
    margin-top: 60px;
}

    .section-content h3 {
        color: rgba(119, 119, 119, 1);
        font-family: 'Segoe UI';
    }

.section h3 {
    text-align: center;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.4rem;
}

