/* RESET */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}





/* =================================
   PREMIUM NAVBAR
================================= */

.navbar{

    position:fixed;
    top:0;
    left:0;
    width:100%;

    z-index:9999;

    backdrop-filter:blur(20px);

    background:
    rgba(255,255,255,0.75);

    border-bottom:
    1px solid rgba(255,255,255,0.4);

    transition:.4s ease;

}

.navbar.scrolled{

    background:
    rgba(255,255,255,0.95);

    box-shadow:
    0 10px 30px rgba(0,0,0,.08);

}

.nav-container{

    max-width:1400px;
    margin:auto;

    padding:20px 60px;

    display:flex;
    align-items:center;
    justify-content:space-between;

}

.logo img{

    height:85px;
    object-fit:contain;

}

/* MENU */

.nav-menu{

    display:flex;
    align-items:center;
    gap:35px;

}

.nav-menu a{

    position:relative;

    text-decoration:none;

    color:#1f2937;

    font-size:15px;

    font-weight:600;

    transition:.3s;

    display:inline-block;

}

.nav-menu a:hover{

    color:#fb8500;

}

.nav-menu a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;
    height:2px;

    background:#fb8500;

    transition:.3s;

}

.nav-menu a:hover::after{

    width:100%;

}

/* RIGHT SIDE */

.nav-right{

    display:flex;
    align-items:center;
    gap:15px;

}

.call-btn{

    padding:12px 22px;

    border-radius:50px;

    border:2px solid #2d6a4f;

    color:#2d6a4f;

    font-weight:600;

    transition:.3s;

}

.call-btn:hover{

    background:#2d6a4f;
    color:#fff;

}

.whatsapp-nav{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E);

    color:#fff;

    padding:13px 25px;

    border-radius:50px;

    font-weight:600;

    box-shadow:
    0 10px 25px rgba(37,211,102,.25);

    transition:.3s;

}

.whatsapp-nav:hover{

    transform:translateY(-3px);

}

/* HAMBURGER */

.hamburger{

    display:none;

    cursor:pointer;

    flex-direction:column;

    gap:5px;

}

.hamburger span{

    width:28px;
    height:3px;

    background:#222;

    border-radius:20px;

}

/* MOBILE */

@media(max-width:991px){

    .nav-menu{

        position:fixed;

        top:90px;
        right:-100%;

        width:280px;
        height:calc(100vh - 90px);

        background:#fff;

        flex-direction:column;

        align-items:flex-start;

        padding:40px 25px;

        transition:.4s;

        box-shadow:
        -10px 0 30px rgba(0,0,0,.08);

    }

    .nav-menu.active{

        right:0;

    }

    .nav-right{

        display:none;

    }

    .hamburger{

        display:flex;

    }

}

@media(max-width:576px){

    .nav-container{

        padding:15px 20px;

    }

    .logo img{

        height:60px;

    }

}

/* =================================
   PREMIUM HERO
================================= */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

     background:
    radial-gradient(circle at top left,
    rgba(244,180,0,.12),
    transparent 35%),
    radial-gradient(circle at bottom left,
    rgba(45,106,79,.08),
    transparent 35%),
    #FDF9F0;

    padding:120px 8% 10px;

}

.hero-container{

    max-width:1400px;

    margin:auto;

    width:100%;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}

/* LEFT */

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    background:#fff;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

    color:#F4A300;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

}

.hero-content h1{

    font-size:68px;

    line-height:1.05;

    margin:25px 0;

    color:#172033;

    font-weight:800;

}

.hero-content h1 span{

    color:#F4A300;

}

.hero-content p{

    font-size:19px;

    color:#5b6472;

    max-width:650px;

    line-height:1.8;

}

/* BUTTONS */

.hero-buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.hero-btn-primary{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E);

    color:#fff;

    padding:18px 36px;

    border-radius:60px;

    font-weight:600;

    transition:.3s;

}

.hero-btn-primary:hover{

    transform:translateY(-4px);

}

.hero-btn-secondary{

    background:#fff;

    color:#172033;

    padding:18px 36px;

    border-radius:60px;

    font-weight:600;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

/* TRUST */

.trust-box{

    margin-top:40px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    padding:15px 22px;

    border-radius:50px;

    font-weight:600;

    color:#2D6A4F;

    box-shadow:
    0 15px 35px rgba(0,0,0,.06);

}

/* RIGHT */

.hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:650px;

    height:auto;

    object-fit:contain;

    background:none;

    border-radius:0;

    box-shadow:none;

    filter:
    drop-shadow(0 40px 50px rgba(0,0,0,.18));

    animation:mangoFloat 6s ease-in-out infinite;

}
@keyframes mangoFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

.hero-image::before{

    content:'';

    position:absolute;

    width:500px;
    height:500px;

    background:
    radial-gradient(
    circle,
    rgba(244,163,0,.25),
    transparent 70%);

    z-index:-1;

    animation:glowPulse 5s infinite;

}

@keyframes glowPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* GLASS CARD */

.glass-card{

    position:absolute;

    bottom:40px;
    left:-30px;

    z-index:2;

    background:
    rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    padding:20px 25px;

    border-radius:20px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}

.glass-card h4{

    color:#172033;

    margin-bottom:5px;

}

.glass-card p{

    color:#666;

    font-size:14px;

}

/* SHAPES */

.hero-shape{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

}

.shape-1{

    width:300px;
    height:300px;

    background:#F4A300;

    top:-120px;
    right:-100px;

    opacity:.18;

}

.shape-2{

    width:250px;
    height:250px;

    background:#2D6A4F;

    bottom:-100px;
    left:-100px;

    opacity:.12;

}

/* RESPONSIVE */

@media(max-width:991px){

    .hero-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .hero-content h1{

        font-size:54px;

    }

    .hero-buttons{

        justify-content:center;

    }

    .hero-image{

        margin-top:40px;

    }

    .glass-card{

        left:20px;

    }

}

@media(max-width:576px){

    .hero-content h1{

        font-size:40px;

    }

    .hero-buttons{

        flex-direction:column;

    }

}

/* =================================
   TRUST BAR
================================= */

.trust-bar{

     background:
    linear-gradient(
    135deg,
    #1F4D3A,
    #295C46
    );

    padding:32px 5%;

    display:flex;

    justify-content:center;

    align-items:center;

    gap:65px;

    flex-wrap:wrap;

    position:relative;

    z-index:5;

}

.trust-item{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    font-size:15px;

    font-weight:600;

}

.trust-item i{

    color:#F4B400;

    font-size:18px;

}

/* HOVER */

.trust-item{
    position:relative;
}

.trust-item::after{
    content:'';
    width:1px;
    height:20px;
    background:rgba(255,255,255,.2);
    position:absolute;
    right:-22px;
}

.trust-item:last-child::after{
    display:none;
}

/* MOBILE */

@media(max-width:768px){

    .trust-bar{

        gap:20px;

        justify-content:flex-start;

    }

    .trust-item{

        width:100%;

        font-size:14px;

    }

}

/* =================================
   ABOUT SECTION
================================= */

.about-section{

    padding-top: 120px;
    padding-bottom: 0px;

    background:#ffffff;

}

.about-container{

    max-width:1400px;

    margin:auto;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* IMAGE SIDE */

.about-image{

    position:relative;

}

.about-image-bg{

    position:absolute;

    width:350px;
    height:350px;

    background:
    linear-gradient(
    135deg,
    rgba(244,180,0,.15),
    rgba(45,106,79,.10)
    );

    border-radius:50%;

    top:-50px;
    left:-50px;

    z-index:1;

}

.about-image img{

    position:relative;

    z-index:2;

    width:100%;

    border-radius:35px;

    box-shadow:
    0 30px 60px rgba(0,0,0,.12);

}

.experience-card{

    position:absolute;

    bottom:-30px;
    right:-30px;

    z-index:3;

    background:#fff;

    padding:25px 35px;

    border-radius:25px;

    box-shadow:
    0 25px 50px rgba(0,0,0,.12);

}

.experience-card h3{

    font-size:42px;

    color:#F4B400;

}

.experience-card p{

    color:#666;

}

/* CONTENT SIDE */

.about-tag{

    color:#F4B400;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:1px;

}

.about-content h2{

    font-size:58px;

    line-height:1.2;

    color:#172033;

    margin:20px 0;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

/* FEATURES */

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;

    margin-top:35px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:#172033;

}

.feature-item i{

    color:#F4B400;

    font-size:18px;

}

/* BUTTON */

.about-btn{

    display:inline-block;

    margin-top:40px;

    background:#F4B400;

    color:#fff;

    padding:18px 35px;

    border-radius:60px;

    font-weight:600;

    transition:.3s;

}

.about-btn:hover{

    transform:translateY(-4px);

}

.section-divider{

    width:120px;

    height:4px;

    margin:100px auto;

    border-radius:50px;

    background:
    linear-gradient(
    90deg,
    transparent,
    #F4B400,
    transparent
    );

}

/* RESPONSIVE */

@media(max-width:991px){

    .about-container{

        grid-template-columns:1fr;

    }

    .about-content{

        text-align:center;

    }

    .about-content h2{

        font-size:42px;

    }

    .about-features{

        grid-template-columns:1fr;

    }

}

@media(max-width:576px){

    .about-content h2{

        font-size:34px;

    }

    .experience-card{

        right:10px;

        bottom:-20px;

    }

}

/* =================================
   PREMIUM PRODUCTS SHOWCASE
================================= */

.products-showcase-section{

    padding:120px 8%;

    background-color: #FDF9F0;

}

/* =================================
   SECTION HEADING
================================= */

.products-heading{

    max-width:1000px;

    margin:0 auto 120px;

    text-align:center;

}

.products-badge{

    display:inline-block;

    padding:14px 30px;

    border-radius:50px;

    background:
    rgba(244,180,0,.12);

    color:#F4B400;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

}

.products-heading h2{

    font-size:78px;

    line-height:1.05;

    margin:30px 0;

    color:#172033;

    font-weight:800;

}

.products-heading h2 span{

    color:#F4B400;

}

.products-heading p{

    max-width:850px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:#6B7280;

}


/* =================================
   PRODUCT CARD
================================= */

.product-card{

    max-width:1450px;

    margin:0 auto 80px;

    background:#ffffff;

    border-radius:40px;

    padding:80px;

    box-shadow:
    0 25px 80px rgba(0,0,0,.06);

    overflow:hidden;

    position:relative;

}

.product-card:last-child{

    margin-bottom:0;

}

.product-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

/* APPLE REVERSE */

.reverse-layout{

    direction:rtl;

}

.reverse-layout > *{

    direction:ltr;

}

/* =================================
   PRODUCT IMAGE
================================= */

.product-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:500px;

}

.product-image img{

    width:100%;

    max-width:600px;

    position:relative;

    z-index:2;

    animation:
    floatFruit 6s ease-in-out infinite;

}

/* GLOW */

.product-glow{

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    radial-gradient(
    circle,
    rgba(244,180,0,.25),
    transparent 70%
    );

    animation:
    glowPulse 5s ease-in-out infinite;

}

.apple-glow{

    background:
    radial-gradient(
    circle,
    rgba(220,38,38,.18),
    transparent 70%
    );

}

.grapes-glow{

    background:
    radial-gradient(
    circle,
    rgba(107,33,168,.18),
    transparent 70%
    );

}

/* =================================
   PRODUCT CONTENT
================================= */

.product-content{

    max-width:650px;

}

.product-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:25px;

}

.bestseller{

    background:#FFF3D6;

    color:#E6A400;

}

.premium-tag{

    background:#FFE4E4;

    color:#D32F2F;

}

.fresh-tag{

    background:#EFE6FF;

    color:#6A1B9A;

}

.product-content h3{

    font-size:68px;

    line-height:1.05;

    color:#172033;

    margin-bottom:25px;

    font-weight:800;

}

.product-content h3 span{

    color:#F4B400;

}

.product-content p{

    font-size:18px;

    line-height:1.9;

    color:#6B7280;

    margin-bottom:35px;

}

/* =================================
   FEATURES
================================= */

.product-features{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:18px 30px;

}

.feature-item{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:16px;

    font-weight:600;

    color:#172033;

}

.feature-item i{

    color:#F4B400;

    font-size:18px;

    width:20px;

}

/* =================================
   BUTTONS
================================= */

.product-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.buy-btn{

    background:
    linear-gradient(
    135deg,
    #25D366,
    #128C7E);;

    color:#fff;

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.35s ease;

  
}

.buy-btn:hover{

    transform:
    translateY(-5px);

}

.enquiry-btn{

    background:#fff;

    border:2px solid #128C7E;

    color:#128C7E;

    padding:18px 38px;

    border-radius:60px;

    font-weight:700;

    transition:.35s ease;

}

.enquiry-btn:hover{


    transform:
    translateY(-5px);



}

/* =================================
   HOVER EFFECT
================================= */

.product-card:hover{

    transform:
    translateY(-5px);

    transition:.4s;

}

/* =================================
   ANIMATIONS
================================= */

@keyframes floatFruit{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-20px);
    }

    100%{
        transform:translateY(0px);
    }

}

@keyframes glowPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

/* =================================
   TABLET
================================= */

@media(max-width:1200px){

    .products-heading h2{

        font-size:62px;

    }

    .product-content h3{

        font-size:52px;

    }

}

/* =================================
   MOBILE
================================= */

@media(max-width:991px){

    .product-card{

        padding:50px;

    }

    .product-container{

        grid-template-columns:1fr;

        gap:50px;

    }

    .reverse-layout{

        direction:ltr;

    }

    .product-content{

        text-align:center;

        max-width:100%;

    }

    .product-features{

        grid-template-columns:1fr;

    }

    .product-buttons{

        justify-content:center;

    }

    .products-heading h2{

        font-size:52px;

    }

    .product-content h3{

        font-size:46px;

    }

}

@media(max-width:576px){

    .products-showcase-section{

        padding:100px 5%;

    }

    .product-card{

        padding:35px 25px;

        border-radius:25px;

    }

    .products-heading{

        margin-bottom:70px;

    }

    .products-heading h2{

        font-size:38px;

    }

    .products-heading p{

        font-size:16px;

    }

    .product-content h3{

        font-size:34px;

    }

    .product-content p{

        font-size:15px;

    }

    .product-buttons{

        flex-direction:column;

    }

    .buy-btn,
    .enquiry-btn{

        width:100%;

        text-align:center;

    }

    .product-image{

        min-height:auto;

    }

    .product-glow{

        width:280px;
        height:280px;

    }

}



/* =================================
   WHY FRESHY FRUITS
================================= */

.why-freshy{

    padding:120px 8%;

    background:#ffffff;

}

.section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 70px;

}

.section-header span{

    color:#F4A300;

    font-weight:600;

    letter-spacing:1px;

    text-transform:uppercase;

}

.section-header h2{

    font-size:54px;

    line-height:1.2;

    color:#172033;

    margin:15px 0 20px;

}

.section-header p{

    color:#6B7280;

    font-size:18px;

}

.why-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:30px;

    text-align:center;

    transition:.4s;

    border:1px solid #f1f1f1;

    box-shadow:
    0 10px 30px rgba(0,0,0,.04);

}

.why-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    0 30px 50px rgba(0,0,0,.10);

}

.why-icon{

    width:85px;
    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
    135deg,
    #F4B400,
    #FF9F1C);

}

.why-icon i{

    font-size:32px;

    color:#fff;

}

.why-card h3{

    color:#172033;

    font-size:24px;

    margin-bottom:15px;

}

.why-card p{

    color:#6B7280;

    line-height:1.8;

}

/* HOVER ICON */

.why-card:hover .why-icon{

    transform:rotate(8deg);

    transition:.4s;

}

/* RESPONSIVE */

@media(max-width:1100px){

    .why-grid{

        grid-template-columns:
        repeat(2,1fr);

    }

}

@media(max-width:768px){

    .section-header h2{

        font-size:38px;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

}



/* =================================
   DELIVERY NETWORK SECTION
================================= */

.delivery-network-section{

    padding:80px 8%;

    background-color: #FDF9F0;

    text-align:center;

}

/* HEADING */

.delivery-badge{

    display:inline-block;

    padding:12px 24px;

    background:#FFF4D9;

    color:#F4B400;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}

.delivery-heading{

    max-width:850px;

    margin:auto;

}

.delivery-heading h2{

    font-size:72px;

    line-height:1.1;

    margin:25px 0;

    color:#172033;

}

.delivery-heading h2 span{

    color:#2D6A4F;

}

.delivery-heading p{

    max-width:700px;

    margin:auto;

    font-size:18px;

    color:#6B7280;

    line-height:1.8;

}

/* NETWORK AREA */

.delivery-network-visual{

    position:relative;

    width:900px;

    height:520px;

    margin:90px auto 60px;

    background:
    radial-gradient(
    circle,
    rgba(244,180,0,.08),
    transparent 70%
    );

}

.network-svg{

    width:100%;

    height:100%;

}

/* DASH ROUTES */

.route-path{

    fill:none;

    stroke:#F4B400;

    stroke-width:4;

    stroke-dasharray:12 12;

    opacity:.55;

}

/* OVALS */

.network-ring{

    fill:none;

    stroke:#2D6A4F;

    stroke-width:2;

    stroke-dasharray:10 10;

    opacity:.15;

}

/* PINS */

.network-pin{

    position:absolute;

    text-align:center;

}

.network-pin i{

    font-size:62px;

    color:#F4B400;

    animation:floatPin 3s ease-in-out infinite;

}

.network-pin span{

    display:inline-block;

    margin-top:12px;

    padding:12px 24px;

    background:#fff;

    border-radius:50px;

    font-weight:700;

    color:#172033;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}

/* POSITION */

.pin-top{

    top:40px;

    left:50%;

    transform:translateX(-50%);

}

.pin-left{

    bottom:70px;

    left:120px;

}

.pin-right{

    bottom:70px;

    right:120px;

}

/* CHIPS */

.delivery-areas{

    max-width:1000px;

    margin:auto;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:15px;

}

.delivery-areas span{

    background:#fff;

    padding:12px 22px;

    border-radius:50px;

    border:1px solid #eee;

    font-weight:600;

    transition:.3s;

}

.delivery-areas span:hover{

    background:#2D6A4F;

    color:#fff;

    transform:translateY(-3px);

}

/* TEXT */

.delivery-text{

    margin-top:50px;

    font-size:22px;

    font-weight:700;

    color:#172033;

}

/* ANIMATION */

@keyframes floatPin{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}

/* MOBILE */

@media(max-width:991px){

    .delivery-heading h2{

        font-size:48px;

    }

    .delivery-network-visual{

        width:100%;

        height:420px;

    }

    .pin-left{

        left:10px;

    }

    .pin-right{

        right:10px;

    }

}

@media(max-width:576px){

    .delivery-heading h2{

        font-size:34px;

    }

    .network-pin i{

        font-size:45px;

    }

    .network-pin span{

        font-size:13px;

        padding:10px 16px;

    }

}


/* =================================
   REVIEWS SECTION
================================= */

.reviews-section{

    padding:100px 8%;

    background:
    linear-gradient(
    180deg,
    #ffffff,
    #faf8f3
    );

}

/* HEADING */

.reviews-heading{

    text-align:center;

    max-width:1000px;

    margin:auto;

}

.reviews-badge{

    display:inline-block;

    padding:12px 24px;

    border-radius:50px;

    background:#FFF4D9;

    color:#F4B400;

    font-size:14px;

    font-weight:700;

    text-transform:uppercase;

}

.reviews-heading h2{

    font-size:56px;

    margin:25px 0;

    color:#172033;

    font-weight:800;

}

.reviews-heading h2 span{

    color:#2D6A4F;

}

.reviews-heading p{

    max-width:700px;

    margin:auto;

    color:#6B7280;

    line-height:1.9;

    font-size:18px;

}



.rating-score{

    font-size:60px;

    font-weight:800;

    color:#F4B400;

}

.rating-stars{

    color:#F4B400;

    font-size:18px;

    margin-bottom:8px;

}

.rating-content p{

    color:#6B7280;

}

/* REVIEWS GRID */

.reviews-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

}

/* REVIEW CARD */

.review-card{

    position:relative;

    background:#fff;

    padding:30px;

    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    overflow:hidden;

    transition:.4s;

}

.review-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    background:
    rgba(244,180,0,.08);

    border-radius:50%;

    top:-60px;

    right:-60px;

}

.review-card:hover{

    transform:
    translateY(-8px);

}

/* TOP */

.review-top{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.review-top img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:3px solid #F4B400;

}

.review-top h4{

    color:#172033;

    font-size:18px;

    margin-bottom:4px;

}

.review-top span{

    color:#6B7280;

    font-size:14px;

}

/* STARS */

.review-stars{

    color:#F4B400;

    font-size:18px;

    margin-bottom:15px;

}

/* REVIEW TEXT */

.review-card p{

    color:#6B7280;

    line-height:1.9;

}

/* TRUST */

.review-trust{

    margin-top:70px;

    text-align:center;

    font-size:18px;

    font-weight:700;

    color:#2D6A4F;

}

.review-trust i{

    margin-right:10px;

    color:#F4B400;

}

/* RESPONSIVE */

@media(max-width:991px){

    .reviews-grid{

        grid-template-columns:1fr;

    }

    .reviews-heading h2{

        font-size:42px;

    }

}

@media(max-width:576px){

    .reviews-section{

        padding:100px 5%;

    }

    .reviews-heading h2{

        font-size:32px;

    }

    .rating-summary{

        flex-direction:column;

        text-align:center;

    }

}
}