/* ===== GLOBAL ===== */
/* ===== GLOBAL TYPOGRAPHY ===== */


.corp-hero-content h1 {
    font-size: clamp(36px, 6vw, 60px);
    margin-bottom: 10px;
}

.corp-hero-content p {
    font-size: clamp(18px, 3vw, 24px);
    color: #fff; /* readable on hero image */
    font-weight: 500;
}

/* Heading colors */
.black-text {
    color: #000; /* black for -Who */
}

.highlight {
    color: #791515 !important; /* orange for We Are */
    font-weight: 700;
}
.section-title span {
    color: #000;
}

.section-title .highlight {
    color: #791515;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    width: 100%;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-left,
.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (max-width:768px) {

    .top-bar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
}

@media (max-width:900px) {

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
    }

        .nav-links.active {
            display: flex;
        }
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width:900px) {
    .menu-toggle {
        display: block;
    }
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    text: bold;
}

@media(max-width:900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}



body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
    background-color: #ffffff;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    color: #111;
}

h1 {
    font-size: 48px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

h3 {
    font-size: 22px;
}

p {
    color: #000;
    font-size: 16px;
}

.footer-describe {
    color: #ffffff; /* white text */
}


/* Make all text and icons in footer column white */
.footer-column {
    color: #ffffff; /* white text */
}

    /* Ensure headings inside are also white */
    .footer-column h4 {
        color: #ffffff;
    }

    /* Ensure <strong> is white */
    .footer-column strong {
        color: #ffffff;
    }

    /* Ensure FontAwesome icons are white */
    .footer-column i {
        color: #ffffff;
    }

    /* Optional: links in this column are white */
    .footer-column a {
        color: #ffffff;
        text-decoration: none;
    }

.fas fa-envelope {
    color: #fff;
}

.container {
    width: 85%;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: #f4f6f9;
}

.text-center {
    text-align: center;
}

.img-fluid {
    //width: 100%;
    border-radius: 10px;
    max-width: 500px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 45vh; /* 70% of screen height */
    min-height: 420px;
    max-height: 600px;
    overflow: hidden;
}

/* slides */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

    .hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

    .hero-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* overlay (premium dark) */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

/* caption */
/* ===== HERO CAPTION PROFESSIONAL STYLE ===== */

.hero-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    max-width: 650px;
    color: #ffffff;
    z-index: 2;
}

    .hero-caption h1 {
        font-size: 52px;
        font-weight: 700;
        text-transform: uppercase;
        color: #ffffff !important; /* force white */
        letter-spacing: 2px;
    }

    .hero-caption p {
        font-size: 20px;
        margin-top: 15px;
        color: #ffffff; /* make subtitle white */
        font-weight: 400;
    }
/* button polish */
.btn-primary {
    background: #2b5daa;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    display: inline-block;
    transition: all .25s ease;
}

    .btn-primary:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 9999;
    overflow: visible;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* container */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===== LOGO ===== */
.logo a {
    color: #1d4ed8;
    font-size: 36px; /* bigger logo */
    font-weight: 800; /* stronger branding */
    text-decoration: none;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* ===== NAV LINKS ===== */
.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

    .nav-links li {
        position: relative;
    }

    .nav-links a {
        color: #1d4ed8;
        text-decoration: none;
        font-weight: 500;
        padding: 8px 6px;
        transition: all .25s ease;
    }

    .nav-links li a {
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        letter-spacing: 1px;
        color: #111;
        transition: 0.3s;
    }
    /* hover */
    .nav-links > li > a:hover {
        color: #fca311;
    }

/* ========================================
   ⭐ ABOUT DROPDOWN
======================================== */
.about-dropdown {
    position: relative;
}

    /* hover bridge */
    .about-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 18px;
        bottom: -18px;
    }

/* card */
.about-card-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 260px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: all .28s cubic-bezier(.4,0,.2,1);
}

.about-dropdown:hover .about-card-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* ========================================
   ⭐ PRODUCTS DROPDOWN (NEW)
======================================== */
.products-dropdown {
    position: relative;
}

    .products-dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        height: 18px;
        bottom: -18px;
    }

.products-card-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 220px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: all .28s cubic-bezier(.4,0,.2,1);
}

.products-dropdown:hover .products-card-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* dropdown links */
.about-card-menu a,
.products-card-menu a {
    display: block;
    padding: 12px 22px;
    color: #1e293b;
    font-size: 14px;
    text-decoration: none;
    transition: all .22s ease;
}

    .about-card-menu a:hover,
    .products-card-menu a:hover {
        background: #f1f5f9;
        color: #2563eb;
        padding-left: 28px;
    }

/* ===== TWO COLUMN ===== */
.two-column {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* ===== CARDS ===== */
.card-grid {
    display: flex;
    gap: 20px;
}

/* ===== CARD STYLE ===== */

.card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

    /* ===== PRODUCT CARD IMAGE FIX ===== */

    .card img {
        width: 90%;
        height: 200px;
        object-fit: contain; /* keeps full image visible */
        margin: 0 auto 15px;
        display: block;
    }

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

/* ===== FEATURES ===== */
.features {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
    font-weight: 600;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: flex;
    gap: 15px;
}

    .gallery-grid img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        transition: transform .3s ease;
    }

        .gallery-grid img:hover {
            transform: scale(1.05);
        }

/* ===== BUTTON STYLE ===== */

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: #0d1b2a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #fca311;
        color: #000;
        transform: translateY(-3px);
    }

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background: #fca311;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-secondary:hover {
        background: #fff;
        color: #000;
    }

/* ===== CTA ===== */
/* ===== CTA WITH BANNER ===== */
/* ===== CTA FULL BANNER ===== */
/* ===== CTA FULL BANNER ===== */
.cta {
    position: relative;
    width: 100%;
    height: 190px;
    background: url('/images/cta-banner1.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* dark overlay */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

/* content on image */
.cta-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

    .cta-content h2 {
        font-size: clamp(28px, 4vw, 36px);
        margin-bottom: 20px;
    }

/* ===== FOOTER ===== */
.footer {
    background: #514e4e;
    color: #ddd;
    //padding: 50px 0 0px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer h3,
.footer h4 {
    color: white;
}

.footer ul {
    list-style: none;
    padding: 0;
}

    .footer ul li {
        margin-bottom: 8px;
    }

.footer a {
    color: #ccc;
    text-decoration: none;
}

    .footer a:hover {
        color: white;
    }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 14px;
    background-color: #4F4F4F; /* maroon background */
    color: #fff; /* white text for contrast */
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {

    .two-column,
    .card-grid,
    .features,
    .footer-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .hero h1 {
        font-size: 32px;
    }
}
/* 🔥 FORCE FIX */
.about-card-menu {
    display: block;
    position: absolute;
}

.about-dropdown:hover .about-card-menu {
    opacity: 1;
    visibility: visible;
}
/* ================= PRODUCTS DROPDOWN ================= */

.products-dropdown {
    position: relative;
}

/* hidden state */
.products-card-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 240px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: all .28s cubic-bezier(.4,0,.2,1);
}

/* show on hover */
.products-dropdown:hover .products-card-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

/* links */
.products-card-menu a {
    display: block;
    padding: 12px 22px;
    color: #1e293b;
    font-size: 14px;
    text-decoration: none;
    transition: all .22s ease;
}

    .products-card-menu a:hover {
        background: #f1f5f9;
        color: #2563eb;
        padding-left: 28px;
    }

/* ===== CONTACT PAGE ===== */

/* ================= HERO ================= */
.journey-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0));
    display: flex;
    align-items: center;
}
/* ================= HERO ================= */

.contact-hero {
    height: 420px;
    background: url('/images/contact1.png') center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0), rgba(0,0,0,0));
    display: flex;
    align-items: center;
}

    .hero-overlay .container {
        color: #ffffff;
    }

    .hero-overlay h1 {
        font-size: 54px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .hero-overlay p {
        font-size: 18px;
        color: #fca311; /* Accent line */
    }


.contact-section {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* LEFT SIDE */
.contact-info h2,
.contact-form h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

    .info-item span {
        font-size: 22px;
        color: #e11d2e; /* brand red */
    }

    .info-item strong {
        display: block;
        margin-bottom: 4px;
    }

/* RIGHT SIDE FORM */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.3s ease;
}

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #e11d2e;
        box-shadow: 0 0 0 3px rgba(225,29,46,0.1);
        outline: none;
    }

.btn-submit {
    width: 180px;
    padding: 14px;
    background: #e11d2e;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s ease;
}

    .btn-submit:hover {
        background: #b91c1c;
    }

/* ================= MOBILE ================= */

@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        margin-top: -80px;
        padding: 25px;
    }

    .hero-overlay h1 {
        font-size: 30px;
    }
}
/* ===== CLIENTS SECTION ===== */

/* ===== CLIENTS SECTION ===== */

.clients-section {
    background: #ffffff;
    padding: 70px 0;
    overflow: hidden;
}

.clients-subtitle {
    color: #64748b;
    margin-bottom: 40px;
}

/* slider wrapper */
.clients-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* moving track */
.clients-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollClients 25s linear infinite;
}

/* individual logo frame */
/* individual logo frame */
.client-box {
    min-width: 200px; /* slightly wider */
    height: 130px; /* taller frame */
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    padding: 14px;
    transition: all .35s ease;
}

    /* hover lift */
    .client-box:hover {
        transform: translateY(-6px) scale(1.06);
        box-shadow: 0 16px 34px rgba(0,0,0,0.14);
    }

    /* 🔥 BIG + COLOR LOGOS */
    .client-box img {
        max-height: 120px; /* BIGGER LOGO */
        max-width: 170px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: none; /* ✅ remove grayscale */
        opacity: 1; /* full color */
        transition: transform .3s ease;
    }

    /* subtle zoom on hover */
    .client-box:hover img {
        transform: scale(1.08);
    }

/* 🔥 animation */
@keyframes scrollClients {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== responsive ===== */

@media (max-width: 768px) {
    .client-box {
        min-width: 140px;
        height: 90px;
    }

    .clients-track {
        animation-duration: 18s;
    }
}

/* ===== responsive ===== */

@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.logo img {
    height: 80px; /* adjust if needed */
    width: auto;
    object-fit: contain;
}

/* ===== HERO ===== */
/* ===== HERO SECTION ===== */
.journey-hero {
    position: relative;
    height: 50vh;
    min-height: 360px;
    background: linear-gradient(rgba(15,23,42,0.75), rgba(15,23,42,0.75)), url('/images/hero1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.journey-hero-content h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.journey-hero-content p {
    margin-top: 10px;
    font-size: 18px;
    opacity: .9;
    color: #ffffff;
}

.journey-ultimate {
    position: relative;
    padding: 160px 20px;
    overflow: hidden;
    color: white;
}
/* SECTION */

.journey-flow {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

.journey-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
}

/* WRAPPER */

.journey-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
    position: relative;
}

/* ARC LINE */

/* SECTION */

.journey-flow {
    padding: 100px 20px;
    background: #f8fafc;
    text-align: center;
}

.journey-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 80px;
}

/* WRAPPER */

.journey-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
    flex-wrap: wrap;
    position: relative;
}

    /* ARC LINE */

    .journey-wrapper::before {
        content: "";
        position: absolute;
        top: 45px;
        left: 10%;
        width: 80%;
        height: 6px;
        background: linear-gradient(90deg,#ef4444,#f59e0b,#06b6d4,#10b981,#8b5cf6);
        border-radius: 50px;
    }

@keyframes gradientMove {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 100% 50%
    }
}

/* ITEMS */

.journey-item {
    position: relative;
    width: 180px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    
}

    .journey-item:nth-child(1) {
        animation-delay: .2s;
    }

    .journey-item:nth-child(2) {
        animation-delay: .4s;
    }

    .journey-item:nth-child(3) {
        animation-delay: .6s;
    }

    .journey-item:nth-child(4) {
        animation-delay: .8s;
    }

    .journey-item:nth-child(5) {
        animation-delay: 1s;
    }

/* CIRCLE */

.journey-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: .4s;
    position: relative;
    animation: floatCircle 4s ease-in-out infinite;
}

@keyframes floatCircle {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

.journey-circle:hover {
    transform: scale(1.15);
}

/* COLORS */

.red .journey-circle {
    background: #ef4444;
}

.orange .journey-circle {
    background: #f59e0b;
}

.teal .journey-circle {
    background: #06b6d4;
}

.green .journey-circle {
    background: #10b981;
}

.purple .journey-circle {
    background: #8b5cf6;
}

/* TEXT */

.journey-item h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

.journey-item p {
    font-size: 14px;
    color: #6b7280;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* MOBILE */

@media(max-width:900px) {

    .journey-wrapper {
        flex-direction: column;
        gap: 50px;
    }

        .journey-wrapper::before {
            display: none;
        }
}

/* ITEMS */

.journey-item {
    position: relative;
    width: 180px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

    .journey-item:nth-child(1) {
        animation-delay: .2s;
    }

    .journey-item:nth-child(2) {
        animation-delay: .4s;
    }

    .journey-item:nth-child(3) {
        animation-delay: .6s;
    }

    .journey-item:nth-child(4) {
        animation-delay: .8s;
    }

    .journey-item:nth-child(5) {
        animation-delay: 1s;
    }

/* CIRCLE */

.journey-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: white;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    transition: .4s;
}

    .journey-circle:hover {
        transform: scale(1.15);
    }

/* COLORS */

.red .journey-circle {
    background: #ef4444;
}

.orange .journey-circle {
    background: #f59e0b;
}

.teal .journey-circle {
    background: #06b6d4;
}

.green .journey-circle {
    background: #10b981;
}

.purple .journey-circle {
    background: #8b5cf6;
}

/* TEXT */

.journey-item h3 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

.journey-item p {
    font-size: 14px;
    color: #6b7280;
}

/* ANIMATION */

@keyframes fadeUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =========================
   PULSE RING ANIMATION
========================= */

.journey-circle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.6);
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {

    0% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}


/* =========================
   HOVER ICON POP
========================= */

.journey-circle:hover {
    transform: scale(1.2) rotate(5deg);
    box-shadow: 0 20px 40px rgba(0,0,0,.25), 0 0 20px rgba(255,255,255,.5);
}


/* =========================
   CARD HOVER LIFT
========================= */

.journey-item {
    position: relative;
    width: 180px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transition: .4s;
}

    .journey-item:hover {
        transform: translateY(-10px);
    }


    /* =========================
   TEXT FADE
========================= */

    .journey-item h3 {
        margin-top: 20px;
        font-size: 18px;
        font-weight: 700;
        animation: textFade 1.2s ease forwards;
    }

@keyframes textFade {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */

@media(max-width:900px) {

    .journey-wrapper {
        flex-direction: column;
        gap: 50px;
    }

        .journey-wrapper::before {
            display: none;
        }
}

.ufs-content {
    max-width: 800px; /* Optional: limits line length for readability */
    margin: 0 auto;
}

    .ufs-content p {
        color: #475569;
        line-height: 1.8;
        margin-bottom: 16px;
        text-align: justify; /* ✅ Justify paragraphs */
        text-justify: inter-word; /* Improves spacing between words */
    }



.plant-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.plant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.plant-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d4ed8; /* Optional: corporate blue */
}

.plant-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.plant-image img {
    width: 100%;
    border-radius: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .plant-grid {
        grid-template-columns: 1fr; /* Stack text + image */
        gap: 20px;
        text-align: center;
    }

    .plant-text h2 {
        font-size: 28px;
    }

    .plant-text p {
        text-align: justify; /* keep justified on mobile */
        margin: 0 auto 16px;
    }
}
/* ===== R&D HERO ===== */
/* ===== HERO ===== */
.rnd-hero {
    position: relative;
    height: 45vh;
    background: url('/images/lab1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.rnd-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.15);
}

.rnd-hero-content {
    position: relative;
    color: #fff;
    z-index: 2;
}

    .rnd-hero-content h1 {
        font-size: 56px;
        letter-spacing: 2px;
    }

    .rnd-hero-content p {
        font-size: 20px;
        color: #fca311;
    }


/* ===== INTRO CARD ===== */
.rnd-intro-card {
    background: #ffffff; /* white background */
    padding: 40px; /* spacing inside card */
    border-radius: 12px; /* rounded corners */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); /* slightly stronger shadow */
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
    color: #333; /* dark text for readability */
    position: relative; /* above any overlay if present */
    z-index: 2; /* ensure card is on top */
}


/* ===== IMAGES ===== */
.rnd-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.rnd-img-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

    .rnd-img-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .rnd-img-card:hover img {
        transform: scale(1.08);
    }

.rnd-img-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-weight: 600;
    
}


/* ===== R&D CARDS ===== */
.rnd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.rnd-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    //text-align: justify;
}

    .rnd-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.rnd-icon {
    font-size: 32px;
    margin-bottom: 15px;
}

.rnd-hero-content h1,
.rnd-hero-content p {
    color: #ffffff;
}

.rnd-overlay {
    background: rgba(0, 0, 0, 0.7); /* darker for better contrast */
}
/* ===== STATS ===== */
.rnd-stats {
    background: #F0FFF0;
    color: #fff;
    padding: 70px 0;
}

.rnd-stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.rnd-stats h2 {
    font-size: 42px;
    color: #fca311;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .rnd-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rnd-stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .rnd-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== R&D IMAGES ===== */

.rnd-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 10px;
}

.rnd-img-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all .4s ease;
}

    .rnd-img-card:hover {
        transform: translateY(-6px) scale(1.02);
    }

    .rnd-img-card img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

/* caption overlay */
.rnd-img-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 14px 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.75), transparent);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

/* responsive */
@media (max-width: 768px) {
    .rnd-images {
        grid-template-columns: 1fr;
    }

    .rnd-img-card img {
        height: 260px;
    }
}

/* ===== LEADERS GRID ===== */

/* ===== LEADERSHIP SECTION ===== */

/* SECTION */

.leadership-section {
    background: #f8f9fb;
    padding: 100px 20px;
}

/* GRID LAYOUT */

.leaders-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
    margin-top: 60px;
}

/* MANAGING DIRECTOR TOP */

.leader-main {
    grid-column: 1/-1;
    max-width: 620px;
    margin: auto;
}


/* CARD STYLE */

.leader-card {
    background: #ffffff;
    color: #000;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    text-align: justify;
}

    /* CARD GLOW */

    .leader-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg,#fca31133,transparent);
        opacity: 0;
        transition: .4s;
    }

    .leader-card:hover::before {
        opacity: 1;
    }

/* FLOATING CARD */

.leader-card {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }

    100% {
        transform: translateY(0)
    }
}

/* HOVER EFFECT */

.leader-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0,0,0,.15);
}


/* IMAGE WRAPPER */

/* IMAGE WRAPPER - BIGGER */
.leader-img-wrap {
    width: 280px; /* increased from 170px */
    height: 280px; /* increased from 170px */
    margin: 0 auto 30px; /* slightly bigger bottom spacing */
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fca311;
    position: relative;
}

    /* IMAGE */
    .leader-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.leader-card:hover img {
    transform: scale(1.12); /* slightly bigger zoom on hover for larger image */
}

/* ROTATING RING - adjust for bigger image */
.leader-img-wrap::after {
    inset: -12px; /* increased from -8px to fit bigger image */
    border-radius: 50%;
    border: 2px dashed #fca311;
    animation: rotateRing 12s linear infinite;
}

@keyframes rotateRing {

    from {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}


/* TEXT */

.leader-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.leader-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fca311;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.leader-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}


/* RESPONSIVE */

@media(max-width:900px) {

    .leaders-grid {
        grid-template-columns: 1fr;
    }

    .leader-main {
        grid-column: auto;
    }
}

/* ===== HERO ===== */

.about-hero-pro {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: url('/images/empoyees.JPG') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff; /* Pure white */
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    /* 🔥 FORCE PURE WHITE TEXT */
    .about-hero-content h1,
    .about-hero-content h2,
    .about-hero-content p,
    .about-hero-content span {
        color: #ffffff !important;
    }

    .about-hero-content h1 {
        font-size: 42px;
        font-weight: 800;
    }

    .about-hero-content h2 {
        font-size: 24px;
        opacity: 1; /* Remove fade effect */
    }

/* ===== MAIN ===== */

.about-main {
    padding: 70px 20px;
    background: #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text1 h2 {
    margin-bottom: 18px;
}

.about-text1 {
    text-align: justify; /* Justify the text */
    color: #000000; /* Keep text black */
    line-height: 1.8; /* Maintain readability */
}

.about-text1 p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Force all text in the about section to be black */
.about-main,
.about-main * {
    color: #000000 !important;
}

/* ===== IMAGE ===== */

.about-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===== STATS ===== */

.about-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

    .about-stats h3 {
        color: #1f4fa3;
        font-size: 28px;
    }

    .about-stats span {
        display: block;
        font-size: 13px;
        color: #333;
    }

/* ===== VM ===== */

.vm-section {
    position: relative;
    padding: 140px 20px;
    background: #f5f7fa;
    overflow: hidden;
}

/* diagonal background */

.vm-bg {
    position: absolute;
    top: -150px;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(120deg,#eef2f6 50%,#f9fafc 50%);
    transform: rotate(-8deg);
    z-index: 0;
}

/* item wrapper */

.vm-item {
    text-align: center;
    max-width: 320px;
}

/* bigger image */

.vm-icon {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-top: 20px;
}

/* title below circle */

.vm-title {
    font-size: 26px;
    font-weight: 700;
    margin-top: 25px;
    color: #1f2937;
}

/* description */

.vm-text {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-top: 8px;
    font-weight: 500;
    //text-align: justify;
}

/* heading */

.vm-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

    .vm-header h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 10px;
    }

    .vm-header p {
        color: #6b7280;
        font-size: 16px;
    }

/* container */

.vm-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 140px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* circles */

.vm-circle {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s ease;
}

    /* vision ring */

    /* Vision ring */

    .vm-circle.vision {
        border: 50px solid #e17676;
        border-right-color: transparent;
        border-bottom-color: transparent;
        animation: rotateLeft 2s linear;
        animation-play-state: paused;
    }

    /* Mission ring */

    .vm-circle.mission {
        border: 50px solid #4f6b8b;
        border-left-color: transparent;
        border-top-color: transparent;
        animation: rotateRight 2s linear;
        animation-play-state: paused;
    }

/* animations */

@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRight {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* center card */

.vm-card {
    width: 230px;
    height: 230px;
    background: white;
    border-radius: 50%;
    text-align: center;
    padding: 0;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    transition: all .4s ease;
    /* center image */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .vm-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    }

/* BIGGER IMAGE */

.vm-icon {
    width: 280px; /* increase size */
    height: 2800px;
    object-fit: contain;
}

.vm-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.vm-card p {
    font-size: 13px;
    color: #555;
}

/* animations */

@keyframes rotateLeft {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotateRight {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

/* responsive */

@media(max-width:900px) {

    .vm-container {
        flex-direction: column;
        align-items: center;
        gap: 90px;
    }

    .vm-header h2 {
        font-size: 30px;
    }
}

/* ===== HERO ===== */

.corp-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: url('/images/hero1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.corp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* very light black */
    z-index: 1;
}

.corp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    /* 🔥 Force all hero text pure white */
    .corp-hero-content h1,
    .corp-hero-content h2,
    .corp-hero-content h3,
    .corp-hero-content p,
    .corp-hero-content span {
        color: #ffffff !important;
        opacity: 1;
    }

/* ===== ABOUT ===== */

.corp-about {
    padding: 70px 20px;
    background: #f8fafc;
}

.corp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.corp-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
    text-align: justify;
}

.corp-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* ===== STRENGTHS ===== */

.corp-strengths {
    padding: 70px 20px;
    background: #ffffff;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 35px;
}

.strength-card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all .3s ease;
    text-align: justify;
}

    .strength-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,0.12);
    }

.strength-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1f4fa3;
}

/* ===== CTA ===== */

/* ===== HERO ===== */

.corp-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: url('/images/hero1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.corp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
}

.corp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* ===== ABOUT ===== */

.corp-about {
    padding: 70px 20px;
    background: #f8fafc;
}

.corp-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.corp-text p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

.corp-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    height:450px;
}

/* ===== STRENGTHS ===== */

.corp-strengths {
    padding: 70px 20px;
    background: #ffffff;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 35px;
}

.strength-card {
    background: #f8fafc;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: all .3s ease;
}

    .strength-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0,0,0,0.12);
    }

.strength-icon {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1f4fa3;
}

/* ===== CTA ===== */

.corp-cta {
    position: relative;
    width: 100%;
    height: 250px;
    background: url('/images/cta-banner1.jpeg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .corp-grid {
        grid-template-columns: 1fr;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .corp-grid {
        grid-template-columns: 1fr;
    }

    .strength-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== HERO ===== */

.ggbs-hero {
    position: relative;
    height: 45vh;
    background: url('/images/ggbshero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.ggbs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
}

.ggbs-hero-content {
    position: relative;
    max-width: 750px;
}

    /* ✅ Only H1 White */
    .ggbs-hero-content h1 {
        font-size: 52px;
        font-weight: 700;
        line-height: 1.2;
        color: #ffffff; /* PURE WHITE */
    }

    /* Keep paragraph orange */
    .ggbs-hero-content p {
        font-size: 20px;
        margin-top: 15px;
        color: #fca311;
    }

/* ===== SECTION ===== */


.ggbs-advantages {
    padding: 100px 0;
    background: #f9f9f9;
    position: relative;
}

.advantage-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px 1fr;
    grid-template-rows: auto auto auto;
    align-items: center;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.center-image {
    grid-column: 2;
    grid-row: 1 / span 3;
    text-align: center;
}

    .center-image img {
        width: 320px;
        max-width: 100%;
    }

        .center-image img:hover {
            transform: scale(1.08);
        }

/* Advantage Cards */
.adv-item {
    position: relative;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

    .adv-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    /* Connector Line */
    .adv-item::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 40px;
        background: #fca311;
        top: 50%;
    }

.top-left::after,
.mid-left::after,
.bottom-left::after {
    right: -40px;
}

.top-right::after,
.mid-right::after,
.bottom-right::after {
    left: -40px;
}

/* Positioning */
/* LEFT SIDE */
/* Left Column */
.top-left {
    grid-column: 1;
    grid-row: 1;
}

.mid-left {
    grid-column: 1;
    grid-row: 2;
}

.bottom-left {
    grid-column: 1;
    grid-row: 3;
}

/* Right Column */
.top-right {
    grid-column: 3;
    grid-row: 1;
}

.mid-right {
    grid-column: 3;
    grid-row: 2;
}

.bottom-right {
    grid-column: 3;
    grid-row: 3;
}

/* Stylish Arrow Lines */
/* ===== CONNECTING LINES ===== */






.cert-card {
    transition: 0.4s ease;
}

    .cert-card:hover {
        transform: scale(1.05);
    }

.ggbs-sustain {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    padding: 80px 0;
}

    .ggbs-sustain h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

.ggbs-text {
    color: #000; /* pure black text */
}
.ggbs-text1 {
    color: #fff; /* pure black text */
}

/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .ggbs-grid {
        grid-template-columns: 1fr;
    }

    .adv-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GGBS SECTION ===== */

.ggbs-section {
    background: #f8fafc;
}

/* content */

.ggbs-content h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0f172a;
}

.ggbs-content h2 {
    margin-top: 26px;
    margin-bottom: 12px;
    color: #1f4fa3;
}

.ggbs-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 14px;
}

/* list */

.ggbs-list {
    padding-left: 18px;
    margin-bottom: 18px;
}

    .ggbs-list li {
        margin-bottom: 6px;
    }

/* buttons */

.ggbs-buttons {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* image */

.ggbs-image {
    text-align: center;
}

    .ggbs-image img {
        width: 140%;
        max-width: 420px;
        display: block;
        margin: 0 auto;
        border-radius: 18px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.15);
        transition: transform .4s ease;
    }

        /* 🔥 premium hover */

        .ggbs-image img:hover {
            transform: scale(1.05);
        }

/* responsive */

@media (max-width: 768px) {
    .ggbs-content h1 {
        font-size: 30px;
    }
}


/* ===== HERO ===== */
.contact-hero {
    height: 45vh;
    background: url('/images/contact.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-overlay {
    background: rgba(15, 23, 42, 0.65);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 20px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.contact-hero p {
    font-size: 18px;
    margin-top: 10px;
    opacity: .9;
}

/* ===== MAIN ===== */
.contact-main {
    padding: 70px 0;
    background: #f8fafc;
}

/* layout */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

/* cards */
.contact-left,
.contact-right {
    flex: 1 1 420px;
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* left items */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}

    .contact-item .icon {
        font-size: 22px;
        background: #eef2ff;
        color: #1e3a8a;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

/* map */
.map-box {
    margin-top: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== FORM ===== */
.contact-right form input,
.contact-right form select,
.contact-right form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    transition: all .25s ease;
}

    .contact-right form input:focus,
    .contact-right form select:focus,
    .contact-right form textarea:focus {
        outline: none;
        border-color: #1e3a8a;
        box-shadow: 0 0 0 3px rgba(30,58,138,.12);
    }

/* button */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 25px rgba(30,58,138,.35);
    }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}

.about-text {
    text-align: justify;
    text-align-last: left; /* last line looks clean */
    line-height: 1.9;
    font-size: 17px;
    color: #444;
}

    .about-text p {
        text-align: justify;
        text-align-last: left; /* keeps last line neat */
        line-height: 1.8;
        font-size: 16px;
        color: #444;
        margin-bottom: 18px;
    }


/* ===== CERTIFICATIONS SECTION ===== */
.ggbs-certifications {
    padding: 80px 0;
    background: #f8f9fa;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.cert-card {
    text-align: center;
}

.cert-frame {
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

    .cert-frame:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    /* FIXED IMAGE SIZE (Important for refresh issue) */
    .cert-frame img {
        width: 100%;
        height: 350px; /* fixed height */
        object-fit: contain; /* keeps original ratio */
        border-radius: 8px;
    }

.footer-bottom {
    background-color: lightslategray;
    color: #ffffff;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .footer-left,
    .footer-right {
        text-align: center;
    }
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: lightslategray;
    color: #fff;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.top-left a {
    color: #ffffff; /* make text white */
    text-decoration: none; /* remove underline */
    font-weight: 500;
    transition: 0.3s ease;
}

    .top-left a i {
        color: #fca311; /* premium orange icon */
        margin-right: 6px;
    }

    .top-left a:hover {
        color: #fca311; /* orange hover */
    }

.top-right a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s ease;
}

    .top-right a:hover {
        color: #fca311;
    }

/* Responsive */
@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 10px;
    }
}


/* ================= HERO ================= */
/* HERO */
.ufs-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: url('/images/ufshero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #fff;
}

.ufs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.ufs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

/* Heading */
.ufs-hero h1 {
    font-size: 60px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

/* Subtitle */
.ufs-hero p {
    font-size: 22px;
    margin-top: 15px;
    color: #fca311;
}

/* Responsive */
@media (max-width: 768px) {
    .ufs-hero {
        height: 38vh;
        text-align: center;
        justify-content: center;
    }

        .ufs-hero h1 {
            font-size: 40px;
        }

        .ufs-hero p {
            font-size: 18px;
        }
}
/* GRID */
.ufs-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.ufs-image img {
    width: 100%;
    max-width: 420px;
    transition: 0.4s ease;
}

    .ufs-image img:hover {
        transform: scale(1.05);
    }

/* FEATURE CARDS */
.ufs-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 40px;
}

.ufs-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

    .ufs-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }

/* APPLICATIONS */
.ufs-applications {
    background: #f8f9fb;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

    .apps-grid div {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
        transition: 0.4s ease;
    }

        .apps-grid div:hover {
            transform: translateY(-8px);
            background: #fca311;
            color: #000;
        }

/* SUSTAIN */
.ufs-sustain {
    padding: 80px 0;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    margin: 10px;
    display: inline-block;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: #fca311;
    color: #000;
}

    .btn-primary:hover {
        background: #ffb703;
    }

.btn-secondary {
    border: 2px solid #111;
    color: #111;
}

    .btn-secondary:hover {
        background: #111;
        color: #fff;
    }



.media-upload-form {
    max-width: 500px;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .media-upload-form label {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .media-upload-form .form-control {
        margin-bottom: 15px;
        padding: 10px;
    }

.video-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(0,0,0,0.6);
    padding: 15px 22px;
    border-radius: 50%;
    pointer-events: none;
}

/* Dropdown container */
.facilities-dropdown {
    position: relative;
}

/* Hidden menu */
.facilities-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
}

    /* Menu links */
    .facilities-menu a {
        display: block;
        padding: 12px 16px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

        .facilities-menu a:hover {
            color: #007bff; /* blue text */
            background: #f5f9ff; /* light blue background (optional) */
        }

/* SHOW MENU ON HOVER */
.facilities-dropdown:hover .facilities-menu {
    display: block;
}



.process-section {
    padding: 80px 0;
    background: #f9fbff;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.process-step {
    width: 180px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .process-step:hover {
        transform: translateY(-8px);
    }

.process-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.process-arrow {
    font-size: 28px;
    font-weight: bold;
    color: #0d6efd;
}



.gallery-overlay.highlight {
    color: #f36f21; /* orange text */
    font-weight: 700;
}

/* GLOBAL SECTION SPACING */

/*section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}*/

/* HERO SECTION */

/* Hero container */
.plant-hero {
    position: relative;
    height: 45vh;
    min-height: 320px;
    background: url('/images/manufacture1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff; /* default text */
}

/* Light overlay for clarity */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15); /* very light so image shows clearly */
    z-index: 1;
}

/* Hero content text */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

    /* Heading with black + orange */
    .hero-content h1 span:first-child {
        color: #fff; /* "Manufacturing" black */
    }

    .hero-content h1 span.highlight {
        color: #fff; /* "Excellence" orange */
        font-weight: 700;
    }

    /* Paragraph */
    .hero-content p {
        color: #fff; /* black for readability */
        font-size: clamp(16px, 2.5vw, 20px);
        margin-top: 10px;
    }

/* INTRO GRID */

.plant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.plant-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.plant-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.plant-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* SECTION TITLE */

.section-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* INFRASTRUCTURE */

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.infra-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all .3s;
    text-align: center;
}

    .infra-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

.infra-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* PROCESS FLOW */

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 25px;
    margin-top: 40px;
}

.process-step {
    width: 170px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.process-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.process-line {
    width: 40px;
    height: 3px;
    background: #1d4ed8;
}

/* STATS */

.plant-stats {
    background: #0f172a;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.stat-card {
    padding: 40px 20px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    transition: all .3s;
}

    .stat-card:hover {
        background: #2563eb;
        transform: translateY(-6px);
    }

    .stat-card h3 {
        font-size: 40px;
        margin-bottom: 10px;
    }

/* GALLERY */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

    .gallery-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        transition: transform .4s;
    }

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 12px;
    text-align: center;
    opacity: 0;
    transition: .3s;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

/* ENGINEERING CASE */

.case-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.case-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

    .case-card:hover {
        transform: translateY(-8px);
    }

    .case-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .case-card h4 {
        padding: 15px;
        margin: 0;
    }

    .case-card p {
        padding: 0 15px 20px;
    }

/* CERTIFICATIONS */

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.cert-card {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: .3s;
}

    .cert-card:hover {
        transform: translateY(-6px);
    }

.cert-frame {
    padding: 10px;
    background: #f5f7fb;
    border-radius: 6px;
}

    .cert-frame img {
        width: 100%;
        height: 180px;
        object-fit: contain;
    }

.cert-card h4 {
    margin-top: 12px;
    font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:992px) {

    .plant-grid {
        grid-template-columns: 1fr;
    }

    .infra-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-card {
        background: white;
        padding: 25px;
        border-radius: 12px;
        text-align: center;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.8s ease;
    }

        .stat-card.show {
            opacity: 1;
            transform: translateY(0);
        }

        .stat-card h3 {
            font-size: 32px;
            color: #1d4ed8;
        }

    .cert-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .case-grid {
        grid-template-columns: 1fr;
    }
}


.success-message {
    background: #e6f9ec;
    color: #1b7f3b;
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
    border: 1px solid #bde5c8;
}

.download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.download-box {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    position: relative;
}

    .download-box input {
        width: 100%;
        padding: 10px;
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
    }

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
    font-size: 18px;
}










.plant-accordion {
    margin-top: 40px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #f5f7fb;
    transition: 0.3s;
}

    .accordion-header:hover {
        background: #e9edf7;
    }

    .accordion-header h3 {
        margin: 0;
        font-size: 20px;
    }

.icon {
    font-size: 22px;
    font-weight: bold;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.accordion-item.active .accordion-content {
    max-height: 1500px;
    padding: 30px;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: start;
}

.accordion-image img {
    width: 100%;
    border-radius: 8px;
}

.plant-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .plant-table td,
    .plant-table th {
        border: 1px solid #ddd;
        padding: 10px;
    }

    .plant-table th {
        background: #0f2a44;
        color: white;
    }

.plant-facility-section {
    padding: 80px 0;
    background: #f7f9fc;
}

.facility-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #0f2a44;
}

.facility-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.facility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: #ffffff;
    transition: 0.3s;
}

    .facility-header:hover {
        background: #f0f4fa;
    }

    .facility-header h3 {
        margin: 0;
        font-size: 22px;
        color: #1a1a1a;
    }

.arrow {
    width: 14px;
    height: 14px;
    border-right: 3px solid #0f2a44;
    border-bottom: 3px solid #0f2a44;
    transform: rotate(45deg);
    transition: 0.3s;
}

.facility-item.active .arrow {
    transform: rotate(-135deg);
}

.facility-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.facility-item.active .facility-body {
    max-height: 2000px;
    padding: 30px;
}

.facility-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 40px;
    align-items: start;
}

.facility-image img {
    width: 100%;
    border-radius: 10px;
}

.plant-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

    .plant-table td,
    .plant-table th {
        border: 1px solid #ddd;
        padding: 10px;
    }

    .plant-table th {
        background: #0f2a44;
        color: white;
    }



.process-section {
    padding: 70px 0;
    background: #f8f9fa;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .process-card:hover {
        transform: translateY(-6px);
    }

    .process-card .icon {
        font-size: 40px;
        color: #e63946;
        margin-bottom: 15px;
    }

    .process-card h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .process-card p {
        font-size: 14px;
        color: #666;
    }


.about-stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px; /* space between each stat */
    margin: 50px 0;
    flex-wrap: wrap; /* responsive for smaller screens */
}

.stat {
    text-align: center;
}

.number {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff4c60;
}

.highlight {
    background: linear-gradient(45deg, #81141f, #cb4c02);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}



.process-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.step {
    position: relative;
    width: 18%;
    text-align: center;
}

/* Arc Shape */
.arc {
    width: 160px;
    height: 80px;
    border: 18px solid;
    border-bottom: none;
    border-radius: 160px 160px 0 0;
    margin: 0 auto;
}

    /* Colors */
    .arc.red {
        border-color: #ff4c60;
    }

    .arc.orange {
        border-color: #f39c12;
    }

    .arc.blue {
        border-color: #17a2b8;
    }

    .arc.green {
        border-color: #8bc34a;
    }

    .arc.purple {
        border-color: #9c27b0;
    }

.node {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 5px solid #ddd;
    border-radius: 50%;
    position: absolute;
    bottom: -60px; /* ⬅️ push it further down */
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add spacing for text */
.step h4 {
    margin-top: 20px; /* ⬅️ ensures no overlap */
}

.arc {
    width: 160px;
    height: 80px;
    border: 18px solid;
    border-bottom: none;
    border-radius: 160px 160px 0 0;
    margin: 0 auto;
    position: relative;
}

/* Icon inside arc */
.icon {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* Match icon color with arc */
.arc.red .icon {
    background: #ff4c60;
}

.arc.orange .icon {
    background: #f39c12;
}

.arc.blue .icon {
    background: #17a2b8;
}

.arc.green .icon {
    background: #8bc34a;
}

.arc.purple .icon {
    background: #9c27b0;
}

/* Node stays same */
.node {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 5px solid #ddd;
    border-radius: 50%;
    position: absolute;
    //bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}





.table-with-image {
    display: flex;
    gap: 25px;
    align-items: center; /* 👈 THIS centers vertically */
    margin-top: 15px;
}

/* Table side */
.table-box {
    width: 65%;
}

/* Image side */
.table-image {
    width: 35%;
    display: flex;
    justify-content: center; /* center image horizontally */
}

    .table-image img {
        width: 100%;
        max-width: 1000px; /* control size */
        border-radius: 10px;
    }

/* Mobile */
@media (max-width: 768px) {
    .table-with-image {
        flex-direction: column;
    }

    .table-box,
    .table-image {
        width: 100%;
    }
}

.plant-table th {
    background: #f36f21;
    color: #fff;
    text-align: center;
}

.plant-table td {
    text-align: center;
}

    /* First column highlight */
    .plant-table td:first-child {
        text-align: left;
        font-weight: 600;
    }



.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

    .advantages-grid div {
        background: #fff;
        border: 1px solid #eee;
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

.dual-section {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

/* Box style */
.info-box {
    flex: 1;
    background: #f9f9f9;
    padding: 18px;
    border-radius: 10px;
    border: 1px solid #eee;
}

/* Highlighted box (Advantages) */
.highlight-box {
    background: #fff7f0;
    border-left: 5px solid #f36f21;
}

/* Titles */
.info-box h4 {
    margin-bottom: 10px;
    color: #f36f21;
    font-weight: 700;
}

/* List style */
.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

    /* Icons */
    .info-box li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #f36f21;
        font-weight: bold;
    }

/* Mobile */
@media (max-width: 768px) {
    .dual-section {
        flex-direction: column;
    }
}







.leader-short {
    margin-top: 10px;
    font-weight: 500;
}

/* Hidden content */
.leader-more {
    display: none;
    margin-top: 10px;
    text-align: left;
}

    .leader-more p {
        margin-bottom: 10px;
        font-size: 14px;
        color: #555;
    }

    /* Quote styling */
    .leader-more .quote {
        font-style: italic;
        color: #f36f21;
        font-weight: 600;
    }

/* Button */
.read-more-btn {
    margin-top: 10px;
    padding: 6px 14px;
    border: none;
    background: #f36f21;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
}

    .read-more-btn:hover {
        background: #d95d0f;
    }

.footer {
    position: relative;
    padding: 80px 0 25px;
    color: #fff;
    overflow: hidden;
    /* glass background */
    background: rgba(18, 6, 8, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    /* wave top */
    border-radius:0;
    /* glow */
    box-shadow: 0 -15px 50px rgba(139, 30, 45, 0.35);
}

    /* watermark logo background */
    .footer::after {
        content: "ARG";
        position: absolute;
        font-size: 220px;
        font-weight: 800;
        color: rgba(255,255,255,0.03);
        top: 20%;
        left: 10%;
        letter-spacing: 15px;
        pointer-events: none;
    }

    /* animated gradient glow */
    .footer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 120deg, transparent, rgba(139,30,45,.15), transparent );
        animation: footerGlow 8s linear infinite;
    }

@keyframes footerGlow {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}


/* grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 45px;
    position: relative;
    z-index: 2;
}

/* logo */
.footer-logo {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* text */
.footer-describe {
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}

/* headings */
.footer-col h4,
.footer-column h4 {
    margin-bottom: 18px;
    position: relative;
}

    .footer-col h4::after,
    .footer-column h4::after {
        content: "";
        width: 40px;
        height: 2px;
        background: linear-gradient(to right,#8b1e2d,#ff4d5a);
        display: block;
        margin-top: 8px;
    }

/* links */
.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        transition: .3s;
    }

        .footer-links a:hover {
            color: #ff4d5a;
            padding-left: 6px;
        }

/* social */
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-right: 10px;
    border-radius: 50%;
    background: rgba(139,30,45,0.25);
    border: 1px solid rgba(139,30,45,0.4);
    color: #fff;
    transition: .3s;
}

    .footer-social a:hover {
        background: linear-gradient(45deg,#8b1e2d,#ff4d5a);
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(139,30,45,.5);
    }

/* contact icons */
.footer-column i {
    color: #ff4d5a;
    margin-right: 8px;
}

/* bottom */
.footer-bottom {
    margin-top: 45px;
    padding-top: 18px;
    border-top: 1px solid rgba(139,30,45,.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255,255,255,.65);
    position: relative;
    z-index: 2;
}

/* responsive */
@media(max-width:768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .footer::after {
        font-size: 120px;
    }
}



.exec-card {
    grid-column: 1 / -1;
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* left content */
.exec-content {
    flex: 1;
}

/* right image */
.exec-img {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fca311;
    flex-shrink: 0;
}

    .exec-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.exec-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.exec-role {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #fca311;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.exec-card p {
    font-size: 15px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

.exec-quote {
    margin-top: 18px;
    padding: 14px 18px;
    background: linear-gradient(90deg,#fff7e6,#fff);
    border-left: 4px solid #fca311;
    font-style: italic;
    font-weight: 600;
    color: #333;
    border-radius: 8px;
    position: relative;
}
.exec-card {
    animation: floatCard 6s ease-in-out infinite;
}

@media(max-width:900px) {

    .exec-card {
        flex-direction: column;
        text-align: center;
    }

    .exec-img {
        width: 220px;
        height: 220px;
    }
}