/*=====================================
            HERO SECTION
======================================*/

.about-hero{

    position:relative;

    background:url("../images/about/hero.jpg")
    center center/cover no-repeat;

    min-height:650px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.65);

}

.about-hero .container{

    position:relative;

    z-index:2;

}

.about-hero-content{

    max-width:760px;

    color:#fff;

    text-align:center;

    margin:auto;

}

.hero-subtitle{

    display:inline-block;

    color:#D4AF37;

    font-size:15px;

    letter-spacing:4px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.about-hero-content h1{

    font-family:'Abril Fatface',serif;

    font-size:64px;

    margin-bottom:25px;

    color:#fff;

}

.about-hero-content p{

    font-size:20px;

    line-height:1.8;

    color:#ddd;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.primary-btn{

    background:#D4AF37;

    color:#111;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    font-weight:700;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-3px);

    background:#f0c94d;

}

.secondary-btn{

    border:2px solid #D4AF37;

    color:#fff;

    padding:15px 38px;

    border-radius:50px;

    text-decoration:none;

    transition:.35s;

}

.secondary-btn:hover{

    background:#D4AF37;

    color:#111;

}

/*=====================================
            BREADCRUMB
======================================*/

.breadcrumb-section{

    background:#111;

    padding:18px 0;

}

.breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    color:#ccc;

    font-size:15px;

}

.breadcrumb a{

    color:#D4AF37;

    text-decoration:none;

}

.breadcrumb span{

    color:#fff;

}

/*=====================================
            ABOUT SECTION
======================================*/

.about-section{

    padding:110px 0;

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    overflow:hidden;

    border-radius:18px;

}

.about-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.08);

}

.section-subtitle{

    color:#D4AF37;

    letter-spacing:3px;

    text-transform:uppercase;

    font-weight:700;

    display:block;

    margin-bottom:15px;

}

.about-content h2{

    font-family:'Abril Fatface',serif;

    font-size:46px;

    color:#222;

    margin-bottom:30px;

    line-height:1.3;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-features{

    margin-top:35px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fafafa;

    padding:18px;

    border-radius:12px;

    transition:.35s;

}

.feature span{

    color:#D4AF37;

    font-weight:600;

    transition:.35s;

}

.feature i{

    color:#D4AF37;

    font-size:24px;

}

.feature:hover{

    background:#111;

    color:#fff;

}

.feature:hover i{

    color:#fff;

}

/*=====================================
            COUNTER SECTION
======================================*/

.counter-section{

    background:#111;

    padding:100px 0;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.counter-card{

    background:#1a1a1a;

    padding:45px 25px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(212,175,55,.15);

}

.counter-card:hover{

    transform:translateY(-10px);

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(212,175,55,.15);

}

.counter-card i{

    font-size:46px;

    color:#D4AF37;

    margin-bottom:25px;

}

.counter-card h2{

    font-family:'Abril Fatface',serif;

    color:#fff;

    font-size:48px;

    margin-bottom:15px;

}

.counter-card p{

    color:#d0d0d0;

    font-size:17px;

    line-height:1.7;

}

/*=====================================
            TEAM SECTION
======================================*/

.team-section{

    padding:110px 0;

    background:#f8f8f8;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

    font-family:'Abril Fatface',serif;

    font-size:48px;

    color:#222;

    margin:18px 0;

}

.section-heading p{

    color:#666;

    line-height:1.9;

}

.team-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*=====================================
            TEAM CARD
======================================*/

.team-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    transition:.4s;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.team-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 45px rgba(0,0,0,.15);

}

.team-image{

    position:relative;

    overflow:hidden;

    height:340px;

}

.team-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.team-card:hover img{

    transform:scale(1.08);

}

.team-content{

    padding:30px;

    text-align:center;

}

.team-content h3{

    font-family:'Abril Fatface',serif;

    color:#222;

    font-size:28px;

    margin-bottom:10px;

}

.team-content span{

    display:block;

    color:#D4AF37;

    font-weight:700;

    margin-bottom:18px;

    letter-spacing:.5px;

}

.team-content p{

    color:#666;

    line-height:1.8;

}

/*=====================================
        SOCIAL ICONS
======================================*/

.team-social{

    display:flex;

    justify-content:center;

    gap:14px;

    margin-top:25px;

}

.team-social a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#f3f3f3;

    color:#333;

    text-decoration:none;

    transition:.35s;

}

.team-social a:hover{

    background:#D4AF37;

    color:#111;

    transform:translateY(-4px);

}

/*=====================================
        LAST ROW ALIGNMENT
======================================*/

.team-grid .team-card:nth-child(4){

    grid-column:1;

}

.team-grid .team-card:nth-child(5){

    grid-column:2;

}

/*=====================================
            WHY CHOOSE US
======================================*/

.why-section{

    padding:110px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fafafa;

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    border:1px solid #eee;

}

.why-card:hover{

    transform:translateY(-10px);

    background:#111;

    border-color:#D4AF37;

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.why-card i{

    font-size:50px;

    color:#D4AF37;

    margin-bottom:25px;

}

.why-card h3{

    font-family:'Abril Fatface',serif;

    font-size:26px;

    color:#222;

    margin-bottom:18px;

    transition:.3s;

}

.why-card p{

    color:#666;

    line-height:1.8;

    transition:.3s;

}

.why-card:hover h3,

.why-card:hover p{

    color:#fff;

}

/*=====================================
            CTA SECTION
======================================*/

.about-cta{

    position:relative;

    padding:120px 0;

    background:url("../images/about/hero.jpg")
    center center/cover no-repeat;

}

.about-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

.about-cta .container{

    position:relative;

    z-index:2;

}

.cta-content{

    max-width:820px;

    margin:auto;

    text-align:center;

    color:#fff;

}

.cta-content span{

    display:block;

    color:#D4AF37;

    letter-spacing:3px;

    margin-bottom:18px;

    text-transform:uppercase;

}

.cta-content h2{

    font-family:'Abril Fatface',serif;

    font-size:56px;

    margin-bottom:30px;

}

.cta-content p{

    color:#ddd;

    line-height:1.9;

    margin-bottom:40px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

/*=====================================
            SCROLL ANIMATION
======================================*/

.about-section,

.counter-section,

.team-section,

.why-section,

.about-cta{

    opacity:1;

    transform:translateY(0);

    transition:.7s;

}

/*=====================================
            TABLET
======================================*/

@media(max-width:992px){

.about-grid{

    grid-template-columns:1fr;

}

.counter-grid{

    grid-template-columns:repeat(2,1fr);

}

.team-grid{

    grid-template-columns:repeat(2,1fr);

}

.team-grid .team-card:nth-child(4),

.team-grid .team-card:nth-child(5){

    grid-column:auto;

}

.why-grid{

    grid-template-columns:repeat(2,1fr);

}

.about-content{

    text-align:center;

}

.about-features{

    grid-template-columns:1fr 1fr;

}

.about-hero-content h1{

    font-size:50px;

}

.section-heading h2{

    font-size:40px;

}

.cta-content h2{

    font-size:46px;

}

}

/*=====================================
            MOBILE
======================================*/

@media(max-width:768px){

.about-hero{

    min-height:520px;

    padding:80px 0;

}

.about-hero-content h1{

    font-size:38px;

}

.about-hero-content p{

    font-size:17px;

}

.hero-buttons{

    flex-direction:column;

}

.primary-btn,

.secondary-btn{

    width:100%;

    text-align:center;

}

.about-section,

.counter-section,

.team-section,

.why-section,

.about-cta{

    padding:80px 0;

}

.about-grid,

.counter-grid,

.team-grid,

.why-grid,

.about-features{

    grid-template-columns:1fr;

}

.about-content h2{

    font-size:34px;

}

.section-heading h2{

    font-size:34px;

}

.cta-content h2{

    font-size:36px;

}

.counter-card h2{

    font-size:38px;

}

.team-image{

    height:300px;

}

.feature{

    justify-content:center;

    text-align:center;

}

.cta-buttons{

    flex-direction:column;

}

}

/*=====================================
            SMALL MOBILE
======================================*/

@media(max-width:480px){

.about-hero-content h1{

    font-size:32px;

}

.about-content h2{

    font-size:30px;

}

.section-heading h2{

    font-size:30px;

}

.cta-content h2{

    font-size:30px;

}

.hero-subtitle{

    font-size:13px;

    letter-spacing:2px;

}

.about-hero-content p{

    font-size:16px;

}

.counter-card{

    padding:35px 20px;

}

.team-content{

    padding:22px;

}

.team-content h3{

    font-size:24px;

}

}