@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html,
body {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', 'Poppins', sans-serif;
}

.container {
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 10px;
}

.logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    /* Reduced padding */
    background: linear-gradient(90deg, rgb(255, 255, 255) 30%, #155f01 70%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    /* Added this */
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 0;
    /* Reduced padding */
}

.logo-img {
    width: 120px;
    /* Reduced from 80px */
    height: 120px;
    /* Reduced from 80px */
    object-fit: contain;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.nav-link ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    /* Reduced padding */
    margin: 0;
}

.nav-link ul li {
    list-style: none;
    margin: 0 15px;
    /* Reduced from 20px */
    text-decoration: none;
    color: #000000;
    font-size: 20px;
    font-weight: 500;
}

.nav-link ul li a {
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    padding-bottom: 5px;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: #ffffff;
    transition: width .3s ease;
}

.nav-link ul li a:hover::after {
    width: 100%;
    left: 0;
    background: #ffffff;
}

.nav-link ul li a:hover {
    color: #f8f9fa;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 2px;
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* MOBILE NAVBAR - COMPLETE OVERHAUL */
@media screen and (max-width: 680px) {
    .navbar {
        padding: 0 15px;
        /* Even smaller padding */
        justify-content: space-between;
    }

    .logo-img {
        width: 50px;
        /* Smaller on mobile */
        height: 50px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-link {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #012c0e, #02220c);
        backdrop-filter: blur(10px);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        display: flex;
        justify-content: center;
        align-items: flex-start;
        z-index: 999;
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    .nav-link.active {
        right: 0;
    }

    .nav-link ul {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        /* Cover the layout */
        margin: 40px auto 0;
        padding: 0 20px;
        align-items: center;
    }

    .nav-link ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
        font-size: 22px;
    }

    .nav-link ul li a {
        display: block;
        padding: 12px 20px;
        width: 100%;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        margin: 5px 0;
        transition: all 0.3s ease;
    }

    .nav-link ul li a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(10px);
    }
}

/* Prevent body scroll when menu open */
body.menu-open {
    overflow: hidden;
}

/* Water Drip Drop Animation */
.drip-container {
    position: absolute;
    top: 80px;
    /* Start below navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    overflow: hidden;
    pointer-events: none;
    /* Let clicks pass through */
    z-index: 5;
    /* Sit on top of hero images and text */
}

.drip-wrapper {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    transform: translateX(-50%);
}

.drip {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    box-shadow: inset 2px 2px 3px rgba(255, 255, 255, 0.8), inset -2px -2px 3px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: drop 3s infinite ease-in;
    animation-delay: var(--delay);
    transform: translateX(-50%);
}

@keyframes drop {
    0% {
        top: -50px;
        height: 5px;
        opacity: 0;
    }

    10% {
        opacity: 1;
        height: 15px;
    }

    75% {
        top: calc(100% - 15px);
        height: 15px;
        opacity: 1;
    }

    78% {
        top: calc(100% - 7px);
        height: 5px;
        width: 15px;
        /* squash horizontally */
        border-radius: 50%;
        opacity: 0.8;
    }

    80%,
    100% {
        top: calc(100% - 5px);
        height: 2px;
        width: 25px;
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.2), inset 0 0 4px rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    animation: rippleEffect 3s infinite ease-out;
    animation-delay: var(--delay);
    transform: translateX(-50%);
}

@keyframes rippleEffect {

    0%,
    78% {
        width: 0;
        height: 0;
        opacity: 0;
        border-width: 2px;
    }

    79% {
        opacity: 1;
    }

    100% {
        width: 80px;
        height: 25px;
        opacity: 0;
        border-width: 0px;
    }
}

/* Hero Slider Styles */
.hero-container {
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    overflow: hidden;
    margin-top: 80px;
    background-color: #000;
}

/* Slider navigation buttons & wrapper */
.slider-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 30px;
    z-index: 10;
    transition: background 0.3s ease, transform 0.2s ease;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: rgba(55, 106, 245, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}



.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 10s linear;
}

.slide:nth-child(1) img {
    transition: transform 30s linear;
}

.slide:nth-child(1) .hero-overlay {
    background: rgba(0, 0, 0, 0.4);
}

.slide.active img {
    transform: scale(1.05);
    /* zoom in effect */
}

img.bluw {
    height: 110vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    opacity: 0;
    /* Hidden initially for animation */
}

.hero p {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    padding: 10px;
    text-align: center;
    max-width: 800px;
    width: 90%;
    opacity: 0;
    /* Hidden initially */
}

.hero button {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    background-color: #ffffff;
    color: #376af5;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    /* Hidden initially */
    margin-top: 15px;
}

.hero button:hover {
    background-color: #01290b;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(16, 17, 19, 0.4);
}

/* Text Animations attached to .active slide */
.slide.active .anim-slide-down {
    animation: slideDown 1s ease forwards 0.3s;
}

.slide.active .anim-fade-up {
    animation: slideUpFadeLocal 1s ease forwards 0.8s;
}

.slide.active .anim-slide-left {
    animation: slideLeft 1s ease forwards 0.5s;
}

.slide.active .anim-slide-right {
    animation: slideRight 1s ease forwards 0.8s;
}

.slide.active .anim-zoom-in {
    animation: zoomInText 1s ease forwards 0.5s;
}

.slide.active .anim-slide-up {
    animation: slideUpFadeLocal 1s ease forwards 0.8s;
}

.slide.active .anim-flip-in {
    animation: flipIn 1s ease forwards 0.5s;
}

.slide.active .anim-fade-in {
    animation: fadeIn 1s ease forwards 0.8s;
}

.slide.active .anim-bounce-in {
    animation: bounceIn 1s ease forwards 0.5s;
}

.slide.active .hero button:not([class*="anim-"]) {
    animation: fadeIn 1s ease forwards 1.2s;
}

/* Custom Keyframes */
@keyframes slideDown {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomInText {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }

    100% {
        opacity: 1;
        transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideUpFadeLocal {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.about {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg,
            #02490666,
            #ffffff,
            #01491966,
            #ffffff,
            #036b3766);
    background-size: 200% 200%;
    animation: shine 3s linear infinite;
}
.center{
    text-align: center;
    margin-bottom: 10px;
}
.usone{
    text-align: center;
    padding-top: 20px;
    border-bottom: 5px solid rgb(1, 56, 4);
    display: inline-block;
}

@keyframes shine {
    0% {
        background-position: 100% 70%;
    }

    100% {
        background-position: 0% 30%;
    }
}

.about-container {
    width: 80%;
    height: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-content {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-title {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 15px;
}

.about-title h1 {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    text-align: left;
}

.about-content p {
    font-size: 20px;
    font-weight: 400;
    color: #555;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-learn {
    padding: 12px 30px;
    background: linear-gradient(90deg, #016b18, #171d18);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-learn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.about-image {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    animation: floatBounce 4s ease-in-out infinite;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.about-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Scroll Animation Classes */
.hidden-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s ease-out;
}

.hidden-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s ease-out;
}

.show-animate {
    opacity: 1;
    transform: translateX(0);
}

/* Core Values Section */
.core-values {
    width: 100%;
    min-height: 50vh;
    background-color: #eef1f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0 80px 0;
}

.core-values-header {
    text-align: center;
    margin-bottom: 20px;
}

.core-values-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.core-values-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
}

.core-values-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.values-container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    gap: 0;
    flex-wrap: wrap;
}

.value-wrapper {
    flex: 1;
    display: flex;
    min-width: 250px;
    margin-top: 50px;
}

.value-card {
    width: 100%;
    background: #eef1f6;
    padding: 70px 25px 40px;
    position: relative;
    border-right: 1px solid #dcdfe8;
    text-align: center;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    cursor: pointer;
    z-index: 1;
    outline: none;
    /* For tabindex */
}

.value-wrapper:last-child .value-card {
    border-right: none;
}

/* Background image overlay on hover */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/f3.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

/* Blue Transparent Color overlay on hover */
.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 110, 54, 0.637);
    /* Transparent Blue */
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

/* Hover, Active & Focus Effects (Allows clicking/tapping to persist) */
.value-card:hover::before,
.value-card:hover::after,
.value-card:focus::before,
.value-card:focus::after,
.value-card:focus-within::before,
.value-card:focus-within::after {
    opacity: 1;
}

.value-card:hover h3,
.value-card:hover p,
.value-card:focus h3,
.value-card:focus p,
.value-card:focus-within h3,
.value-card:focus-within p {
    color: #ffffff;
}

/* The Circle Icon overlapping top */
.card-icon-wrapper {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #e0e6ed;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    outline: 5px solid #ffffff;
    outline-offset: -1px;
}

.card-icon-wrapper .icon {
    font-size: 35px;
    color: gold;
    line-height: 1;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    margin-top: 10px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

.value-card p {
    font-size: 14px;
    font-weight: 400;
    color: #555555;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
}

/* Arrow Button at bottom right */
.card-arrow-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background-color: gold;
    color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: bold;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
    z-index: 3;
}

.value-card:hover .card-arrow-btn,
.value-card:focus .card-arrow-btn,
.value-card:focus-within .card-arrow-btn {
    opacity: 1;
    transform: translateY(0);
}

/* Product Section */
.product {
    width: 100%;
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.product-header {
    text-align: center;
    margin-bottom: 50px;
}

.product-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.product-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
    border-radius: 2px;
}

.product-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.product-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
    text-align: center;
    z-index: 2;
}

.image-text-overlay p {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e6ed;
    margin: 0;
}

.product-card:hover .image-text-overlay,
.about-img-wrapper:hover .image-text-overlay {
    opacity: 1;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
}

.product-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.product-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-product {
    padding: 10px 25px;
    background-color: transparent;
    color: #376af5;
    border: 2px solid #376af5;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-product:hover {
    background-color: #376af5;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(55, 106, 245, 0.4);
}

/* Services Section (Flip Card Style) */
.services {
    width: 100%;
    min-height: 80vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/business3.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    opacity: 0.1;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.services-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
    border-radius: 2px;
}

.services-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.services-container {
    width: 90%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 320px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.flip-card-front {
    background: #ffffff;
    border: 1px solid #eef1f6;
    color: black;
}

.flip-card-front::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: rgba(55, 106, 245, 0.05);
    border-radius: 100% 0 15px 0;
}

.service-icon {
    font-size: 55px;
    margin-bottom: 25px;
    color: #376af5;
    filter: drop-shadow(0 5px 10px rgba(55, 106, 245, 0.3));
}

.flip-card-front h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.flip-card-back {
    background: linear-gradient(135deg, #376af5, #312ee6);
    color: white;
    transform: rotateY(180deg);
    border: none;
}

.flip-card-back p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e6ed;
}

.btn-service {
    padding: 10px 25px;
    background-color: gold;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-service:hover {
    background-color: #fff;
    color: #376af5;
    transform: translateY(-3px);
}

.clients {
    width: 100%;
    min-height: 80vh;
    background-color: #f8fafc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.clients-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
}

.clients-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.clients-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
    border-radius: 2px;
}

.clients-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.clients-slider {
    width: 90%;
    max-width: 1200px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 2;
    padding: 20px 0;
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.clients-slider::-webkit-scrollbar {
    display: none;
}

.clients-slider.active {
    cursor: grabbing;
}

.clients-slider-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
}

.client-slide {
    width: 300px;
    height: 250px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
    border: 1px solid transparent;
}

.client-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(55, 106, 245, 0.15);
    border-color: rgba(55, 106, 245, 0.3);
}

.client-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 25px));
    }
}

/* Event Section */
.event {
    width: 100%;
    min-height: 80vh;
    background: linear-gradient(135deg, #376af5, #d4af37, #725de9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.event-header {
    text-align: center;
    margin-bottom: 60px;
    z-index: 2;
}

.event-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #000000;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.event-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
    border-radius: 2px;
}

.event-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.event-slider {
    width: 90%;
    max-width: 1200px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    z-index: 2;
    padding: 20px 0;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 1) 95%, rgba(0, 0, 0, 0) 100%);
    cursor: grab;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.event-slider::-webkit-scrollbar {
    display: none;
}

.event-slider.active {
    cursor: grabbing;
}

.event-slider-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    padding-bottom: 30px;
    /* Prevents box-shadow from clipping */
}

.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    width: 350px;
    flex-shrink: 0;
}

@keyframes scroll-events {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.event-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #376af5, #d4af37, #725de9);
    z-index: -1;
    border-radius: 22px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.event-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.event-card:hover::before {
    opacity: 1;
}

.event-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.event-card:hover .event-img img {
    transform: scale(1.15) rotate(2deg);
}

.event-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.event-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.event-card:hover .event-content h3 {
    color: #376af5;
}

.event-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-event {
    padding: 12px 25px;
    background: transparent;
    color: #376af5;
    border: 2px solid #376af5;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-event::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #376af5;
    z-index: -1;
    transition: width 0.4s ease;
}

.event-card:hover .btn-event {
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(55, 106, 245, 0.4);
}

.event-card:hover .btn-event::before {
    width: 100%;
}

/* Contact Section */
.contact-section {
    width: 100%;
    min-height: 80vh;
    background-color: #012009;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    bottom: -10px;
    left: 30%;
    border-radius: 2px;
}

.contact-header p {
    margin-top: 25px;
    font-size: 16px;
    color: #ffffff;
    max-width: 600px;
}

.contact-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-icon {
    font-size: 30px;
    background: #eef1f6;
    padding: 10px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.info-text p {
    font-size: 15px;
    color: #555;
}

.contact-form {
    flex: 1.5;
    min-width: 350px;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-row {
    display: flex;
    gap: 20px;
}

.input-row input {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #dcdfe8;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #376af5;
    box-shadow: 0 0 8px rgba(55, 106, 245, 0.2);
}

.input-full {
    width: 100%;
}

.btn-submit {
    padding: 15px 30px;
    background: linear-gradient(90deg, #055e13, #011d12);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .input-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Image Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.gallery-modal-content {
    background-color: #ffffff;
    width: 85%;
    max-width: 1100px;
    height: 85vh;
    border-radius: 15px;
    padding: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    animation: zoomIn 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-modal-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #376af5;
    font-size: 32px;
    font-weight: 700;
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #888;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    line-height: 1;
}

.gallery-modal-close:hover,
.gallery-modal-close:focus {
    color: #ff3b3b;
    transform: scale(1.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    overflow-y: auto;
    padding-right: 15px;
    flex-grow: 1;
}

.gallery-grid::-webkit-scrollbar {
    width: 10px;
}

.gallery-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 5px;
}

.gallery-grid::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(55, 106, 245, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::after {
    background: rgba(55, 106, 245, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent);
    color: #fff;
    padding: 30px 10px 15px;
    text-align: center;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.gallery-item-name h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.gallery-item-desc {
    font-size: 13px;
    color: #e0e6ed;
    margin: 0;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Comprehensive Mobile Responsiveness (For Samsung / Small Screens) */
@media screen and (max-width: 768px) {

    /* Global Heading Adjustments */
    h2 {
        font-size: 26px !important;
    }

    /* Section Headers */
    .event-header p,
    .clients-header p,
    .product-header p,
    .services-header p,
    .contact-header p,
    .core-values-header p {
        padding: 0 20px;
        font-size: 15px;
    }

    /* Slider Corrections */
    .event {
        padding: 60px 0;
    }

    .event-slider-track {
        gap: 20px;
    }

    .event-card {
        width: 85vw;
        max-width: 300px;
    }

    .clients {
        padding: 60px 0;
    }

    .clients-slider-track {
        gap: 20px;
    }

    .client-slide {
        width: 140px;
        height: 95px;
        padding: 12px;
    }

    /* Hero Section Corrections */
    .hero-container {
        height: calc(100vh - 80px);
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
        padding: 0;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .hero {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 15px;
        width: 95%;
        line-height: 1.6;
    }

    .hero button {
        padding: 14px 30px;
        /* Larger touch target */
        font-size: 16px;
        margin-top: 20px;
    }

    /* About Section Corrections */
    .about {
        height: auto;
        padding: 60px 0;
    }

    .about-container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .about-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .about-title {
        justify-content: center;
    }

    .about-content p {
        text-align: center;
        font-size: 15px;
    }

    .about-image {
        width: 100%;
        height: 280px;
        margin-top: 30px;
    }

    .about-img-wrapper {
        height: 100%;
    }

    /* Core Values Corrections */
    .core-values {
        padding: 60px 0;
    }

    .values-container {
        flex-direction: column;
        width: 90%;
    }

    .value-wrapper {
        width: 100%;
        min-width: unset;
        margin-top: 40px;
    }

    .value-card {
        border-right: none;
        border-bottom: 1px solid #dcdfe8;
        padding: 50px 20px 30px;
    }

    .value-wrapper:last-child .value-card {
        border-bottom: none;
    }

    /* Product Section Corrections */
    .product {
        padding: 60px 0;
    }

    .product-container {
        flex-direction: column;
        width: 90%;
        gap: 25px;
    }

    .product-card {
        width: 100%;
        min-width: unset;
    }

    .product-img {
        height: 250px;
    }

    .product-content {
        padding: 25px 20px;
    }

    .product-content h3 {
        font-size: 20px;
    }

    /* Overlay specifically for about image so products don't get forced overlay */
    /* Removed: .about-img-wrapper .image-text-overlay block as the empty div has been removed and it was causing a dark overlay on mobile */

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .services-container {
        grid-template-columns: 1fr;
        width: 90%;
        gap: 30px;
    }

    /* Contact Section */
    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        flex-direction: column;
        width: 90%;
        gap: 30px;
    }

    .contact-info,
    .contact-form {
        width: 100%;
        min-width: unset;
    }

    .contact-form {
        padding: 30px 20px;
    }

    /* Modal Gallery Corrections */
    .gallery-modal-content {
        width: 95%;
        padding: 20px 10px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: #0d1117;
    color: #e0e6ed;
    padding: 60px 0 0 0;
    font-family: 'Outfit', 'Poppins', sans-serif;
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #376af5, #d4af37);
    border-radius: 2px;
}

.footer-about .footer-logo {
    width: 120px;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 5px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-about p {
    font-size: 15px;
    line-height: 1.6;
    color: #a0aec0;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-icon:hover {
    background: #376af5;
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #376af5;
    transform: translateX(5px);
}

.footer-contact p {
    font-size: 15px;
    color: #a0aec0;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    background: #06090f;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Mobile Footer Responsiveness */
@media screen and (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media screen and (max-width: 680px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer {
        padding: 50px 0 0 0;
    }

    .footer-col h3 {
        margin-bottom: 15px;
    }
}