/* =========================
   GOOGLE FONT
========================= */

:root{
    --primary: #F5A623;      /* Golden Orange */
    --primary-dark: #D97A00;
    --secondary: #1F2937;    /* Dark Charcoal */
    --accent: #4EA5E8;       /* Sky Blue */
    --text-dark: #111827;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
}

body{
    font-family:'Manrope',sans-serif;
    overflow-x:hidden;
    background:#fff;
}

a{
    text-decoration:none;
}

/* =========================
   TOP HEADER
========================= */

.top-header{
    background: #111111;
color: #ffffff;
    padding:12px 0;
    font-size:14px;
    position:relative;
    z-index:999;
}

.top-header::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,.08);
}

.top-header a{
    color:#fff;
    font-weight:500;
    transition:.3s;
}

.top-header a:hover{
    color:#a3e635;
}

.top-header i{
    margin-right:6px;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    background: #ffffff;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    /* padding:18px 0; */
    border-bottom:1px solid rgba(0,0,0,.06);
    transition:.4s;
}

.navbar-brand img{
    max-height:50px;
    transition:.4s;
}

.navbar-nav .nav-link{
    color: #111111;
font-weight: 600;
    font-weight:700;
    font-size:15px;
    margin:0 14px;
    position:relative;
    transition:.3s;
}

.navbar-nav .nav-link::before{
    content:'';
    position:absolute;
    left:50%;
    bottom:-6px;
    width:0;
    height:2px;
    background:#6b8f3e;
    transition:.4s;
    transform:translateX(-50%);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before{
    width:100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active{
    color:#6b8f3e;
}

/* =========================
   BUTTON
========================= */

.btn-appointment{
    background:#F5A623;
color:#111;
    padding:13px 30px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    border:none;
    transition:.4s;
    box-shadow:0 12px 30px rgba(74,95,45,.25);
}

.btn-appointment:hover{
    background:#111;
color:#fff;
    transform:translateY(-3px);
    /* box-shadow:0 18px 35px rgba(74,95,45,.35); */
}

/* =========================
   MOBILE MENU
========================= */

.offcanvas{
    width:320px;
    border:none;
}

.offcanvas-header{
    padding:20px;
    border-bottom:1px solid #eee;
}

.offcanvas-body{
    padding:20px;
}

.offcanvas .nav-link{
    padding:14px 0;
    border-bottom:1px solid #f3f4f6;
    font-weight:600;
    color:#1e293b;
}

.offcanvas .nav-link:hover{
    color:#6b8f3e;
}

.offcanvas .btn-appointment{
    width:100%;
    margin-top:20px;
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler{
    border:none;
    box-shadow:none !important;
}

.navbar-toggler i{
    font-size:26px;
    color:#4a5f2d;
}

/* =========================
   STICKY EFFECT
========================= */

.navbar.sticky-top{
    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .navbar{
        padding:14px 0;
    }

    .navbar-brand img{
        max-height:48px;
    }

    .top-header{
        text-align:center;
    }

    .top-header .col-md-6{
        width:100%;
    }

    .top-header a{
        display:inline-block;
        margin:4px 8px;
        font-size:13px;
    }
}

@media(max-width:576px){

    .top-header{
        padding:10px 0;
    }

    .top-header a{
        font-size:12px;
    }

    .navbar-brand img{
        max-height:42px;
    }

    .offcanvas{
        width:280px;
    }

    .btn-appointment{
        padding:12px 25px;
        font-size:14px;
    }
}

/* BANNER SLIDER =============*/
.hero-banner .item{
    height:75vh;
    position:relative;
    overflow:hidden;
    
}

.hero-banner .item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:8s;
    opacity:0.7;
}

.hero-banner .item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-banner .owl-item.active .item img{
    transform:scale(1.12);
}

.banner-content{
    position:absolute;
    top:50%;
    left:10%;
    transform:translateY(-50%);
    z-index:2;
    color:#fff;
    max-width:650px;
}

.banner-content span{
    color:#F4A62A;
    font-size:18px;
    letter-spacing:2px;
    text-transform:uppercase;
}

.banner-content h1{
    font-size:70px;
    font-weight:800;
    margin:15px 0;
}

.banner-content p{
    font-size:18px;
    margin-bottom:25px;
}

.banner-btn{
    display:inline-block;
    background:#F4A62A;
    color:#111;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
}

.banner-btn:hover{
    background:#fff;
    color:#111;
}

.banner-content > *{
    opacity:0;
    transform:translateY(50px);
}

.owl-item.active .banner-content span{
    animation:fadeUp .8s .3s forwards;
}

.owl-item.active .banner-content h1{
    animation:fadeUp .8s .6s forwards;
}

.owl-item.active .banner-content p{
    animation:fadeUp .8s .9s forwards;
}

.owl-item.active .banner-content .banner-btn{
    animation:fadeUp .8s 1.2s forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .hero-banner .item{
        height:70vh;
    }

    .banner-content{
        left:5%;
        right:5%;
    }

    .banner-content h1{
        font-size:38px;
    }

    .banner-content p{
        font-size:15px;
    }
}
.hero-banner{
    position: relative;
}

.hero-banner .owl-dots{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0 !important;
}

.hero-banner .owl-stage-outer{
    overflow: hidden;
}
/*===================== ARROWS */
/* ==========================
   HERO SLIDER NAVIGATION
========================== */

.hero-slider .owl-nav{
    margin:0;
}

.hero-slider .owl-nav button{
    position:absolute;
    top:50%;
    transform:translateY(-50%) !important;

    width:55px;
    height:55px;

    border-radius:50% !important;
    background:rgba(255,255,255,.15) !important;
    backdrop-filter:blur(10px);

    color:#fff !important;
    font-size:20px !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    transition:.3s ease;
    z-index:10;
}

.hero-slider .owl-nav button:hover{
    background:#F4A62A !important;
    color:#111 !important;
}

.hero-slider .owl-prev{
    left:30px;
}

.hero-slider .owl-next{
    right:30px;
}

.hero-slider .owl-nav button span{
    display:none;
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .hero-slider .owl-nav button{
        width:48px;
        height:48px;
        font-size:18px !important;
    }

    .hero-slider .owl-prev{
        left:15px;
    }

    .hero-slider .owl-next{
        right:15px;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .hero-slider .owl-nav button{
        width:42px;
        height:42px;
        font-size:16px !important;
    }

    .hero-slider .owl-prev{
        left:10px;
    }

    .hero-slider .owl-next{
        right:10px;
    }
}

/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:576px){

    .hero-slider .owl-nav button{
        width:38px;
        height:38px;
        font-size:14px !important;
        top:auto;
        bottom:20px;
        transform:none !important;
    }

    .hero-slider .owl-prev{
        left:calc(50% - 45px);
    }

    .hero-slider .owl-next{
        right:calc(50% - 45px);
    }
}

/*========================== MARQUEE */
.ride-marquee{
    background:#111;
    color:#F4A62A;
    overflow:hidden;
    padding:15px 0;
    white-space:nowrap;
}

.marquee-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.marquee-track span{
    font-size:14px;
    font-weight:600;
    padding-right:50px;
}
.marquee-track span{
    white-space: nowrap;
}

.marquee-track span i{
    margin-left: 80px; 
}

.marquee-track span i:first-child{
    margin-left: 0;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* WHO WE ARE SECTION ====================== */
.about-section{
    background:#faf7f0;
border-left:3px solid #F4A62A;
}

.about-img{
    position:relative;
}

.about-img img{
    border-radius:20px;
    width:90%;
}

.experience-box {
    position: absolute;
    width: 260px;
    height: auto;
    bottom: -20px;
    right: -10px;
    background: #111;
    color: #fff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #F4A62A;
}

.experience-box h2{
    color:#F4A62A;
    font-size:32px;
    line-height:1;
    margin:0 0 5px;
    font-weight:700;
}

.experience-box span{
    display:block;
    font-size:11px;
    letter-spacing:1px;
    line-height:1.4;
}

.section-tag{
    display:inline-block;
    padding:10px 25px;
    border-radius:30px;
    background:#e8eef5;
    color:#111;
    font-weight:600;
    margin-bottom:20px;
}

.about-title{
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
}

.about-title span{
    color:#F4A62A;
}

.about-section p{
    color:#666;
    line-height:1.8;
}

.feature-box{
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:18px 20px;
    font-weight:600;
    background:#fff;
    transition:0.3s ease;
}

.feature-box i{
    color:#F4A62A;
    margin-right:10px;
}

.feature-box:hover{
    border:1px solid #F4A62A;
}

.about-btn{
    display:block;
    width:fit-content;
    margin:20px auto 0;
    background:#111;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
    font-size:14px;
}

.about-btn:hover{
    background:#F4A62A;
    color:#111;
}

@media(max-width:768px){

    .about-title{
        font-size:38px;
    }

    .experience-box{
        position:relative;
        right:0;
        bottom:0;
        margin-top:20px;
    }
}

/* STATE SECTION ===========*/
.stats-section{
    background:#111;
    padding:60px 0;
}

.stat-box{
    background:#1B1B1B;
border:1px solid rgba(244,166,42,.15);
    border-radius:16px;
    padding:25px 15px;
    text-align:center;
    transition:0.3s ease;
    height:100%;
}

.stat-box:hover{
    transform:translateY(-5px);
    border-color:#F4A62A;
}

.stat-box i{
    font-size:30px;
    color:#F4A62A;
    margin-bottom:12px;
    display:block;
}

.stat-box h2{
    font-size:38px;
    font-weight:700;
    color:#F4A62A;
    margin-bottom:6px;
    line-height:1;
}

.stat-box p{
    font-size:14px;
    color:#ccc;
    margin:0;
    letter-spacing:0.5px;
}

/* ========================= RIDES SECTION  */
.rides-section {
    background: #f8fafc;
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: #D97A00;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-title span {
    color: #D97A00;
}

.rides-section p {
    color: #5a5a7a;
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto;
}

/* GRID – 4 COLUMNS */
.rides-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* CARD – CHHOTA AUR SLEEK */
.ride-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
}

.ride-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(217, 122, 0, 0.12);
    border-color: #D97A00;
}

/* IMAGE */
.ride-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: 0.5s;
}

.ride-card:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.ride-content {
    padding: 18px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ride-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
    line-height: 1.3;
}

/* INFO BOXES – COMPACT */
.ride-info {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.ride-info div {
    flex: 1;
    background: #f4f6fa;
    border-radius: 12px;
    padding: 8px 4px;
    text-align: center;
    transition: 0.3s;
}

.ride-info div:hover {
    background: #fff0e0;
}

.ride-info i {
    color: #D97A00;
    font-size: 15px;
    display: block;
    margin-bottom: 3px;
}

.ride-info span {
    display: block;
    font-size: 11px;
    color: #6b6b8a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

/* DESCRIPTION */
.ride-content > p {
    font-size: 14px;
    color: #4a4a6a;
    margin-bottom: 18px;
    line-height: 1.5;
    flex-grow: 1;
}

/* BUTTON */
.ride-btn {
    display: block;
    text-align: center;
    background: #D97A00;
    color: #fff;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    margin-top: auto;
    border: none;
    letter-spacing: 0.3px;
}

.ride-btn:hover {
    background: #b86600;
    color: #fff;
    box-shadow: 0 8px 20px rgba(217, 122, 0, 0.35);
    transform: translateY(-2px);
}

/* 🔁 RESPONSIVE */
@media (max-width: 992px) {
    .rides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .rides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ride-card img {
        height: 220px;
    }
    .ride-content h4 {
        font-size: 20px;
    }
}

/* FAQ ==============*/
.faq-section{
    background:#fff;
    padding:100px 0;
}

.faq-image-wrapper{
    position:relative;
    max-width:500px;
}

.shape-bg{
    position:absolute;
    top:30px;
    left:-25px;
    width:100%;
    height:100%;
    background:#4f6430;
    border-radius:25px;
    z-index:1;
}

.faq-image{
    position:relative;
    z-index:2;
    border-radius:25px;
    width:100%;
}

.faq-tag{
    color:#4f6430;
    font-size:18px;
    font-weight:700;
}

.faq-title{
    font-size:52px;
    font-weight:800;
    margin:10px 0 20px;
}

.faq-text{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:12px;
}

.custom-faq .accordion-button{
    background:#f8f3ef;
    border-radius:12px !important;
    box-shadow:none;
    font-weight:600;
}

.custom-faq .accordion-button:not(.collapsed){
    background:#8B4513;
    color:#fff;
}

.custom-faq .accordion-body{
    background:#fff;
    border:1px solid #eee;
}

.faq-btn{
    display:inline-block;
    margin-top:25px;
    background: rgb(74, 95, 45);
    color:#fff;
    text-decoration:none;
    padding:14px 35px;
    border-radius:50px;
    font-weight:600;
}

.faq-btn:hover{
    color:#fff;
}

/* WHY CHOOSE US */
.why-choose-us{
    background:#4a5f2d;
    padding:80px 0;
    color:#fff;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    margin-bottom:15px;
    color:#fff;
}

.section-heading p{
    max-width:750px;
    margin:0 auto 50px;
    color:rgba(255,255,255,.85);
    font-size:16px;
    line-height:1.8;
}

/* Card */
.choose-box{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:30px 20px;
    text-align:center;
    height:100%;
    transition:.3s ease;
}

.choose-box:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.12);
    border-color:#f4c95d;
}

.choose-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#f4c95d;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.choose-box:hover .choose-icon{
    transform:scale(1.1);
}

.choose-icon i{
    font-size:30px;
    color:#4a5f2d;
}

.choose-box h4{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:15px;
}

.choose-box h4::after{
    content:'';
    width:60px;
    height:3px;
    background:#f4c95d;
    display:block;
    margin:12px auto 0;
    border-radius:10px;
}

.choose-box p{
    color:rgba(255,255,255,.9);
    font-size:15px;
    line-height:1.8;
    margin-top:15px;
}


/* TESTIMONIAL SECTION */
.testimonial-section{
    padding:80px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.section-heading{
    margin-bottom:50px;
}

.section-heading h2{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.section-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* CARD */
.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin:12px;
    border:1px solid #eee;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.35s ease;
    height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#F4A62A;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* HEADER */
.review-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:18px;
}

.user-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.user-avatar{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.user-info h5{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#111;
}

.user-info span{
    font-size:13px;
    color:#777;
}

/* Google Icon */
.google-icon{
    width:22px;
    height:22px;
    object-fit:contain;
}

/* STARS */
.review-stars{
    color:#F4A62A;
    font-size:16px;
    margin-bottom:15px;
}

/* REVIEW TEXT */
.review-content{
    color:#555;
    font-size:15px;
    line-height:1.8;

    display:-webkit-box;
    display:box;

    -webkit-box-orient:vertical;
    -webkit-line-clamp:4;
    line-clamp:4;

    overflow:hidden;
}

.read-more{
    display:inline-block;
    margin-top:12px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
    color:#F4A62A;
}

.read-more:hover{
    color:#111;
}

/* ARROWS */
.testimonial-carousel .owl-nav{
    margin-top:0!important;
}

.testimonial-carousel .owl-nav button{
    position:absolute;
    top:42%;
    width:45px;
    height:45px;
    border-radius:50%!important;
    background:#fff!important;
    border:2px solid #F4A62A!important;
    color:#F4A62A!important;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
}

.testimonial-carousel .owl-nav button:hover{
    background:#F4A62A!important;
    color:#111!important;
}

.testimonial-carousel .owl-prev{
    left:-20px;
}

.testimonial-carousel .owl-next{
    right:-20px;
}

/* ACTIVE CARD EFFECT */
.testimonial-carousel .owl-item{
    transition:.4s;
}

.testimonial-carousel .owl-item.center .testimonial-card{
    border-color:#F4A62A;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

/* MOBILE */
@media(max-width:768px){

    .testimonial-section{
        padding:60px 0;
    }

    .section-heading h2{
        font-size:32px;
    }

    .testimonial-card{
        padding:20px;
    }

    .testimonial-carousel .owl-prev{
        left:0;
    }

    .testimonial-carousel .owl-next{
        right:0;
    }
}

/* GALLERY SECTION */
.ride-stories{
    padding:80px 0;
    background:#fff;
}

.stories-header{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:40px;
}

.stories-header h2{
    font-size:42px;
    font-weight:800;
    color:#111;
    margin-bottom:10px;
}

.stories-header p{
    color:#666;
    font-size:16px;
    line-height:1.7;
    margin:0;
    max-width:600px;
}

/* Button */
.view-btn{
    background:#111;
    color:#fff;
    padding:12px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
    white-space:nowrap;
}

.view-btn:hover{
    background:#F4A62A;
    color:#111;
}

/* Grid */
.stories-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* Card */
.story-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:280px;
    display:block;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.story-card.featured{
    grid-column:span 2;
}

.story-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s ease;
}

.story-card:hover img{
    transform:scale(1.1);
}

/* Overlay */
.story-card .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.85) 10%,
        rgba(0,0,0,.35) 50%,
        rgba(0,0,0,0) 100%
    );
}

/* Title */
.story-card h3{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:2;
    color:#fff;
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    max-width:85%;
    transition:.3s;
}

.story-card:hover h3{
    transform:translateY(-5px);
}

.story-card.featured h3{
    font-size:32px;
    max-width:70%;
}

/* Optional Small Tag */
.story-card::before{
    content:"Adventure";
    position:absolute;
    top:15px;
    left:15px;
    z-index:2;
    background:rgba(244,166,42,.95);
    color:#111;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:30px;
}

/* Tablet */
@media(max-width:991px){

    .stories-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .story-card.featured{
        grid-column:span 2;
    }

    .story-card.featured h3{
        font-size:28px;
    }
}

/* Mobile */
@media(max-width:768px){

    .ride-stories{
        padding:60px 0;
    }

    .stories-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .stories-header h2{
        font-size:32px;
    }

    .stories-grid{
        grid-template-columns:1fr;
    }

    .story-card.featured{
        grid-column:auto;
    }

    .story-card,
    .story-card.featured{
        height:250px;
    }

    .story-card h3{
        font-size:18px;
    }

    .story-card.featured h3{
        font-size:22px;
        max-width:90%;
    }
}

/* OUR PARTNERS */
.partners-section{
    padding:80px 0;
    background:#fff;
}

.partner-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:50px;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.partner-box{
    background:#fff;
    border:1px solid #eee;
    border-radius:15px;
    padding:25px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

.partner-box:hover{
    transform:translateY(-5px);
    border-color:#F4A62A;
}

.partner-box img{
    max-width:120px;
    max-height:60px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.3s;
}

.partner-box:hover img{
    filter:grayscale(0%);
}

@media(max-width:991px){
    .partner-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:576px){
    .partner-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .partner-title{
        font-size:30px;
    }
}



/* FOOTER  CSS================================*/
.footer{
    background: #111111;
    /* border-top: 4px solid #F4A62A; */
    color: #fff;
    padding: 80px 0 25px;
}
.footer h4{
    color:#F4A62A;
    margin-bottom:20px;
    font-weight:700;
}
.footer p,
.footer li{
    color:#d0d0d0;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:12px;
}

.social-icons a{
    width:45px;
    height:45px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#F4A62A;
    color:#111;
    border-radius:50%;
    margin-right:10px;
    text-decoration:none;
    transition:.3s;
}

.social-icons a:hover{
    transform:translateY(-5px);
}

.footer hr{
    border-color:#333;
    margin:40px 0 20px;
}

.copyright{
    text-align:center;
    color:#aaa;
}