/*==================================================
DEPACOM WEBSITE V2.0
Main Stylesheet
Author: DEPACOM
Version: 2.0
===================================================*/

/*==========================
ROOT VARIABLES
===========================*/

:root{

    --primary:#0B6B3A;
    --primary-dark:#064D2A;
    --secondary:#C89B2C;
    --accent:#F4F6F5;

    --dark:#202020;
    --light:#FFFFFF;

    --grey:#777777;
    --border:#E7E7E7;

    --shadow:0 10px 30px rgba(0,0,0,.08);

    --radius:12px;

    --transition:.35s ease;

}

/*==========================
RESET
===========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Open Sans',sans-serif;

    color:var(--dark);

    background:#fff;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

}

.container{

    width:min(1180px,92%);

    margin:auto;

}

/*==========================
TYPOGRAPHY
===========================*/

h1,h2,h3,h4{

    font-family:'Montserrat',sans-serif;

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:3.6rem;

}

h2{

    font-size:2.5rem;

}

h3{

    font-size:1.35rem;

}

p{

    color:#555;

    margin-top:18px;

}

.section-heading{

    text-align:center;

    max-width:720px;

    margin:auto auto 70px;

}

.section-tag{

    display:inline-block;

    color:var(--secondary);

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;

    text-transform:uppercase;

}

/*==========================
BUTTONS
===========================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:15px 34px;

    border-radius:50px;

    font-weight:700;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

}

.btn-outline{

    border:2px solid #fff;

    color:#fff;

}

.btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

/*==========================
HEADER
===========================*/

.header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 2px 20px rgba(0,0,0,.05);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    min-height:88px;

}

.logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.logo img{

    width:58px;

}

.logo h2{

    font-size:1.4rem;

    color:var(--primary);

}

.logo span{

    font-size:.78rem;

    color:#666;

}

.navbar ul{

    display:flex;

    gap:30px;

}

.navbar a{

    color:#333;

    font-weight:600;

}

.navbar a:hover,

.navbar a.active{

    color:var(--primary);

}

.mobile-menu{

    display:none;

    background:none;

    border:none;

    font-size:1.8rem;

    cursor:pointer;

}

/*==========================
HERO
===========================*/

.page-hero{

    position:relative;

    min-height:620px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:120px 0 80px;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    color:#fff;

    text-align:center;

}

/*==========================
ABOUT HERO
===========================*/

.about-hero{

    background-image:
    linear-gradient(rgba(4,32,18,.65),rgba(4,32,18,.65)),
    url("../images/about-banner.jpg");

}

/*==========================
SERVICES HERO
===========================*/

.services-hero{

    background-image:
    linear-gradient(rgba(4,32,18,.65),rgba(4,32,18,.65)),
    url("../images/services-banner.jpg");

}

/*==========================
PROJECTS HERO
===========================*/

.projects-hero{

    background-image:
    linear-gradient(rgba(4,32,18,.65),rgba(4,32,18,.65)),
    url("../images/projects-banner.jpg");

}

/*==========================
MEMBERSHIP HERO
===========================*/

.membership-hero{

    background-image:
        linear-gradient(
            rgba(4,32,18,.25),
            rgba(4,32,18,.25)
        ),
        url("../images/membership-banner.jpg");

    background-size:cover;

    background-position:center 28%;

    background-repeat:no-repeat;

    min-height:580px;

    display:flex;

    align-items:center;

}

.membership-hero .page-content{

    transform:translateY(-20px);

}

/*==================================================
INVESTORS HERO
==================================================*/

.page-hero.investors-hero{

    background:
        linear-gradient(
            rgba(4,32,18,.45),
            rgba(4,32,18,.45)
        ),
        url("../images/investors-banner.jpg") center center/cover no-repeat !important;

    min-height:580px;

    display:flex;

    align-items:center;

}

.page-hero.investors-hero .page-content{

    transform:translateY(-20px);

}

/*==========================
GALLERY HERO
===========================*/

.gallery-hero{

    background-image:
    linear-gradient(rgba(4,32,18,.65),rgba(4,32,18,.65)),
    url("../images/gallery-banner.jpg");

}

/*==========================
CONTACT HERO
===========================*/

.contact-hero{

    background-image:
    linear-gradient(rgba(4,32,18,.65),rgba(4,32,18,.65)),
    url("../images/contact-banner.jpg");

}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(4,32,18,.75),
        rgba(4,32,18,.75)
    );

}

.page-content{

    position:relative;

    z-index:2;

    max-width:850px;

    margin:auto;

    transform: translateY(-25px);

}

.page-content h1{

    color:#fff;

    margin-bottom:20px;

}

.page-content p{

    color:#f1f1f1;

    font-size:1.1rem;

}

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    background:url("../images/mining-site-aerial.jpg") center center/cover no-repeat;

    overflow:hidden;
}


.hero-content{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

.hero-text{

    color:#fff;

}

.hero-text .tagline{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:10px 22px;

    border-radius:40px;

    margin-bottom:25px;

}

.hero-text h1{

    color:#fff;

    margin-bottom:25px;

}

.hero-text p{

    color:#e6e6e6;

    max-width:620px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

    .hero-card{

    background:#ffffff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

    border-top:5px solid #c99d34;

    transition:.35s ease;

}

.hero-card h3{

    margin-bottom:30px;

    color:var(--primary);

}

.focus-item{

    display:flex;

    gap:18px;

    margin-bottom:25px;

}

.focus-item i{

    width:55px;

    height:55px;

    border-radius:50%;

    background:rgba(11,107,58,.08);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.2rem;

}

/*==========================
STATS
===========================*/

.stats{

    padding:80px 0;

    background:#fff;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.stat-box{

    text-align:center;

    padding:35px;

    border-radius:var(--radius);

    background:var(--accent);

}

.stat-box h2{

    color:var(--primary);

    font-size:2.8rem;

}

.stat-box p{

    margin-top:8px;

    font-weight:600;

}
/*==================================================
PART 2B
About • Services • Why Us • Projects • ESG • CTA
==================================================*/

/*==========================
COMMON SECTION SPACING
===========================*/

section{

    padding:100px 0;

}

.grid-2{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.center{

    text-align:center;

    margin-top:50px;

}

/*==========================
ABOUT
===========================*/

.about-preview{

    background:#ffffff;

}

.about-preview img{

    border-radius:18px;

    box-shadow:var(--shadow);

    object-fit:cover;

    min-height:500px;

}

.about-preview h2{

    margin:15px 0 25px;

}

.about-preview p{

    margin-bottom:20px;

}

/*==========================
SERVICES
===========================*/

.services{

    background:#f8faf9;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.service-card{

    background:#fff;

    border-radius:16px;

    padding:40px 30px;

    transition:var(--transition);

    box-shadow:0 8px 25px rgba(0,0,0,.05);

    text-align:center;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.service-card i{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:rgba(11,107,58,.08);

    color:var(--primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.8rem;

}

.service-card h3{

    margin-bottom:15px;

}

/*==========================
WHY DEPACOM
===========================*/

.why-us{

    background:#ffffff;

}

.why-us img{

    border-radius:18px;

    box-shadow:var(--shadow);

}

.check-list{

    margin-top:30px;

}

.check-list li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

    font-weight:600;

}

.check-list i{

    color:var(--primary);

    font-size:1.1rem;

}

/*==========================
PROJECTS
===========================*/

.projects{

    background:#f8faf9;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.project-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.project-card:hover{

    transform:translateY(-10px);

}

.project-card img{

    height:250px;

    object-fit:cover;

}

.project-content{

    padding:30px;

}

.project-content h3{

    margin-bottom:15px;

}

/*==========================
ESG
===========================*/

.esg{

    background:linear-gradient(135deg,
    var(--primary),
    var(--primary-dark));

    color:#fff;

}

.esg .section-heading h2,

.esg .section-heading p{

    color:#fff;

}

.esg-grid{

    gap:35px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

}

.esg-grid div{

    background:#fff;

    padding:45px;

    border-radius:18px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.esg-grid div:hover{

    transform:translateY(-8px);

}
.esg-grid div:hover{

    transform:translateY(-8px);

}

.esg-grid i{

    font-size:2.4rem;

    color:var(--secondary);

    margin-bottom:25px;

}

.esg-grid h3{

    margin-bottom:18px;

}

.esg-grid p{

    color:#f2f2f2;

}

/*==========================
MEMBERSHIP CTA
===========================*/

.membership-cta{

    background:url("../images/cta-bg.jpg")
    center/cover no-repeat;

    position:relative;

    text-align:center;

}

.membership-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(5,38,22,.78);

}

.membership-cta .container{

    position:relative;

    z-index:2;

}

.membership-cta h2{

    color:#fff;

    margin:20px 0;

}

.membership-cta p{

    color:#ededed;

    max-width:720px;

    margin:0 auto 35px;

}

.membership-cta .section-tag{

    color:var(--secondary);

}

/*==========================
HELPER CLASSES
===========================*/

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:18px;

}

.text-center{

    text-align:center;

}

.mb-20{

    margin-bottom:20px;

}

.mb-40{

    margin-bottom:40px;

}

.mt-40{

    margin-top:40px;

}

.bg-light{

    background:#f8faf9;

}

.bg-primary{

    background:var(--primary);

    color:#fff;

}
/*==================================================
PART 2C
Partners • News • Contact • Footer • Responsive
==================================================*/

/*==========================
PARTNERS
===========================*/

.partners{

    background:#fff;

}

.partner-logos{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:30px;

    margin-top:50px;

}

.partner-logo{

    background:#fff;

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    border:1px solid #e5e5e5;

    transition:.35s ease;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    min-height:250px;

}

.partner-logo i{

    font-size:52px;

    color:#0B6B3A;

    margin-bottom:22px;

}

.partner-logo:hover{

    border-color:var(--primary);

    transform:translateY(-6px);

    box-shadow:var(--shadow);

}

/*==========================
NEWS
===========================*/

.news{

    background:#f8faf9;

}

.news-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.news-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.news-card:hover{

    transform:translateY(-8px);

}

.news-card img{

    height:240px;

    object-fit:cover;

}

.news-content{

    padding:28px;

}

.news-content .date{

    color:var(--secondary);

    font-weight:700;

    display:block;

    margin-bottom:15px;

}

.news-content h3{

    margin-bottom:15px;

}

.news-content a{

    color:var(--primary);

    font-weight:700;

}

/*==========================
CONTACT
===========================*/

.contact-home{

    background:#fff;

}

.contact-info{

    margin-top:35px;

}

.contact-info p{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.contact-info i{

    color:var(--primary);

    width:24px;

    font-size:1.2rem;

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:1px solid var(--border);

    border-radius:12px;

    font-family:inherit;

    font-size:1rem;

    transition:var(--transition);

}

.contact-form input:focus,

.contact-form textarea:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 4px rgba(11,107,58,.08);

}

/*==========================
FOOTER
===========================*/

.footer{

    background:#15231C;

    color:#fff;

    padding-top:80px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-logo{

    width:70px;

    margin-bottom:20px;

}

.footer p{

    color:#d5d5d5;

}

.footer h4{

    margin-bottom:20px;

}

.footer ul li{

    margin-bottom:12px;

}

.footer a{

    color:#d5d5d5;

}

.footer a:hover{

    color:var(--secondary);

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:44px;

    height:44px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

}

.social-links a:hover{

    background:var(--primary);

}

.copyright{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:25px 0;

}

/*==========================
ANIMATIONS
===========================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.hero-text,

.hero-card,

.service-card,

.project-card,

.news-card{

    animation:fadeUp .8s ease both;

}

/*==========================
RESPONSIVE
===========================*/

@media (max-width:1100px){

.hero-content,

.grid-2,

.footer-grid{

    grid-template-columns:1fr;

}

.hero{

    text-align:center;

}

.hero-buttons{

    justify-content:center;

}

.hero-card{

    margin-top:20px;

}

}

@media (max-width:900px){

.navbar{

    display:none;

}

.mobile-menu{

    display:block;

}

.stats .container{

    grid-template-columns:repeat(2,1fr);

}

.partner-logos{

    grid-template-columns:repeat(2,1fr);

}

}

@media (max-width:768px){

section{

    padding:70px 0;

}

h1{

    font-size:2.4rem;

}

h2{

    font-size:2rem;

}

.hero{

    min-height:90vh;

}

.hero-buttons{

    flex-direction:column;

}

.services-grid,

.projects-grid,

.news-grid,

.esg-grid{

    grid-template-columns:1fr;

}

}

@media (max-width:576px){

.container{

    width:94%;

}

.header .container{

    min-height:76px;

}

.logo img{

    width:46px;

}

.logo h2{

    font-size:1.1rem;

}

.logo span{

    display:none;

}

.stats .container{

    grid-template-columns:1fr;

}

.partner-logos{

    grid-template-columns:1fr;

}

.btn{

    width:100%;

}

.hero-card{

    padding:24px;

}

.contact-form input,

.contact-form textarea{

    font-size:16px;

}
.about-image{
    width:100%;
    border-radius:18px;
    display:block;
    object-fit:cover;
    box-shadow:0 20px 45px rgba(0,0,0,.18);
    transition:.4s ease;
}

.about-image:hover{
    transform:scale(1.03);
}
}

/*============================
LEADERSHIP PHOTOS
============================*/

.leader-photo{
    width:180px;
    height:180px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #ffffff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);

    /* Subtle professional colour grading */
    filter:
        saturate(0.95)
        contrast(1.05)
        brightness(1.02);

    transition:0.4s ease;
}

.leader-photo:hover{
    transform:translateY(-6px);
    filter:
        saturate(1.05)
        contrast(1.08)
        brightness(1.05);
}
/*==================================================
LEADERSHIP SECTION
==================================================*/

.leadership{

    background:#f8faf9;

    padding:100px 0;

}

.leaders-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:35px;

    margin-top:50px;

}

.leader-card{

    background:#fff;

    border-radius:18px;

    padding:35px 25px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s ease;

}

.leader-card:hover{

    transform:translateY(-8px);

}

.leader-card h3{

    margin:20px 0 10px;.leader-card h3{
    margin:12px 0 4px;
    color:var(--primary);
    font-size:1.7rem;
}

    color:var(--primary);

}

.leader-card p{

    font-size:.95rem;

    color:#666;

    line-height:1.6;

}
/*==================================
OBJECTIVE ICONS
==================================*/

.objective-icon{

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:rgba(15,90,54,.08);

    display:flex;

    align-items:center;

    justify-content:center;

}

.objective-icon i{

    font-size:30px;

    color:var(--primary);

}

.project-card{

    transition:.35s ease;

}

.project-card:hover{

    transform:translateY(-8px);

}

/*==================================================
COMMUNITY IMPACT
==================================================*/

.esg{

    padding:100px 0;

    background:#f8faf9;

}

.esg-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:35px;

    margin-top:50px;

}

.esg-grid>div{

    background:#fff;

    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s ease;

    border-top:5px solid var(--secondary);

}

.esg-grid>div:hover{

    transform:translateY(-10px);

}

.esg-grid i{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(15,90,54,.08);

    color:var(--primary);

    font-size:36px;

}

.esg-grid h3{

    color:var(--primary);

    margin-bottom:18px;

}

.esg-grid p{

    color:#666;

    line-height:1.8;

}
.leader-position{
    color:#C79A2B;
    font-weight:700;
    font-size:.95rem;
    margin:8px 0 18px;
    text-transform:uppercase;
    letter-spacing:.8px;
}
/*====================================
LEADERSHIP CARD ALIGNMENT
====================================*/

.leaders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:35px;
    align-items:stretch;
}

.leader-card{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    height:100%;
    padding:35px 28px;
}

.leader-card p:last-child{
    margin-top:18px;
    line-height:1.8;
    flex-grow:1;
    width:100%;
    text-align:left;
}

.leader-position{
    min-height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}
/*==================================================
EXECUTIVE LEADERSHIP
==================================================*/

.leadership{
    padding:110px 0;
    background:#f7f9f8;
}

.leaders-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    margin-top:60px;
}

.leader-card{
    background:#ffffff;
    border-radius:22px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border:1px solid #ececec;
    transition:.35s ease;
}

.leader-card:hover{
    transform:translateY(-10px);
    box-shadow:0 22px 50px rgba(0,0,0,.14);
}

.leader-photo{
    width:165px;
    height:165px;
    object-fit:cover;
    border-radius:50%;
    margin:0 auto 15px;
    display:block;
    border:6px solid #fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.leader-card h3{
    text-align:center;
    color:#0B6B3A;
    font-size:1.45rem;
    margin:8px 0 2px;
}

.leader-position{
    text-align:center;
    color:#C79A2B;
    text-transform:uppercase;
    font-weight:700;
    font-size:.9rem;
    letter-spacing:1px;
    margin-bottom:15px;
}

.leader-description{
    text-align:left;
    color:#555;
    line-height:1.75;
    margin:0;
    font-size:.96rem;
}

/*==================================================
FULL WIDTH STORY BANNER
==================================================*/
.story-banner{
    background:#ffffff;
    padding:90px 0 0;
}

.story-overlay{
    background:none;
    padding:0;
}

.story-banner .container{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    padding:0 20px 60px;
}

.story-banner h2{
    font-size:4rem;
    line-height:1.15;
    color:#173f2f;
    margin:20px 0 25px;
}

.story-banner p{
    max-width:760px;
    margin:0 auto;
    font-size:1.2rem;
    line-height:1.8;
    color:#555;
}

/*==================================================
ABOUT FEATURE IMAGE
==================================================*/

.about-feature-image{

    width:100%;

    background:#ffffff;

    padding:40px 0 80px;

}

.about-feature-image img{

    width:92%;

    max-width:1400px;

    height:600px;

    display:block;

    margin:0 auto;

    object-fit:cover;

    border-radius:22px;

    box-shadow:0 25px 60px rgba(0,0,0,.18);

    transition:0.4s ease;

}

.about-feature-image img:hover{

    transform:scale(1.02);

}
/*==================================================
LEADERSHIP
==================================================*/

.leader-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    padding:35px;

    transition:.35s;

    border:1px solid #ececec;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.leader-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(0,0,0,.18);

}

.leader-photo{

    width:180px;

    height:180px;

    object-fit:cover;

    border-radius:50%;

    margin:auto;

    display:block;

    border:6px solid #fff;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.leader-card h3{

    text-align:center;

    margin-top:20px;

    margin-bottom:4px;

    color:#1b4332;

}

.leader-position{

    color:#b8860b;

    font-weight:700;

    text-align:center;

    margin-bottom:18px;

}

.leader-card p{

    text-align:left;

    line-height:1.8;

    color:#555;

}

section{

    scroll-margin-top:110px;

}

.section-heading{

    margin-bottom:65px;

}

.section-tag{

    letter-spacing:3px;

}

h2{

    letter-spacing:-1px;

}

.container{

    max-width:1280px;

}
/* ==========================================
   SERVICES HERO
========================================== */

.services-hero{

    background-image:
        linear-gradient(
            rgba(8,45,35,.55),
            rgba(8,45,35,.55)
        ),
        url("../images/artisinal-services.jpg");

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center 25%;

    min-height:720px;

    display:flex;

    align-items:center;

}
/*==============================
SERVICES PAGE BANNER
==============================*/

.page-banner{

    width:100%;
    height:520px;
    overflow:hidden;
    margin-top:88px;

}

.page-banner img{

    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;

}

.page-intro{
    background:#fff;
    padding:70px 0;
}

.page-intro h1{
    font-size:3.2rem;
    color:var(--primary);
    margin:15px 0 25px;
}

.page-intro p{
    max-width:900px;
    line-height:1.8;
    font-size:1.15rem;
}