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

body{
font-family:'Inter',sans-serif;
color:#222;
line-height:1.7;
}

:root{
--primary:#46407D;
--secondary:#22C7D5;
--accent:#63E67D;
--white:#ffffff;
--dark:#1c1c2e;
}

h1,h2,h3,h4{
font-family:'Poppins',sans-serif;
}

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

.navbar{

    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:22px 8%;

    z-index:1000;

    transition:all .4s ease;
}

.logo img{
    height:95px;
    transition:.4s;
}

.nav-links{

    display:flex;
    gap:35px;

    list-style:none;
}

.nav-links a{

    text-decoration:none;

    color:white;

    font-weight:500;

    font-size:15px;

    position:relative;

    transition:.3s;
}
.nav-links a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;

    height:3px;

    background:#63E67D;

    transition:.4s;
}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;
}

.nav-links a:hover{

    color:#63E67D;
}

.donate-btn{

    padding:14px 30px;

    border-radius:50px;

    text-decoration:none;

    color:white;

    font-weight:600;

    background:
    linear-gradient(
    135deg,
    #63E67D,
    #22C7D5
    );

    transition:.4s;

    box-shadow:
    0 10px 25px rgba(0,0,0,.2);
}

.donate-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 25px 45px
    rgba(99,230,125,.35);
}
.navbar.scrolled{

    background:
    white;

    backdrop-filter:
    blur(15px);

    box-shadow:
     0 10px 30px rgba(0,0,0,.08);

    padding:15px 8%;
}
.navbar.scrolled .nav-links a{

    color:#333;
}

.navbar.scrolled .nav-links a:hover{

    color:#22C7D5;
}
.navbar.scrolled .logo img{

    height:55px;
}
.navbar{

    animation:
    navFade 1s ease;
}

@keyframes navFade{

from{

    opacity:0;
    transform:translateY(-50px);

}

to{

    opacity:1;
    transform:translateY(0);

}
}

/* ===================================
   HERO SECTION
=================================== */

.hero{

    position:relative;

    width:100%;
    height:100vh;
    min-height:750px;

    background-image:url("../images/IMG4194.jpeg");

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    overflow:hidden;
}

/* ==========================
   DARK OVERLAY
========================== */

.hero-overlay{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(10,15,40,.72),
        rgba(10,15,40,.72)
    );

    z-index:1;
}

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

.hero-content{

    position:relative;
    z-index:5;

    width:100%;
    max-width:1100px;

    margin:0 auto;

    padding:120px 30px 0;
}

/* ==========================
   TAG
========================== */

.hero-tag{

    display:inline-block;

    padding:14px 35px;

    border-radius:50px;

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

    backdrop-filter:blur(15px);

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

    color:white;

    font-size:15px;
    font-weight:600;

    margin-bottom:35px;
}

/* ==========================
   HEADING
========================== */

.hero h1{

    font-family:'Poppins',sans-serif;

    font-size:5rem;

    font-weight:800;

    color:white;

    line-height:0.95;

    letter-spacing:-3px;

    margin-bottom:20px;
}

/* ==========================
   PARAGRAPH
========================== */

.hero p{

    max-width:800px;

    margin:0 auto 20px;

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

    font-size:1.3rem;

    line-height:1.8;

    font-weight:400;
}

/* ==========================
   BUTTON WRAPPER
========================== */

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;
}

/* ==========================
   DONATE BUTTON
========================== */

.primary-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 45px;

    background:
    linear-gradient(
    135deg,
    #63E67D,
    #22C7D5
    );

    color:white;

    text-decoration:none;

    font-size:18px;
    font-weight:700;

    border-radius:50px;

    transition:.4s ease;

    box-shadow:
    0 15px 35px
    rgba(99,230,125,.25);
}

.primary-btn:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 25px 45px
    rgba(99,230,125,.35);
}

/* ==========================
   SCROLL INDICATOR
========================== */

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    z-index:5;
}

.scroll-indicator span{

    display:block;

    width:28px;
    height:50px;

    border:2px solid white;

    border-radius:30px;

    position:relative;
}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    left:50%;
    top:8px;

    width:6px;
    height:6px;

    background:white;

    border-radius:50%;

    transform:translateX(-50%);

    animation:scrollDown 2s infinite;
}

@keyframes scrollDown{

    0%{
        top:8px;
        opacity:1;
    }

    100%{
        top:28px;
        opacity:0;
    }
}
.primary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 35px;

    background:
    linear-gradient(
        135deg,
        #63E67D,
        #22C7D5
    );

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(34,199,213,0.35);
}

.secondary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 35px;

    border:2px solid white;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;
}

.secondary-btn:hover{

    background:white;

    color:#46407D;
}
.scroll-indicator{

    position:absolute;

    bottom:30px;
    left:50%;

    transform:translateX(-50%);

    z-index:5;
}

.scroll-indicator span{

    display:block;

    width:28px;
    height:50px;

    border:2px solid white;

    border-radius:30px;

    position:relative;
}

.scroll-indicator span::before{

    content:"";

    position:absolute;

    top:8px;
    left:50%;

    width:6px;
    height:6px;

    background:white;

    border-radius:50%;

    transform:translateX(-50%);

    animation:scrollDown 2s infinite;
}

@keyframes scrollDown{

    0%{
        opacity:1;
        top:8px;
    }

    100%{
        opacity:0;
        top:28px;
    }
}

.primary-btn{
padding:15px 35px;
background:var(--accent);
color:white;
text-decoration:none;
border-radius:40px;
font-weight:600;
}

.secondary-btn{
padding:15px 35px;
border:2px solid white;
color:white;
text-decoration:none;
border-radius:40px;
}

.impact{
padding:100px 8%;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
background:#f7f9fc;
}

.impact-card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.impact-card h2{
color:var(--primary);
font-size:2.3rem;
}

/* ===================================
   ABOUT SECTION
=================================== */

.about-section{

    padding:40px 0;

    background:#fff;

    position:relative;
}

/* ===================================
   DIVIDER WITH HEART
=================================== */

.heart-divider{

    position:relative;

    width:100%;

    margin:20px 0 80px;

    display:flex;
    justify-content:center;
    align-items:center;
}

.heart-divider::before{

    content:"";

    position:absolute;

    width:92%;
    height:3px;

    background:#1098ad;

    left:50%;
    transform:translateX(-50%);
}

.heart-icon{

    width:70px;
    height:70px;

    background:white;

    border:3px solid #1098ad;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    z-index:2;
}

.heart-icon i{

    color:#1098ad;

    font-size:28px;
}

/* ===================================
   CONTENT LAYOUT
=================================== */

.about-container{

    width:90%;
    max-width:1000px;

    margin:auto;

    display:grid;

    grid-template-columns:
    1.1fr
    1fr;

    gap:70px;

    align-items:center;
}

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

.about-image{
box-shadow:
    0 25px 60px rgba(0,0,0,.08);
    overflow:hidden;

    border-radius:40px;
}

.about-image img{

    width:100%;

    display:block;

    border-radius:40px;

    transition:.5s ease;
}

.about-image:hover img{

    transform:scale(1.05);
}

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

.section-tag{

    display:block;

    color:#16b6c8;

    font-size:18px;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;
}

.about-content h2{

    font-family:'Poppins',sans-serif;

    font-size:2.2rem;

    font-weight:600;

    line-height:1.25;

    color:#111;

    margin-bottom:20px;
}

.about-content p{

    font-size:1.25rem;

    line-height:1.2;

    color:#555;

    margin-bottom:40px;

    max-width:700px;
}

/* ===================================
   BUTTON
=================================== */

.about-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:18px 45px;

    background:
    linear-gradient(
        135deg,
        #63E67D,
        #36D96B
    );

    color:white;

    text-decoration:none;

    font-weight:700;

    font-size:18px;

    border-radius:50px;

    transition:.4s ease;

    box-shadow:
    0 12px 30px
    rgba(99,230,125,.25);
}

.about-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 40px
    rgba(99,230,125,.35);
}

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

@media(max-width:1200px){

    .about-content h2{

        font-size:3.4rem;
    }

}
@media(max-width:992px){

    .about-container{

        grid-template-columns:1fr;

        gap:50px;
    }

    .about-content{

        text-align:center;
    }

    .about-content h2{

        font-size:3rem;
    }

    .about-content p{

        margin-left:auto;
        margin-right:auto;
    }

}

@media(max-width:768px){

    .about-content h2{

        font-size:2.3rem;
    }

    .about-content p{

        font-size:1rem;
    }

    .heart-icon{

        width:60px;
        height:60px;
    }

    .heart-icon i{

        font-size:22px;
    }

}
/* ===================================
   MISSION & VISION SECTION
=================================== */

.mission-vision-section{

    padding:50px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fafc
    );
}

/* ===================================
   GRID
=================================== */

.mission-vision-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

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

    gap:25px;
}

/* ===================================
   CARDS
=================================== */

.purpose-card{

    position:relative;

    background:white;

    padding:35px 30px;

    border-radius:25px;

    transition:.4s ease;

    overflow:hidden;

    box-shadow:
    0 12px 35px rgba(0,0,0,.06);
}

.purpose-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}
.vision-card::before,
.mission-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;
}

.vision-card::before{

    background:#22C7D5;
}

.mission-card::before{

    background:#63E67D;
}
/* ===================================
   CARD HEADER
=================================== */

.purpose-header{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:20px;
}
/* ===================================
   ICONS
=================================== */

.purpose-icon{

    width:70px;
    height:70px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        rgba(34,199,213,.12),
        rgba(99,230,125,.12)
    );

    font-size:28px;

    color:#22C7D5;
}

.mission-card .purpose-icon{

    color:#63E67D;
}
/* ===================================
   TEXT
=================================== */

.purpose-card h3{

    margin:0;

    font-size:1.7rem;

    font-weight:700;

    color:#0F172A;
}

.purpose-card p{

    margin:0;

    font-size:1rem;

    line-height:1.8;

    color:#64748B;
}
.purpose-card::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    background:
    rgba(34,199,213,.04);

    top:-70px;
    right:-70px;
}


/* ===================================
   PROGRAMS SECTION
=================================== */

/* ===================================
   HOME — PROGRAMS SECTION
=================================== */

.programs-section{
    position:relative;
    overflow:hidden;
    padding:105px 8% 115px;
    background:
        radial-gradient(circle at 8% 20%, rgba(34,199,213,.08), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(99,230,125,.08), transparent 30%),
        #f8fafc;
}

.programs-section::before,
.programs-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    pointer-events:none;
    filter:blur(5px);
}

.programs-section::before{
    top:-150px;
    right:-100px;
    background:rgba(34,199,213,.07);
}

.programs-section::after{
    bottom:-170px;
    left:-110px;
    background:rgba(99,230,125,.07);
}

/* Section heading */

.programs-heading{
    position:relative;
    z-index:2;
    max-width:760px;
    margin:0 auto 55px;
    text-align:center;
}

.programs-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
    color:#159eb0;
    font-size:.82rem;
    font-weight:800;
    letter-spacing:3px;
}

.programs-eyebrow::before,
.programs-eyebrow::after{
    content:"";
    width:28px;
    height:2px;
    border-radius:10px;
    background:#22c7d5;
}

.programs-heading h2{
    font-family:'Poppins',sans-serif;
    font-size:clamp(2.3rem,4vw,3.6rem);
    line-height:1.15;
    font-weight:800;
    color:#111827;
    margin-bottom:18px;
}

.programs-heading h2 span{
    background:linear-gradient(90deg,#46407d,#159eb0);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.programs-heading p{
    max-width:650px;
    margin:0 auto;
    color:#64748b;
    font-size:1.02rem;
    line-height:1.8;
}

/* Program cards */

.programs-grid{
    position:relative;
    z-index:2;
    max-width:1380px;
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.program-card{
    position:relative;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    min-width:0;
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:26px;
    box-shadow:0 12px 35px rgba(15,23,42,.07);
    transition:transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.program-card:hover{
    transform:translateY(-10px);
    border-color:rgba(34,199,213,.28);
    box-shadow:0 25px 55px rgba(15,23,42,.13);
}

/* Image / visual area */

.program-visual{
    position:relative;
    height:205px;
    overflow:hidden;
    background:#46407d;
}

.program-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(15,23,42,.03) 15%,
        rgba(15,23,42,.58) 100%
    );
    z-index:1;
}

.program-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.program-card:hover .program-visual img{
    transform:scale(1.08);
}

.program-number{
    position:absolute;
    top:16px;
    left:16px;
    z-index:3;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.94);
    color:#46407d;
    font-family:'Poppins',sans-serif;
    font-size:.85rem;
    font-weight:800;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.program-category{
    position:absolute;
    left:16px;
    bottom:16px;
    z-index:3;
    max-width:calc(100% - 32px);
    padding:7px 11px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:30px;
    background:rgba(15,23,42,.52);
    backdrop-filter:blur(8px);
    color:#fff;
    font-size:.66rem;
    font-weight:800;
    letter-spacing:1.2px;
}

/* Amka visual */

.program-visual-amka{
    display:flex;
    align-items:center;
    justify-content:center;
    background:
        radial-gradient(circle at center, rgba(99,230,125,.22), transparent 55%),
        linear-gradient(135deg,#46407d,#262445);
}

.program-visual-amka::after{
    background:linear-gradient(
        180deg,
        rgba(70,64,125,.03),
        rgba(15,23,42,.38)
    );
}

.program-visual-amka img{
    position:relative;
    z-index:2;
    width:145px;
    height:145px;
    object-fit:contain;
    filter:drop-shadow(0 12px 20px rgba(0,0,0,.25));
}

.amka-glow{
    position:absolute;
    width:170px;
    height:170px;
    border-radius:50%;
    background:rgba(99,230,125,.12);
    filter:blur(12px);
}

/* Card content */

.program-card-content{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:26px 24px 24px;
}

.program-card h3{
    margin:0 0 12px;
    color:#0f172a;
    font-family:'Poppins',sans-serif;
    font-size:1.25rem;
    line-height:1.35;
}

.program-card p{
    margin:0;
    color:#64748b;
    font-size:.94rem;
    line-height:1.75;
}

.program-link{
    display:inline-flex;
    align-items:center;
    gap:9px;
    width:max-content;
    margin-top:auto;
    padding-top:22px;
    color:#159eb0;
    text-decoration:none;
    font-size:.88rem;
    font-weight:800;
    transition:gap .3s ease, color .3s ease;
}

.program-link i{
    font-size:.78rem;
    transition:transform .3s ease;
}

.program-link:hover{
    gap:13px;
    color:#46407d;
}

.program-link:hover i{
    transform:translateX(2px);
}

/* View all */

.programs-footer{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    margin-top:42px;
}

.programs-view-all{
    display:inline-flex;
    align-items:center;
    gap:11px;
    padding:14px 25px;
    border:2px solid #46407d;
    border-radius:50px;
    color:#46407d;
    text-decoration:none;
    font-size:.9rem;
    font-weight:800;
    transition:all .3s ease;
}

.programs-view-all:hover{
    background:#46407d;
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 12px 25px rgba(70,64,125,.2);
}

/* Responsive */

@media(max-width:1150px){

    .programs-grid{
        grid-template-columns:repeat(2,1fr);
        max-width:900px;
    }

    .program-visual{
        height:220px;
    }
}

@media(max-width:768px){

    .programs-section{
        padding:80px 6% 90px;
    }

    .programs-heading{
        margin-bottom:40px;
    }

    .programs-heading h2{
        font-size:2.35rem;
    }

    .programs-heading p{
        font-size:.95rem;
    }

    .programs-grid{
        grid-template-columns:1fr;
        max-width:520px;
        gap:20px;
    }

    .program-visual{
        height:230px;
    }
}

@media(max-width:480px){

    .programs-section{
        padding-left:5%;
        padding-right:5%;
    }

    .programs-heading h2{
        font-size:2rem;
    }

    .programs-eyebrow{
        letter-spacing:2px;
    }

    .program-visual{
        height:210px;
    }

    .program-card-content{
        padding:24px 21px 22px;
    }
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonials-section{

    padding:120px 8%;

    background:#f8fafc;
}

.testimonial-slider{

    position:relative;

    max-width:950px;

    margin:80px auto 50px;

    min-height:320px;

    overflow:visible;
}

.testimonial{

    position:absolute;

    width:100%;

    top:40px;

    left:0;

    opacity:0;

    visibility:hidden;

    transition:all .8s ease;

    background:#fff;

    border-radius:30px;

    padding:70px 50px 40px;

    text-align:center;

    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.testimonial.active{

    opacity:1;

    visibility:visible;
}

.testimonial.active{

    opacity:1;

    transform:translateX(0);
}

.testimonial p{

    font-size:1.3rem;

    line-height:1.8;

    color:#334155;

    margin-bottom:20px;
}

.testimonial h4{

    color:#0F172A;

    font-size:1.1rem;

    font-weight:700;
}
.slider-dots{

    display:flex;

    justify-content:center;

    gap:12px;

    margin-top:40px;
}

.dot{

    width:12px;
    height:12px;

    border-radius:50%;

    background:#CBD5E1;

    cursor:pointer;

    transition:.3s;
}

.dot.active{

    background:#22C7D5;

    transform:scale(1.3);
}
/* ==========================
   TESTIMONIAL IMAGE
========================== */

.testimonial-image{

    position:absolute;

    top:-40px;

    left:50%;

    transform:translateX(-50%);

    width:80px;

    height:80px;

    border-radius:50%;

    overflow:hidden;

    border:4px solid #22C7D5;

    background:#fff;

    box-shadow:
    0 8px 20px rgba(34,199,213,.25);

    z-index:10;
}

.testimonial-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center top;

    display:block;
}
.testimonial-image::after{

    content:"";

    position:absolute;

    inset:-6px;

    border-radius:50%;

    border:2px dashed rgba(99,230,125,.6);

    animation:rotateRing 20s linear infinite;
}

@keyframes rotateRing{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}


.cta{
padding:120px 8%;
background:
linear-gradient(
135deg,
var(--primary),
var(--secondary)
);
color:white;
text-align:center;
}

.cta h2{
font-size:3rem;
margin-bottom:20px;
}

.cta-btn{
display:inline-block;
margin-top:25px;
padding:15px 35px;
background:white;
color:var(--primary);
text-decoration:none;
border-radius:40px;
font-weight:700;
}

footer{
background:var(--dark);
color:white;
padding:80px 8%;
}

.footer-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
}

.footer-col a{
display:block;
color:#ccc;
text-decoration:none;
margin-bottom:10px;
}

.footer-logo{
height:60px;
margin-bottom:20px;
}

@media(max-width:992px){

.hero h1{
font-size:3rem;
}

.about{
grid-template-columns:1fr;
}

.program-grid{
grid-template-columns:repeat(2,1fr);
}

.impact{
grid-template-columns:repeat(2,1fr);
}

.footer-container{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:768px){

.nav-links{
display:none;
}

.hero h1{
font-size:2.4rem;
}

.program-grid,
.impact,
.footer-container{
grid-template-columns:1fr;
}

.hero-buttons{
flex-direction:column;
}
}
.floating-shape{
position:absolute;
border-radius:50%;
filter:blur(40px);
opacity:.3;
animation:float 8s infinite ease-in-out;
}

.shape1{
width:250px;
height:250px;
background:#22C7D5;
top:20%;
right:10%;
}

.shape2{
width:180px;
height:180px;
background:#63E67D;
bottom:15%;
left:10%;
}

.shape3{
width:120px;
height:120px;
background:#ffffff;
top:40%;
left:25%;
}

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-30px);
}

100%{
transform:translateY(0px);
}

}
html{
scroll-behavior:smooth;
}

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

@media(max-width:1200px){

    .hero h1{
        font-size:5rem;
    }

}

@media(max-width:992px){

    .hero h1{
        font-size:4.2rem;
    }

    .hero p{
        font-size:1.1rem;
    }

}

@media(max-width:768px){

    .hero{

        min-height:650px;
    }

    .hero-content{

        padding-top:140px;
    }

    .hero-tag{

        font-size:13px;

        padding:12px 25px;
    }

    .hero h1{

        font-size:3rem;

        line-height:1;
    }

    .hero p{

        font-size:1rem;

        max-width:100%;
    }

    .primary-btn{

        width:240px;

        padding:16px 30px;
    }

}

@media(max-width:480px){

    .hero h1{

        font-size:2.4rem;
    }

    .hero p{

        font-size:.95rem;
    }

}
