html {
    color-scheme: light;
}
/* ========================
   GLOBAL RESET & BODY
======================== */
*, *::before, *::after {
    box-sizing: border-box;
}
body{
    margin:0;
    font-family:Segoe UI,Arial,sans-serif;
    background:#f5f6f8;
    color:#3A3A3A;
}

/* ========================
   HEADER
======================== */
.logo-header{
    background:#fff;
    padding:calc(15px + env(safe-area-inset-top)) 20px 15px 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    box-shadow:0 2px 6px rgba(0,0,0,0.1);
    position:relative;
}

.logo{
    max-width:285px;
    height:auto;
}

/* Navigation inside header */
.header-nav {
    display: flex;
    gap: 20px;
}

.header-nav a {
    color: #3A3A3A;
    text-decoration: none;
    padding: 10px 15px;
    transition: 0.3s ease;
}

.header-nav a:hover {
    background: #66CCCC;
    color: #3A3A3A;
    border-radius: 5px;
}

/* Active page */
.header-nav a.active {
    background: #66CCCC;
    color: #3A3A3A;
    border-radius: 5px;
}

/* ========================
   HERO
======================== */
.hero{
    background: url("/images/hero\ wge.png") center/cover no-repeat;
    color:white;
    text-align:center;
    padding:90px 20px;
}

.hero-counters{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:40px;
    margin-top:30px;
}

.counter-box{
    background:#3A3A3A;
    padding:25px 30px;
    border-radius:8px;
    text-align:center;
    min-width:160px;
}

.counter{font-size:36px;color:#66CCCC;display:block;margin-bottom:8px}
.counter-box p{color:white;font-weight:500;margin:0;font-size:16px}

/* ========================
   CONTENT
======================== */
.content{
    background:white;
    max-width:1200px;
    margin:25px auto;
    padding:25px;
    border-radius:6px;
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

footer{
    background:#3A3A3A;
    color:#66CCCC;
    text-align:center;
    padding:6px;
    font-size:13px;
}

/* =====================================================
   MISSION SECTION – FULL REPLACEMENT CSS
===================================================== */

.mission-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 56px;

    max-width: 1200px;
    margin: 70px auto;
    padding: 70px 40px;

    background: linear-gradient(135deg, #f4fbf9, #e9f4fb);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);

    overflow: hidden;
    position: relative;
}

/* Decorative accent */
.mission-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(#66CC99, #6699CC);
}

/* =====================
   IMAGE
===================== */
.mission-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.mission-image img {
    display: block;
    width: 100%;
    max-width: 480px;
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.9s ease;
}

/* =====================
   TEXT
===================== */
.mission-text {
    flex: 1.25;
    padding-left: 40px; /* spacing after accent bar */
    max-width: 820px;
}

.mission-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2f2f2f;
    margin-bottom: 22px;
    position: relative;
}

.mission-text h2::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    margin-top: 12px;
    background: #66CC99;
    border-radius: 2px;
}

.mission-intro {
    font-size: 18px;
    line-height: 1.85;
    color: #3A3A3A;
    margin-bottom: 40px;
    max-width: 640px;
}

/* =====================
   FEATURES LIST
===================== */
.mission-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    margin-bottom: 28px;

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.feature-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.feature-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #6699CC;
    margin-bottom: 6px;
}

.feature-item p {
    margin: 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: #3A3A3A;
}

/* =====================
   HIGHLIGHT
===================== */
.highlight {
    color: #6699CC;
    font-weight: 600;
}

.text-green { color: #66CC99; }
.text-teal  { color: #66CCCC; }
.text-blue  { color: #6699CC; }
.text-dark  { color: #3A3A3A; }

/* ========================
   Values Strip
========================= */
.values-strip {
    background: #f0f8f7;
    padding: 50px 25px;
    border-radius: 12px;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.values-list {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    padding: 0;
    margin: 0;
}

.value-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #3A3A3A;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.value-icon {
    margin-bottom: 12px;
}

/* Animate on scroll */
.values-strip.visible .value-item {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation */
.values-strip.visible .value-item:nth-child(1) { transition-delay: 0.2s; }
.values-strip.visible .value-item:nth-child(2) { transition-delay: 0.4s; }
.values-strip.visible .value-item:nth-child(3) { transition-delay: 0.6s; }
.values-strip.visible .value-item:nth-child(4) { transition-delay: 0.8s; }



/* =====================
   SCROLL ANIMATIONS
===================== */
.split-section.slide-up {
    opacity: 0;
    transform: translateY(40px);
}

.split-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animate image */
.split-section.visible .mission-image img {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger feature animation */
.split-section.visible .feature-item {
    opacity: 1;
    transform: translateY(0);
}

.split-section.visible .feature-item:nth-child(1) { transition-delay: 0.2s; }
.split-section.visible .feature-item:nth-child(2) { transition-delay: 0.35s; }
.split-section.visible .feature-item:nth-child(3) { transition-delay: 0.5s; }
.split-section.visible .feature-item:nth-child(4) { transition-delay: 0.65s; }

/* ========================
   SERVICES
======================== */
.service-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;                       /* controlled spacing */
    margin: 40px auto;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    max-width: 1100px;               /* stops over-stretch */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.service-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-section.reverse {
    flex-direction: row-reverse;
}

/* Text column */
.service-text {
    flex: 1.2;                      /* text slightly wider */
    min-width: 280px;
}

.service-text h2 {
    color: #6699CC;
    margin-bottom: 12px;
}

.service-text p {
    color: #3A3A3A;
    line-height: 1.7;
}

.service-text ul {
    margin-top: 10px;
    padding-left: 20px;
}

/* Image column */
.service-image {
    flex: 1;
    min-width: 260px;
    text-align: center;
}

.service-image img {
    width: 100%;
    max-width: 460px;               /* 🔥 keeps image tight */
    border-radius: 10px;
    display: block;
    margin: 0 auto;
}

/* Scroll animation trigger */
.service-section.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ========================
   BRANDS
======================== */
/* ===== Brands We Support Section ===== */
.brands-section {
    background: #f5f6f8;
    padding: 50px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.brands-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.brands-section h2 {
    font-size: 28px;
    color: #3A3A3A;
    margin-bottom: 30px;
}

.brands-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.brand {
    flex: 0 1 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.brand img {
    max-width: 150px;
    max-height: 100px;
    object-fit: contain;
    filter: grayscale(70%);
    transition: transform 0.3s, filter 0.3s;
}

.brand img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}
.brand.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.brand.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Alternate slide direction for even logos */
.brands-logos .brand:nth-child(even).fade-in {
    transform: translateX(30px); /* slide from right */
}
.brands-logos .brand:nth-child(even).fade-in.visible {
    transform: translateX(0);
}


/* ========================
   CONTACT
======================== */
.contact-content {
    max-width: 900px;
    margin: 30px auto;
    padding: 25px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.contact-item {
    flex: 1 1 250px;
}

.contact-item h3 {
    margin-bottom: 10px;
    color: #6699CC;
}

.contact-item p, .contact-item a {
    margin: 0;
    color: #3A3A3A;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #66CC99;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #3A3A3A;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a i {
    margin-right: 6px;
}

.social-links a:hover {
    color: #66CC99;
}

.office-locations {
    margin: 30px auto;
    max-width: 1100px;
    padding: 20px;
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.office-card {
    background: white;
    border-left: 5px solid #6699CC;
    border-radius: 8px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.office-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.12);
}

.office-card h3 {
    margin-top: 0;
    color: #3A3A3A;
}


.map-container {
    margin-top: 30px;
    border-radius: 6px;
    overflow: hidden;
}
.contact-form-container {
    margin-top: 30px;
}

.contact-form h2 {
    color: #6699CC;
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-top: 12px;
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #66CC99;
    outline: none;
}

.contact-form button {
    background-color: #6699CC;
    color: #fff;
    padding: 12px 20px;
    margin-top: 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-form button:hover {
    background-color: #66CCCC;
}


/* ========================
   MOBILE MENU
======================== */

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
}
  .header-phone {
        display: none; /* hide on small screens to keep header clean */
    }
.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:80%;
    height:100vh;
    padding-top:calc(100px + env(safe-area-inset-top));
    padding-bottom:calc(20px + env(safe-area-inset-bottom));
    background:#3A3A3A;
    z-index:9999;
    display:flex;
    flex-direction:column;
    text-align: left;
    transition:0.35s ease;
}

.mobile-menu.show{right:0;}

.mobile-menu a,
.mobile-dropbtn{
    color:white;
    padding:16px;
    text-align:left;
    text-decoration:none;
    border-bottom:1px solid #555;
}

.mobile-dropdown-content{
    display:none;
    flex-direction:column;
    background:#2a2a2a;
}
.mobile-dropdown-content a {
    padding-left: 30px;   /* indent submenu */
    padding-right: 16px;  /* optional */
    text-align: left;     /* keep text left-aligned */
    border-bottom: 1px solid #444;
}

.mobile-dropdown.open .mobile-dropdown-content{
    display:flex;
    flex-direction:column;
}
.mobile-dropbtn .caret {
    float: right;         /* keep caret on right side of parent */
    margin-left: 6px;
    transition: transform 0.25s;
}

.mobile-dropdown.open .caret {
    transform: rotate(90deg);  /* points right when submenu open */
}

.mobile-close{
    position:absolute;
    top:20px;
    right:20px;
    font-size:34px;
    cursor:pointer;
    color:white;
    opacity:.85;
    transition:opacity 0.3s ease;
}

.mobile-close:hover{opacity:1}

.mobile-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(6px);
    opacity:0;
    pointer-events:none;
    transition:.35s;
    z-index:998;
}

.mobile-overlay.show{
    opacity:1;
    pointer-events:auto;
}

/* ========================
   RESPONSIVE
======================== */
@media(max-width:700px){
    .main-nav{display:none;}
    .header-nav {display: none; /* hide by default */}
    .hamburger{display:block;position:absolute;right:20px;top:50%;transform:translateY(-50%)}
    .logo-header{justify-content:left;}
    .hero{background: url("/images/hero\ wge\ mob.png") center/cover no-repeat;}
    .hero-counters{flex-direction:column;align-items:center;}
    .counter-box{min-width:200px;}
     .service-section {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        margin: 60px 0;
    }

    .service-section.reverse {
        flex-direction: column;
    }

    .service-icon {
        order: 1;
    }

    .service-text {
        order: 3;
        text-align: left; /* keeps paragraphs readable */
    }

    .service-image {
        order: 2;
        width: 100%;
    }

    .service-text ul {
        padding-left: 20px;
    }
 
    .mission-section {
        flex-direction: column;
        padding: 50px 24px;
        gap: 40px;
    }

    .mission-text h2 {
        font-size: 30px;
        padding-left: 24px;
    }

    .mission-intro {
        font-size: 17px;
    }

    .mission-image img {
        max-width: 100%;
        transform: translateY(20px);
    }
    .values-list {
        flex-direction: column;
        align-items: center;
    }
 
}
