/*=====================================================
GOOGLE FONT
=====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');


/*=====================================================
01 RESET
=====================================================*/

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter",sans-serif;
    background:#F8FAFC;
    color:#334155;
    line-height:1.6;
    overflow-x:hidden;
    text-rendering:optimizeLegibility;
    -webkit-font-smoothing:antialiased;
}

img{
    display:block;
    max-width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

button{
    border:none;
    background:none;
    cursor:pointer;
    font:inherit;
}

ul{
    list-style:none;
}


/*=====================================================
02 DESIGN SYSTEM
=====================================================*/

:root{

    /* BRAND COLORS — matched to the HSS brochure */

    --clr-primary:#3CB54A;        /* Leafy green from logo */

    --clr-primary-dark:#2E9A3D;

    --clr-primary-light:#6FD17D;

    --clr-secondary:#1B2A6B;      /* Deep navy from wordmark/footer wave */

    --clr-secondary-light:#2B3F8F;

    --clr-accent:#F4C542;         /* Gold, used sparingly */

    --clr-white:#FFFFFF;

    --clr-light:#F8FAFC;

    --clr-section-alt:#F1F7F3;

    --clr-dark:#0F172A;

    --clr-text:#334155;

    --clr-muted:#64748B;


    /* GLASS */

    --glass-bg:rgba(255,255,255,.10);

    --glass-border:rgba(255,255,255,.20);


    /* BORDERS */

    --border-soft:rgba(27,42,107,.10);


    /* SHADOWS */

    --shadow-sm:
    0 10px 25px rgba(27,42,107,.08);

    --shadow-md:
    0 20px 40px rgba(27,42,107,.15);

    --shadow-lg:
    0 30px 80px rgba(27,42,107,.18);


    /* BORDER RADIUS */

    --radius-sm:12px;

    --radius-md:20px;

    --radius-lg:32px;

    --radius-pill:999px;


    /* CONTAINER */

    --container:1200px;


    /* TRANSITIONS */

    --transition:.35s cubic-bezier(.4,0,.2,1);

}


/*=====================================================
03 UTILITIES
=====================================================*/

.container,
.wrap{

    width:min(92%,var(--container));

    margin-inline:auto;

}

.section{

    padding:7rem 0;

}

.section-alt{

    background:var(--clr-section-alt);

}

.text-center{

    text-align:center;

}


/*=====================================================
04 TYPOGRAPHY
=====================================================*/

h1,
h2,
h3,
h4{

    font-weight:700;

    line-height:1.15;

    color:var(--clr-secondary);

}

p{

    color:var(--clr-muted);

}

.highlight{

    color:var(--clr-primary);

    font-weight:600;

}


/*=====================================================
05 BUTTONS
=====================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:.5rem;

    padding:15px 32px;

    border-radius:var(--radius-pill);

    font-size:.95rem;

    font-weight:600;

    cursor:pointer;

    white-space:nowrap;

    transition:var(--transition);

}

.btn-primary{

    background:linear-gradient(
        135deg,
        var(--clr-primary),
        var(--clr-primary-light)
    );

    color:var(--clr-white);

    box-shadow:var(--shadow-md);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 25px 50px rgba(60,181,74,.35);

}

.btn-primary:active{

    transform:translateY(0);

}

.btn-outline{

    background:transparent;

    border:2px solid var(--clr-secondary);

    color:var(--clr-secondary);

}

.btn-outline:hover{

    background:var(--clr-secondary);

    color:var(--clr-white);

    transform:translateY(-4px);

}

.btn-outline:active{

    transform:translateY(0);

}

.btn-cta-dark{

    background:var(--clr-secondary);

    color:var(--clr-white);

}

.btn-cta-dark:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(27,42,107,.25);

}

.btn-cta-light{

    background:var(--clr-white);

    color:var(--clr-secondary);

    border:1px solid var(--border-soft);

}

.btn-cta-light:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

.btn:focus-visible{

    outline:3px solid var(--clr-primary);

    outline-offset:4px;

}


/*=====================================================
06 NAVBAR
=====================================================*/

.navbar{

    position:absolute;

    top:25px;

    left:0;

    width:100%;

    z-index:1000;

}

.nav-inner{

    width:min(92%,var(--container));

    margin-inline:auto;

    display:flex;

    align-items:center;

    justify-content:space-between;

    height:80px;

    padding:0 30px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:var(--radius-md);

    box-shadow:var(--shadow-lg);

    transition:var(--transition);

}


/* BRAND */

.brand{

    display:flex;

    align-items:center;

    gap:15px;

    flex-shrink:0;

}

.brand img{

    width:54px;

    height:54px;

    object-fit:contain;

}

.brand-text{

    display:flex;

    flex-direction:column;

}

.brand-name{

    color:var(--clr-secondary);

    font-size:1rem;

    font-weight:700;

    letter-spacing:.3px;

}

.brand-tagline{

    color:var(--clr-muted);

    font-size:.78rem;

}


/* NAVIGATION */

nav[aria-label="Primary"]{

    margin-inline:auto;

}

.nav-links{

    display:flex;

    align-items:center;

    gap:36px;

}

.nav-links a{

    position:relative;

    color:var(--clr-secondary);

    font-size:.95rem;

    font-weight:600;

    transition:var(--transition);

}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:999px;

    background:var(--clr-primary);

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--clr-primary);

}

.nav-links a:hover::after{

    width:100%;

}


/* ACTIONS */

.nav-actions{

    display:flex;

    align-items:center;

    gap:14px;

}

.nav-actions .btn{

    padding:12px 26px;

    font-size:.9rem;

}


/* HAMBURGER */

.nav-toggle{

    display:none;

    width:44px;

    height:44px;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    gap:5px;

    border-radius:50%;

}

.nav-toggle span{

    width:22px;

    height:2px;

    background:var(--clr-secondary);

    border-radius:999px;

    transition:var(--transition);

}

.nav-toggle.active span:nth-child(1){

    transform:translateY(7px) rotate(45deg);

}

.nav-toggle.active span:nth-child(2){

    opacity:0;

}

.nav-toggle.active span:nth-child(3){

    transform:translateY(-7px) rotate(-45deg);

}


/* SCROLL STATE */

.navbar.scrolled{

    position:fixed;

    top:15px;

    animation:navDrop .4s ease;

}

.navbar.scrolled .nav-inner{

    height:72px;

    background:rgba(255,255,255,.92);

    box-shadow:0 15px 45px rgba(27,42,107,.15);

}


/* MOBILE MENU */

.mobile-menu{

    position:fixed;

    top:0;

    right:0;

    width:min(85%,360px);

    height:100vh;

    background:var(--clr-white);

    box-shadow:-20px 0 60px rgba(0,0,0,.15);

    padding:120px 36px 36px;

    transform:translateX(100%);

    transition:transform .4s cubic-bezier(.4,0,.2,1);

    z-index:1500;

    display:flex;

    flex-direction:column;

    gap:40px;

}

.mobile-menu.active{

    transform:translateX(0);

}

.mobile-links{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.mobile-links a{

    color:var(--clr-secondary);

    font-size:1.1rem;

    font-weight:600;

}

.mobile-actions{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.mobile-actions .btn{

    width:100%;

}


/*=====================================================
07 HERO
=====================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:start;

    overflow:hidden;

    background:linear-gradient(
        180deg,
        #F8FAFC 0%,
        #FFFFFF 100%
    );

}

/* Decorative background shapes */

.hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-180px;

    right:-180px;

    background:radial-gradient(
        circle,
        rgba(60,181,74,.18),
        transparent 70%
    );

    border-radius:50%;

    z-index:0;

}

.hero::after{

    content:"";

    position:absolute;

    width:450px;

    height:450px;

    left:-120px;

    bottom:-120px;

    background:radial-gradient(
        circle,
        rgba(27,42,107,.08),
        transparent 70%
    );

    border-radius:50%;

    z-index:0;

}

.hero-inner{

    position:relative;

    z-index:2;

    width:min(92%,var(--container));

    margin-inline:auto;

    display:grid;

    grid-template-columns:58% 42%;

    align-items:start;

    gap:60px;

    padding-top:130px;

    padding-bottom:60px;

}


/*=====================================================
HERO CONTENT
=====================================================*/

.hero-copy{

    max-width:650px;

    display:flex;

    flex-direction:column;

}

.hero-eyebrow{

    display:inline-flex;

    align-items:center;

    gap:.6rem;

    margin-bottom:28px;

    color:var(--clr-primary);

    font-size:.85rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) both;

}

.hero h1{

    margin-bottom:1.8rem;

    color:var(--clr-secondary);

    font-size:clamp(3rem,5.2vw,5.2rem);

    font-weight:800;

    line-height:1.08;

    letter-spacing:-2px;

    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) .15s both;

}

.hero h1 span{

    color:var(--clr-primary);

}

.lead{

    max-width:560px;

    margin-bottom:2.2rem;

    color:var(--clr-muted);

    font-size:1.1rem;

    line-height:1.85;

    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) .3s both;

}

.hero-actions{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:2.5rem;

    flex-wrap:wrap;

    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) .45s both;

}


/*=====================================================
HERO IMAGE
=====================================================*/

.hero-art{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    margin-top:6px;

}

.frame{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:var(--clr-white);

    padding:10px;

    box-shadow:0 30px 80px rgba(27,42,107,.18);

    border:1px solid rgba(255,255,255,.65);

    transition:var(--transition);

    width:100%;

    max-width:460px;

}

.frame:hover{

    transform:translateY(-10px);

    box-shadow:0 40px 90px rgba(27,42,107,.25);

}

.frame img{

    display:block;

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    border-radius:24px;

    transition:transform .6s ease;

}

.frame:hover img{

    transform:scale(1.04);

}

.hero-art::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    background:radial-gradient(
        circle,
        rgba(60,181,74,.18),
        transparent 70%
    );

    border-radius:50%;

    top:-60px;

    right:-70px;

    z-index:-2;

}

.hero-art::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:radial-gradient(
        circle,
        rgba(27,42,107,.12),
        transparent 70%
    );

    bottom:-50px;

    left:-40px;

    border-radius:50%;

    z-index:-2;

}


/*=====================================================
BADGE
=====================================================*/

.badge{

    position:absolute;

    right:-10px;

    bottom:30px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    padding:18px 24px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    border:1px solid rgba(255,255,255,.5);

    max-width:230px;

    animation:floatBadge 5s ease-in-out infinite;

}

.badge strong{

    display:block;

    color:var(--clr-primary);

    font-size:1rem;

    margin-bottom:6px;

}

.badge span{

    color:var(--clr-text);

    font-size:.85rem;

    line-height:1.5;

}


/*=====================================================
HERO STATISTICS
=====================================================*/

.hero-stats{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    animation:fadeUp .8s cubic-bezier(.2,.7,.2,1) .6s both;

}

.hero-stat{

    flex:1;

    min-width:150px;

    padding:24px;

    border-radius:24px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.7);

    box-shadow:0 20px 40px rgba(27,42,107,.08);

    transition:var(--transition);

    position:relative;

    overflow:hidden;

}

.hero-stat::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:linear-gradient(
        90deg,
        var(--clr-primary),
        var(--clr-secondary)
    );

}

.hero-stat:hover{

    transform:translateY(-8px);

    box-shadow:0 30px 60px rgba(27,42,107,.15);

}

.hero-stat strong{

    display:block;

    font-size:2rem;

    color:var(--clr-primary);

    margin-bottom:8px;

    font-weight:800;

}

.hero-stat span{

    color:var(--clr-text);

    font-size:.9rem;

    font-weight:500;

    line-height:1.5;

}


/*=====================================================
08 SECTION HEAD (reusable across all sections)
=====================================================*/

.section-head{

    max-width:680px;

    margin:0 auto 56px;

    text-align:center;

}

.eyebrow{

    display:inline-block;

    margin-bottom:16px;

    color:var(--clr-primary);

    font-size:.82rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:2px;

}

.section-head h2{

    margin-bottom:16px;

    font-size:clamp(2rem,3.4vw,2.7rem);

    letter-spacing:-1px;

}

.section-head p{

    font-size:1.05rem;

    line-height:1.8;

}


/*=====================================================
09 ABOUT — MISSION & VISION
=====================================================*/
.mv-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:32px;


}

.mv-card{

    padding:44px;

    border-radius:var(--radius-lg);

    background:var(--clr-white);

    border:1px solid var(--border-soft);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.mv-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.icon-tag{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.6rem;

    border-radius:18px;

    margin-bottom:24px;

    background:linear-gradient(
        135deg,
        rgba(60,181,74,.15),
        rgba(27,42,107,.10)
    );

}

.mv-card h3{

    margin-bottom:14px;

    font-size:1.4rem;

}

.mv-card p{

    font-size:1rem;

    line-height:1.85;

}


/*=====================================================
10 FIVE PILLARS
=====================================================*/
#pillars {
  /* Replace with the path to your desired image */
  background-image: url('CSS/images/image20.png');
  
  /* These properties ensure the image covers the section nicely */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; /* If you see this, the section exists */
  
  /* Optional: adds a slight dark overlay to make white text readable */
  position: relative;
}

/* Optional: if you need a dark overlay to improve text readability */
#pillars::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:var(--clr-secondary#2B3F8F);  /* Adjust opacity as needed */
  z-index: 0;
}

/* Ensure content stays above the overlay */
#pillars .wrap {
  position: relative;
  z-index: 1;
}

.pillars{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.pillar{

    display:flex;

    align-items:flex-start;

    gap:28px;

    padding:36px;

    border-radius:var(--radius-lg);

    background:var(--clr-white);

    border:1px solid var(--border-soft);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.pillar:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.pillar .num{

    flex-shrink:0;

    width:64px;

    height:64px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    font-size:1.3rem;

    font-weight:800;

    color:var(--clr-white);

    background:linear-gradient(
        135deg,
        var(--clr-primary),
        var(--clr-secondary)
    );

}

.pillar-body h3{

    margin-bottom:10px;

    font-size:1.25rem;

}

.pillar-body p{

    font-size:.98rem;

    line-height:1.8;

}


/*=====================================================
11 WHO WE SERVE
=====================================================*/

.serve-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.serve-card{

    padding:36px;

    border-radius:var(--radius-lg);

    background:var(--clr-white);

    border:1px solid var(--border-soft);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.serve-card.alt{

    background:var(--clr-white);

}

.serve-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-md);

}

.serve-card .ico{

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    border-radius:16px;

    margin-bottom:20px;

    background:rgba(60,181,74,.12);

}

.serve-card h3{

    margin-bottom:10px;

    font-size:1.15rem;

}

.serve-card p{

    font-size:.95rem;

    line-height:1.8;

}


/*=====================================================
12 CORE VALUES
=====================================================*/

.values-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.value-item{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:32px;

    border-radius:var(--radius-lg);

    background:var(--clr-white);

    border:1px solid var(--border-soft);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.value-item:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow-md);

}

.vnum{

    flex-shrink:0;

    font-size:1.6rem;

    font-weight:800;

    color:var(--clr-primary);

    opacity:.55;

}

.value-item h4{

    margin-bottom:8px;

    font-size:1.1rem;

}

.value-item p{

    font-size:.95rem;

    line-height:1.75;

}


/*=====================================================
13 CTA BAND
=====================================================*/

.cta-band{

    text-align:center;

    padding:72px 48px;

    border-radius:var(--radius-lg);

    background:linear-gradient(
        135deg,
        var(--clr-secondary),
        var(--clr-secondary-light)
    );

    color:var(--clr-white);

}

.cta-band h2{

    color:var(--clr-white);

    margin-bottom:32px;

    font-size:clamp(1.8rem,3vw,2.4rem);

}

.cta-band .actions{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}


/*=====================================================
14 FOOTER
=====================================================*/

footer{

    background:var(--clr-dark);

    color:rgba(255,255,255,.75);

    padding:80px 0 32px;

}

.footer-grid{

    display:grid;

    grid-template-columns:1.4fr 1fr 1fr 1fr;

    gap:48px;

    margin-bottom:56px;

}

.footer-brand{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

}

.footer-brand img{

    width:46px;

    height:46px;

    object-fit:contain;

}

.footer-brand strong{

    color:var(--clr-white);

    font-size:1rem;

    letter-spacing:.3px;

}

.footer-tagline{

    color:rgba(255,255,255,.6);

    font-size:.92rem;

    margin-bottom:24px;

    line-height:1.7;

}

.social-row{

    display:flex;

    gap:10px;

}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;      /* Adjust to your circle size */
  height: 30px;     /* Adjust to your circle size */
  background: #1e293b; /* Your dark background color */
  border-radius: 50%;
  color: white;     /* Icon color */
  text-decoration: none;
  margin-right: 10px;
}

.social-row a:hover {
  background: #334155; /* Slightly lighter on hover */
}

.footer-col h4{

    color:var(--clr-white);

    font-size:.95rem;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:20px;

}

.footer-col ul{

    display:flex;

    flex-direction:column;

    gap:12px;

}

.footer-col a{

    color:rgba(255,255,255,.65);

    font-size:.92rem;

    transition:var(--transition);

}

.footer-col a:hover{

    color:var(--clr-primary-light);

}

.footer-bottom{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:12px;

    padding-top:32px;

    border-top:1px solid rgba(255,255,255,.1);

    font-size:.85rem;

    color:rgba(255,255,255,.5);

}


/*=====================================================
15 ANIMATIONS
=====================================================*/

@keyframes navDrop{

    from{

        opacity:0;

        transform:translateY(-20px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes floatBadge{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(28px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media (prefers-reduced-motion: reduce){

    *{

        animation:none !important;

        transition:none !important;

        scroll-behavior:auto !important;

    }

}


/*=====================================================
16 RESPONSIVE
=====================================================*/

/* 1200px */

@media (max-width:1200px){

    .hero h1{

        font-size:4.2rem;

    }

}


/* 992px — tablet */

@media (max-width:992px){

    .navbar{

        top:20px;

    }

    .nav-inner{

        padding:0 22px;

    }

    .hero-inner{

        grid-template-columns:1fr;

        text-align:center;

        padding-top:150px;

        gap:50px;

    }

    .hero-copy{

        margin:auto;

        align-items:center;

    }

    .hero-eyebrow,
    .hero-actions,
    .hero-stats{

        justify-content:center;

    }

    .lead{

        margin-left:auto;

        margin-right:auto;

    }

    .hero-art{

        max-width:480px;

        margin:auto;

    }

    .mv-grid{

        grid-template-columns:1fr;

    }

    .serve-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .values-list{

        grid-template-columns:1fr;

    }

    .footer-grid{

        grid-template-columns:1fr 1fr;

        gap:40px;

    }

}


/* 768px — mobile */

@media (max-width:768px){

    nav[aria-label="Primary"],
    .nav-actions .btn-outline,
    .nav-actions .btn-primary{

        display:none;

    }

    .nav-toggle{

        display:flex;

    }

    .hero h1{

        font-size:2.8rem;

        letter-spacing:-1px;

    }

    .lead{

        font-size:1rem;

    }

    .hero-actions{

        flex-direction:column;

        width:100%;

    }

    .hero-actions .btn{

        width:100%;

    }

    .hero-stats{

        flex-direction:column;

    }

    .badge{

        position:relative;

        right:auto;

        bottom:auto;

        margin-top:20px;

        max-width:100%;

    }

    .pillar{

        flex-direction:column;

    }

    .serve-grid{

        grid-template-columns:1fr;

    }

    .cta-band .actions{

        flex-direction:column;

    }

    .cta-band .actions .btn{

        width:100%;

    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:36px;

    }

    .footer-bottom{

        flex-direction:column;

    }

}


/* 480px — small phones */

@media (max-width:480px){

    .hero h1{

        font-size:2.2rem;

    }

    .mv-card,
    .pillar,
    .serve-card,
    .value-item{

        padding:26px;

    }

    .cta-band{

        padding:48px 24px;

    }

}