*{margin:0;padding:0;box-sizing:border-box}
body{font-family:Poppins,sans-serif;    cursor: url(images/Logomark+Black.png), auto;}
/* style.css or inside <style> tag */
@font-face {
    font-family: 'Ghylde-Regular';
    src: url('fonts/Ghylde-Regular.ttf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:10;
    background:rgba(0,0,0,0.3);
}

.logo img{
    height:40px;
}

/* MENU LINKS */
.navbar nav{
    display:flex;
}

.navbar nav a{
    color:#fff;
    margin-left:25px;
    text-decoration:none;
    font-weight:500;
}

.navbar nav a:hover{
    text-decoration:underline;
}

/* HAMBURGER ICON */
.menu-toggle{
    display:none;
    font-size:28px;
    color:#fff;
    cursor:pointer;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px){

    .menu-toggle{
        display:block;
    }

    .navbar nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#000;
        flex-direction:column;
        align-items:center;
        display:none;
    }

    .navbar nav a{
        margin:15px 0;
        font-size:18px;
    }

    .navbar nav.active{
        display:flex;
    }
}

/* HERO */
.video-hero{position:relative;width:100%;height:100vh;overflow:hidden}
.video-hero video{
position:absolute;
top:50%;
left:50%;
min-width:100%;
min-height:100%;
transform:translate(-50%,-50%);
object-fit:cover
}
.overlay{
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,.45)
}
.hero-content{
position:relative;
z-index:2;
height:100%;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
color:#fff;
text-align:center
}
.hero-content h1{font-size:42px;margin-bottom:15px}
.hero-content p{font-size:18px;margin-bottom:25px}
.btn{
padding:12px 35px;
border:2px solid #fff;
color:#fff;
text-decoration:none;
font-weight:600
}
.btn:hover{background:#fff;color:#000}
/* BIG STATEMENT SECTION */
.statement {
    padding: 40px 20px;
    background: #ffffff;
    text-align: center;
}

.statement h1 {
    /*font-family: none;
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    max-width: 1000px;
    margin: auto;
    color: #111;*/
    font-family: auto;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.3;
    max-width: 1000px;
    margin: auto;
    color: hsl(36.36,21.02%,69.22%);
}
/* LOGO IMAGE STYLE */
.statement-logo {
    width: 500px;              /* control logo size */
    margin-bottom: 35px;       /* space between logo & text */
    opacity: 0.9;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* subtle hover effect */
.statement-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}
/* IMAGE GALLERY */
.gallery {
    padding: 40px 40px;
    background: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    /*height: 420px;*/
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}
/* SHOWCASE VIDEO */
.showcase-video {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

/* VIDEO */
.showcase-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* OVERLAY */
.showcase-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* TEXT */
.showcase-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-content h2 {
    font-family: serif;
    font-size: 64px;
    color: #fff;
    font-weight: 400;
    letter-spacing: 1px;
}
/* STORY SECTION */
/* STORY SECTION */
.story-section {
    padding: 120px 0;
    background: #faf7f2;
}

.story-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

/* TEXT */
.story-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    max-width: 420px;
}

.story-btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1.5px solid #000;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: 0.3s;
}

.story-btn:hover {
    background: #000;
    color: #fff;
}

/* IMAGE GRID */
.stories{
    padding:40px 20px;
}
.stories h1{
    margin-bottom: 10px;
    font-family: 'Ghylde-Regular', cursive; /* fallback to cursive */;
    color: hsl(36.36,21.02%,69.22%);
    background: #ffffff;
    text-align: center;
    
}
.stories p{
    font-family: auto;
    color: hsl(36.36,21.02%,69.22%);
    background: #ffffff;
    text-align: center;
}
.story-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.story-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* VIDEO BLOG SECTION */
.video-blog {
    padding: 100px 40px;
    text-align: center;
    background: #f8f6f2;
}

.video-blog h1 {
    font-size: 42px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.video-blog p {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
}

/* VIDEO ROW */
.video-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

/* VIDEO BOX */
.video-box {
    position: relative;
    width: 50%;
    cursor: pointer;
}

.video-box video {
    width: 100%;
    border-radius: 6px;
    display: block;
}

/* PLAY BUTTON */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: #fff;
    background: rgba(0,0,0,0.4);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.instagram-section{
    padding: 80px 20px;
    text-align: center;
    background: #fff;
}

.instagram-section h1{
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.instagram-section p{
    color: #777;
    margin-bottom: 40px;
}

/* GRID */
.insta-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

/* ITEM */
.insta-item{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.insta-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.insta-item:hover img{
    transform: scale(1.08);
}

/* PLAY ICON FOR VIDEO */
.insta-item.video .play-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.featured-section {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

.featured-section h1 {
    font-family: 'Ghylde-Regular', cursive;
    font-size: 36px;
    /*margin-bottom: 40px;*/
    /*color: hsl(36.36,21.02%,69.22%);*/
}

/* LOGO ROW */
.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LOGO STYLE */
.featured-logos img {
    max-height: 180px;
    /*max-width: 220px;*/
    object-fit: contain;
    filter: grayscale(100%);
    /*opacity: 0.75;*/
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.featured-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* COMMON */
.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: hsl(36.36,21.02%,69.22%);
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.85;
}

/* CENTER */
.footer-col.center {
    text-align: center;
}

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

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: 0.3s;
}

.social-icons a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* TAGS */
.footer-col.tags p {
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    opacity: 0.6;
}
/* ================= BANNER ================= */
.about-banner{
    position:relative;
    height:60vh;
    background:url('images/about-banner.jpg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.banner-overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.about-banner h1{
    position:relative;
    color:#fff;
    font-size:56px;
    letter-spacing:3px;
}

/* ================= ABOUT ME ================= */
.about-me{
    padding:80px 10%;
}

.about-container{
    display:flex;
    gap:50px;
    align-items:center;
}

.about-text h2{
    font-size:36px;
    margin-bottom:20px;
}

.about-text p{
    color:#555;
    margin-bottom:15px;
    line-height:1.7;
}

.about-image img{
    width:100%;
    max-width:420px;
    border-radius:10px;
}

/* ================= TEAM ================= */
.team-section{
    background:#f9f9f9;
    padding:80px 10%;
    text-align:center;
}

.team-section h2{
    font-size:36px;
    margin-bottom:50px;
}

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}

.team-card img{
    width:100%;
    border-radius:10px;
}

.team-card h3{
    margin-top:15px;
    font-size:20px;
}

.team-card p{
    color:#777;
    font-size:14px;
}

/* ================= FAQ ================= */
.faq-section{
    padding:80px 15%;
}

.faq-section h2{
    font-size:36px;
    text-align:center;
    margin-bottom:40px;
}

.faq-item{
    margin-bottom:25px;
    border-bottom:1px solid #ddd;
    padding-bottom:15px;
}

.faq-item h4{
    font-size:18px;
    margin-bottom:8px;
}

.faq-item p{
    color:#555;
    line-height:1.6;
}
/* BANNER */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    background: #fff;
    padding: 25px;
    width: 320px;
    text-align: center;
    border-radius: 8px;
    position: relative;
    animation: scaleIn 0.3s ease;
}

.popup-box h3 {
    margin: 0 0 10px;
    color: #222;
}

.popup-box p {
    font-size: 14px;
    color: #555;
}

.popup-box button {
    margin-top: 15px;
    padding: 8px 20px;
    border: none;
    background: #000;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
}

.popup-close {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 18px;
    cursor: pointer;
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


.contact-banner{
    height:60vh;
    background:url('images/about-banner.jpg') center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
}
.contact-banner h1{
    font-size:52px;
    letter-spacing:2px;
}
.contact-banner p{
    font-size:18px;
    margin-top:10px;
}

/* INFO SECTION */
.contact-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    padding:80px 10%;
    background:#fafafa;
}
.info-box{
    text-align:center;
    padding:30px;
    border:1px solid #eee;
}
.info-box h3{
    margin-bottom:10px;
    font-size:18px;
    letter-spacing:1px;
}

/* FORM */
.contact-form-section{
    padding:80px 10%;
}
.form-container{
    max-width:800px;
    margin:auto;
    text-align:center;
}
.form-container h2{
    font-size:36px;
    margin-bottom:30px;
}
.form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}
input, textarea{
    width:100%;
    padding:15px;
    border:1px solid #ccc;
    font-size:14px;
}
textarea{
    resize:none;
    margin-bottom:20px;
}
button{
    padding:14px 40px;
    border:none;
    background:#111;
    color:#fff;
    font-size:14px;
    letter-spacing:1px;
    cursor:pointer;
}
button:hover{
    background:#333;
}

/* MAP */
.map-section iframe{
    width:100%;
    height:450px;
    border:none;
}
/* BANNER */
.story-banner {
    height: 80vh;
    background: url('images/about-banner.jpg') center/cover no-repeat;
    position: relative;
}
.story-banner .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}
.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.banner-content h1 {
    font-size: 60px;
    letter-spacing: 3px;
}
.banner-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* INTRO */
.story-intro {
    max-width: 900px;
    margin: 80px auto;
    text-align: center;
    padding: 0 20px;
}
.story-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.story-intro p {
    font-size: 18px;
    line-height: 1.8;
}

/* GALLERY */
.story-gallery {
    padding: 40px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}
.gallery-grid .big {
    grid-column: span 2;
}

/* QUOTE */
.story-quote {
    background: #f8f8f8;
    padding: 100px 20px;
    text-align: center;
}
.story-quote p {
    font-size: 32px;
    font-weight: 300;
    max-width: 800px;
    margin: auto;
}

/* VIDEO */
.story-video {
    padding: 80px 20px;
    text-align: center;
}
.story-video h2 {
    font-size: 36px;
    margin-bottom: 30px;
}
.video-wrapper {
    max-width: 900px;
    margin: auto;
    aspect-ratio: 16/9;
}
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* CTA */
.story-cta {
    background: #111;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}
.story-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.story-cta a {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.story-cta a:hover {
    background: #fff;
    color: #000;
}
/* BANNER */
.page-banner{
    height:60vh;
    background:url('images/praise-banner.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    color:#fff;
    text-align:center;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.page-banner h1,
.page-banner p{
    position:relative;
    z-index:2;
}

.page-banner h1{
    font-size:56px;
    letter-spacing:2px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:18px;
    opacity:0.9;
}

/* INTRO */
.intro-text{
    padding:80px 20px;
    max-width:900px;
    margin:auto;
    text-align:center;
}

.intro-text h2{
    font-size:36px;
    margin-bottom:15px;
}

.intro-text p{
    color:#555;
    line-height:1.8;
}

/* TESTIMONIALS */
.testimonials{
    padding:80px 40px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    background:#fafafa;
}

.testimonial-card{
    background:#fff;
    padding:40px;
    border-radius:8px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    position:relative;
}

.testimonial-card::before{
    content:'“';
    font-size:80px;
    color:#e0caa8;
    position:absolute;
    top:10px;
    left:20px;
}

.quote{
    font-size:16px;
    line-height:1.7;
    margin-bottom:20px;
}

.testimonial-card h4{
    font-weight:600;
    color:#333;
}

/* CTA */
.love-cta{
    padding:100px 20px;
    text-align:center;
    background:#111;
    color:#fff;
}

.love-cta h2{
    font-size:40px;
    margin-bottom:25px;
}

.love-cta a{
    display:inline-block;
    padding:14px 40px;
    border:2px solid #fff;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.love-cta a:hover{
    background:#fff;
    color:#000;
}
/* BANNER */
.inner-banner{
    position:relative;
    height:60vh;
    overflow:hidden;
}
.inner-banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.banner-text{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
}
.banner-text h1{
    font-size:48px;
    margin-bottom:10px;
}

/* INTRO */
.praise-intro{
    text-align:center;
    padding:80px 20px;
}
.praise-intro h2{
    font-size:36px;
    margin-bottom:15px;
}
.praise-intro p{
    max-width:700px;
    margin:auto;
    color:#555;
}

/* TESTIMONIALS */
.testimonial-section{
    padding:60px 20px;
}
.testimonial-card{
    display:flex;
    gap:40px;
    align-items:center;
    max-width:1100px;
    margin:0 auto 80px;
}
.testimonial-card.reverse{
    flex-direction:row-reverse;
}
.testimonial-img img{
    width:420px;
    height:520px;
    object-fit:cover;
    border-radius:12px;
}
.testimonial-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:15px;
}
.testimonial-content h4{
    font-weight:600;
}

/* QUOTE */
.love-quote{
    background:#111;
    color:#fff;
    padding:120px 20px;
    text-align:center;
}
.love-quote h1{
    font-size:42px;
    max-width:900px;
    margin:auto;
    line-height:1.4;
}
/* BANNER */
.page-banner{
    height:50vh;
    background:url('images/about-banner.jpg') center/cover no-repeat;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
    position:relative;
}

.page-banner::after{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
}

.page-banner h1,
.page-banner p{
    position:relative;
    z-index:1;
}

.page-banner h1{
    font-size:48px;
    margin-bottom:10px;
}

.page-banner p{
    font-size:16px;
    opacity:.9;
}

/* STORIES PAGE */
.stories-page{
    padding:80px 8%;
    background:#fff;
}

.story-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}
.story-card {
    flex: 0 0 calc(25% - 30px); /* 4 columns */
    max-width: calc(25% - 30px);
}

/* STORY CARD */
.story-card{
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
    transition:.3s;
}
.story-grid {
    justify-content: center;
}

.story-card:hover{
    transform:translateY(-6px);
}

.story-img{
    height:280px;
    overflow:hidden;
}

.story-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.story-card:hover img{
    transform:scale(1.1);
}

.story-content{
    padding:25px;
}

.story-content h3{
    font-size:20px;
    margin-bottom:10px;
}

.story-content p{
    font-size:14px;
    color:#666;
    margin-bottom:20px;
}

.story-content a{
    display:inline-block;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    color:#000;
    border-bottom:2px solid #d2b48c;
    padding-bottom:4px;
}
.story-container {
    /*display: flex !important;*/
    flex-direction: row;
}

.story-container.reverse {
    flex-direction: row-reverse !important;
}
.story-container.reverse {
    background: #ffeaea;
}
@media (max-width: 1024px) {
    .story-card {
        flex: 0 0 calc(33.333% - 30px); /* 3 per row */
    }
}

@media (max-width: 768px) {
    .story-card {
        flex: 0 0 calc(50% - 30px); /* 2 per row */
    }
}

@media (max-width: 480px) {
    .story-card {
        flex: 0 0 100%; /* 1 per row */
    }
}


/* RESPONSIVE */
@media(max-width:768px){
    .page-banner h1{
        font-size:32px;
    }
}
/* RESPONSIVE */
@media(max-width:900px){
    .testimonial-card,
    .testimonial-card.reverse{
        flex-direction:column;
        text-align:center;
    }
    .testimonial-img img{
        width:100%;
        height:auto;
    }
    .banner-text h1{
        font-size:32px;
    }
}
/* RESPONSIVE */
@media(max-width:768px){
    .page-banner h1{font-size:36px}
    .intro-text h2{font-size:28px}
    .love-cta h2{font-size:30px}
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 34px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid .big {
        grid-column: span 1;
    }
}
/* MOBILE */
@media(max-width:768px){
    .contact-banner h1{font-size:32px}
    .contact-info{
        grid-template-columns:1fr;
        padding:50px 20px;
    }
    .form-row{
        flex-direction:column;
    }
}
/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-banner h1{
        font-size:36px;
    }

    .faq-section{
        padding:60px 8%;
    }
}
/* MOBILE */
@media(max-width:768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .featured-logos {
        gap: 30px;
    }

    .featured-logos img {
        max-height: 60px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .video-row {
        flex-direction: column;
    }
    .video-box {
        width: 100%;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .story-container {
        grid-template-columns: 1fr;
    }

    .story-text {
        text-align: center;
    }

    .story-text p {
        margin: auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .showcase-video {
        height: 45vh;
    }

    .showcase-content h2 {
        font-size: 34px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .statement h1 {
        font-size: 32px;
    }

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

    .gallery-grid img {
        height: 300px;
    }
}
/* Mobile */
@media (max-width: 768px) {
    .statement h1 {
        font-size: 32px;
    }
}

@media(max-width:768px){
.navbar{padding:15px}
.navbar nav a{margin-left:15px;font-size:14px}
.hero-content h1{font-size:26px}
}
