/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FIX NAV */
.nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav ul li a {
    text-decoration: none;
    color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    transition: 0.4s;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

/* OVERLAY */
.menu-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}






* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* Colors */
:root {
    --brown: #ffffff;
    --light-brown: #ffffff;
    --white: #5d4037;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    z-index: 999;
}

/* Container */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 5%;
}

/* Logo */
.logo span {
    font-size: 24px;
    font-weight: 700;
    color: var(--brown);
}

/* Nav */
.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: var(--brown);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav ul li a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--brown);
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav ul li a:hover::after {
    width: 100%;
}

/* Right Section */
.right-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Social Icons */
.social-icons a {
    color: var(--brown);
    font-size: 16px;
    margin: 0 5px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--light-brown);
}

/* Button */
.contact-btn {
    padding: 10px 18px;
    background: var(--brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: var(--light-brown);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: var(--brown);
    margin: 4px 0;
    transition: 0.4s;
}

/* Mobile */
@media (max-width: 992px) {

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 260px;
        background: var(--brown);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s;
    }

    .nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav ul li a {
        color: var(--white);
        font-size: 18px;
    }

    .nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .social-icons {
        display: none;
    }

    .contact-btn {
        display: none;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* Logo Image */
.logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Active Link */
.nav ul li a.active {
    color: var(--brown);
    font-weight: 700;
}

.nav ul li a.active::after {
    width: 100%;
}

/* Mobile Active Fix */
@media (max-width: 992px) {
    .nav ul li a.active {
        color: #fff;
    }
}
/* Smooth transition */
.header {
    transition: all 0.35s ease;
}

/* Default (large header) */
.container {
    padding: 18px 5%;
    transition: all 0.35s ease;
}

.logo img {
    height: 48px;
    transition: all 0.35s ease;
}

/* 🔥 Shrink State */
.header.scrolled {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.header.scrolled .container {
    padding: 10px 5%;
}

.header.scrolled .logo img {
    height: 36px;
}

/* Optional: tighter nav spacing */
.header.scrolled .nav ul {
    gap: 22px;
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

/* Slides */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* Gradient Overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(62,39,35,0.85),
        rgba(62,39,35,0.5),
        rgba(200,200,200,0.2)
    );
}

/* Content */
.content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
    padding: 120px 5%;
}

/* Tag */
.tag {
    display: inline-block;
    background: linear-gradient(to right, #3e2723, #6d4c41);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Heading */
.content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Text */
.content p {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Buttons */
.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* Primary */
.btn.primary {
    background: #fff;
    color: #3e2723;
}

.btn.primary:hover {
    background: #ddd;
}

/* Outline */
.btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: #fff;
    color: #3e2723;
}

/* Responsive */
@media (max-width: 768px) {
    .content h1 {
        font-size: 32px;
    }

    .content {
        padding-top: 150px;
    }
}



/* Section Background */
.overview {
    padding: 50px 5%;
    background: linear-gradient(
        135deg,
        #f5f5f5,
        #eeeeee,
        #fafafa
    );
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.overview::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(62,39,35,0.08), transparent 70%);
    top: -100px;
    right: -100px;
}

/* Container */
.overview-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left */
.overview-left {
    flex: 1;
}

.overview-left .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.overview-left h2 {
    font-size: 42px;
    color: #3e2723;
    margin-bottom: 20px;
}

.overview-left p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Right Card */
.overview-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.info-card {
    background: linear-gradient(135deg, #3e2723, #1c1c1c);
    color: #fff;
    padding: 40px;
    border-radius: 20px;
    max-width: 350px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    transition: 0.4s;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.info-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

/* Bottom Cards */
.overview-cards {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

/* Card */
.card {
    flex: 1;
    min-width: 250px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card i {
    font-size: 28px;
    color: #3e2723;
    margin-bottom: 15px;
}

.card h4 {
    margin-bottom: 10px;
    color: #3e2723;
}

.card p {
    color: #666;
    font-size: 14px;
}

/* Hover effect */
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .overview-container {
        flex-direction: column;
    }

    .overview-left h2 {
        font-size: 32px;
    }
}


/* Section */
.mission-section {
    padding: 50px 5%;
    background: linear-gradient(135deg, #f3f3f3, #eaeaea);
    position: relative;
}

/* Container */
.mission-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Card */
.mission-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 420px;
    flex: 1;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

/* Hover Premium */
.mission-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Icon */
.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}

/* Icon Colors */
.icon.green {
    background:  #3e2723;
}

.icon.dark {
    background: #3e2723;
}

/* Heading */
.mission-card h3 {
    margin-bottom: 15px;
    color: #3e2723;
    letter-spacing: 1px;
}

/* Text */
.mission-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Bottom Bar (Floating effect) */
.card-bar {
    position: absolute;
    width: 60px;
    height: 10px;
    border-radius: 10px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

/* Bar Colors */
.card-bar.green {
    background:  #3e2723;
}

.card-bar.dark {
    background: #3e2723;
}

/* Bottom Strip */
.mission-strip {
    margin-top: 60px;
    background: linear-gradient(to right, #1c1c1c, #3e2723);
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 10px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        align-items: center;
    }
}


/* Section (NO padding) */
.values-section {
    background: linear-gradient(135deg, #f4f4f4, #ececec);
    position: relative;
}

/* Subtle lighting effect */
.values-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(62,39,35,0.08), transparent 70%);
    top: -100px;
    left: -100px;
}

/* Header */
.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.values-header h2 {
    font-size: 36px;
    color: #3e2723;
    letter-spacing: 1px;
}

/* Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 5% 80px; /* only bottom spacing */
}

/* Card */
.value-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

/* Hover Glow */
.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* Icon Box */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3e2723, #6d4c41);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

/* Icon hover animation */
.value-card:hover .icon-box {
    transform: rotate(8deg) scale(1.1);
}

/* Title */
.value-card h4 {
    font-size: 16px;
    color: #3e2723;
    margin-bottom: 10px;
}

/* Text */
.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive tweak */
@media (max-width: 768px) {
    .values-header h2 {
        font-size: 26px;
    }
}

/* Strip Section */
.value-strip {
    margin-top: 0;
    padding: 18px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* Premium gradient */
    background: linear-gradient(
        90deg,
        #5f6a72,
        #3e2723,
        #1c1c1c
    );
}

/* Soft glow overlay */
.value-strip::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15), transparent 70%);
    top: -50px;
    left: 20%;
    filter: blur(40px);
}

/* Text */
.value-strip p {
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    opacity: 0.95;
}

/* Optional hover effect (subtle) */
.value-strip:hover {
    filter: brightness(1.05);
}

/* Section */
.divisions {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f4f4f4, #ececec);
}

/* Header */
.divisions-header {
    text-align: center;
    margin-bottom: 50px;
}

.divisions-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.divisions-header h2 {
    font-size: 32px;
    color: #3e2723;
    margin-bottom: 10px;
}

.divisions-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* Grid */
.divisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card */
.division-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Image */
.division-card .img {
    overflow: hidden;
    height: 180px;
}

.division-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

/* Hover zoom */
.division-card:hover img {
    transform: scale(1.1);
}

/* Content */
.division-card .content {
    padding: 20px;
}

.division-card h4 {
    color: #3e2723;
    margin-bottom: 10px;
}

.division-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Button */
.division-card a {
    display: inline-block;
    padding: 8px 16px;
    background: #3e2723;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
}

.division-card a:hover {
    background: #5d4037;
}

/* Hover lift */
.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}


/* CTA Section */
.cta {
    position: relative;
    background: url('/Image/Global.png') center/cover no-repeat;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay */
.cta-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(62,39,35,0.9),
        rgba(28,28,28,0.85),
        rgba(120,120,120,0.4)
    );
    top: 0;
    left: 0;
}

/* Content */
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: auto;
}

/* Heading */
.cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* Text */
.cta p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

/* Buttons Style */
.cta .btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

/* Primary */
.cta .btn.primary {
    background: linear-gradient(to right, #3e2723, #6d4c41);
    color: #fff;
}

.cta .btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Outline */
.cta .btn.outline {
    border: 2px solid #fff;
    color: #fff;
}

.cta .btn.outline:hover {
    background: #fff;
    color: #3e2723;
}

/* Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    font-size: 14px;
    opacity: 0.9;
}

.cta-features div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Icons */
.cta-features i {
    color: #a5d6a7;
}

/* Responsive */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 28px;
    }
}




/* Section */
.roadmap {
    padding: 40px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
    text-align: center;
}

/* Header */
.roadmap-header {
    margin-bottom: 60px;
}

.roadmap-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.roadmap-header h2 {
    font-size: 32px;
    color: #3e2723;
}

/* Container */
.roadmap-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card */
.roadmap-card {
    position: relative;
    background: linear-gradient(135deg, #3e2723, #1c1c1c);
    color: #fff;
    padding: 60px 30px 80px;
    border-radius: 15px;
    max-width: 350px;
    flex: 1;
    transition: 0.4s;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Hover */
.roadmap-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

/* Icon (Floating Circle) */
.roadmap-card .icon {
    position: absolute;
    top: +5px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: #fff;
    color: #3e2723;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Title */
.roadmap-card h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Text */
.roadmap-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .roadmap-container {
        flex-direction: column;
        align-items: center;
    }
}



/* Section */
.contact-section {
    padding: 100px 5%;
    background: linear-gradient(
        135deg,
        #3e2723,
        #1c1c1c
    );
    color: #fff;
}

/* Container */
.contact-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Left Side */
.contact-left {
    flex: 1;
    max-width: 550px;
}

.contact-left .tag {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 15px;
    display: inline-block;
}

.contact-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.contact-left p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-left .sub-text {
    font-size: 14px;
    opacity: 0.7;
}

/* Link */
.contact-link {
    display: inline-block;
    margin-top: 20px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 3px;
    transition: 0.3s;
}

.contact-link:hover {
    opacity: 0.7;
}

/* Right Form */
.contact-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Form Card */
.form-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Form Heading */
.form-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Inputs */
.form-card input,
.form-card textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: none;
    background: #e0e0e0;
    font-size: 14px;
}

/* Button */
.form-card button {
    background: linear-gradient(to right, #3e2723, #6d4c41);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.form-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-left h2 {
        font-size: 30px;
    }
}


/* Section */
.industries {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
    text-align: center;
}

/* Header */
.industries-header {
    margin-bottom: 40px;
}

.industries-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 15px;
}

.industries-header h2 {
    font-size: 28px;
    color: #3e2723;
}

/* Grid */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Chip Cards */
.industry {
    background: #fff;
    padding: 15px 25px;
    border-radius: 30px;
    font-size: 14px;
    color: #3e2723;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
    cursor: pointer;
}

/* Hover Effect */
.industry:hover {
    transform: translateY(-5px);
    background: linear-gradient(to right, #3e2723, #6d4c41);
    color: #fff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .industries-header h2 {
        font-size: 22px;
    }
}







/* Footer Base */
.footer {
    position: relative;
    background: url('/Image/Global.png') center/cover no-repeat fixed;
    padding: 80px 5% 40px;
    color: #fff;
    overflow: hidden;
}

/* Animated Overlay */
.footer-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        270deg,
        rgba(62,39,35,0.95),
        rgba(28,28,28,0.9),
        rgba(62,39,35,0.95)
    );
    background-size: 400% 400%;
    animation: gradientMove 10s ease infinite;
    top: 0;
    left: 0;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

/* Text */
.footer p {
    opacity: 0.85;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Headings */
.footer-col h4 {
    margin-bottom: 15px;
}

/* Links */
.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Hover links */
.footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer ul li a:hover {
    color: #ccc;
    padding-left: 5px;
}

/* Social */
.socials a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.socials a:hover {
    background: #fff;
    color: #3e2723;
}

/* Contact Icons */
.contact-info i {
    margin-right: 10px;
    color: #ffffff;
}

/* Newsletter */
.newsletter {
    display: flex;
    margin-top: 15px;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 20px 0 0 20px;
    outline: none;
}

.newsletter button {
    padding: 10px 15px;
    border: none;
    background: #3e2723;
    color: #fff;
    border-radius: 0 20px 20px 0;
    cursor: pointer;
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    opacity: 0.7;
}

/* Scroll Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #3e2723;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

/* Show button */
.scroll-top.show {
    opacity: 1;
}




.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}
.slide {
    transition: opacity 1s ease-in-out;
}







/* HERO */
.about-hero {
    height: 40vh;
    background: url('/Image/Slide2.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.about-hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(62,39,35,0.8);
}

.about-hero-content {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-size: 40px;
}

/* OVERVIEW */
.about-overview {
    padding: 80px 5%;
    background: #f5f5f5;
}

.about-overview .container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #3e2723;
    margin-bottom: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* STATS */
.about-stats {
    background: #3e2723;
    color: #fff;
    padding: 50px 5%;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat h3 {
    font-size: 28px;
}

/* MISSION */
.about-mission {
    padding: 80px 5%;
    background: #ececec;
}

.mission-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-box {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.mission-box:hover {
    transform: translateY(-8px);
}

.mission-box i {
    font-size: 30px;
    color: #3e2723;
    margin-bottom: 10px;
}

/* CTA */
.about-cta {
    background: linear-gradient(to right, #3e2723, #1c1c1c);
    color: #fff;
    text-align: center;
    padding: 60px 5%;
}

.about-cta a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #fff;
    color: #3e2723;
    border-radius: 30px;
    text-decoration: none;
}




/* Section */
.global {
    padding: 80px 5%;
    background: linear-gradient(135deg, #f5f5f5, #ececec);
}

/* Header */
.global-header {
    text-align: center;
    margin-bottom: 50px;
}

.global-header .tag {
    background: #ddd;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}

.global-header h2 {
    color: #3e2723;
    font-size: 30px;
    margin-bottom: 10px;
}

.global-header p {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* Layout */
.global-container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

/* Map */
.global-map {
    position: relative;
    flex: 1;
}

.global-map img {
    width: 100%;
    filter: grayscale(100%);
}

/* Dots */
.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3e2723;
    border-radius: 50%;
}

/* Positioning (adjust if needed) */
.dot.europe { top: 35%; left: 48%; }
.dot.africa { top: 55%; left: 48%; }
.dot.middleeast { top: 45%; left: 58%; }
.dot.asia { top: 50%; left: 70%; }

/* Content */
.global-content {
    flex: 1;
}

.region {
    margin-bottom: 20px;
}

.region h4 {
    color: #3e2723;
    margin-bottom: 5px;
}

.region p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .global-container {
        flex-direction: column;
    }
}




/* Container */
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Nav */
.nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #3e2723;
    margin: 4px 0;
    transition: 0.3s;
}

/* MOBILE FIX */
@media (max-width: 992px) {

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;

        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .nav.active {
        max-height: 400px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }

    /* Hide desktop items */
    .right-section .social-icons,
    .right-section .contact-btn {
        display: none;
    }
}



/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
}

/* Sidebar */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 1000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
}

/* Active State */
.mobile-menu.active {
    right: 0;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Top */
.menu-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.menu-top img {
    height: 40px;
}

.menu-top span {
    font-size: 28px;
    cursor: pointer;
}

/* Links */
.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #3e2723;
    font-size: 16px;
}

/* CTA Button */
.download-btn {
    margin-top: auto;
    background: linear-gradient(to right, #3e2723, #6d4c41);
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 25px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* Social */
.menu-socials {
    text-align: center;
}

.menu-socials i {
    margin: 0 10px;
    color: #3e2723;
    cursor: pointer;
}




