/* =========================================================
   SARJANA BLOOMS
   MAIN STYLE
========================================================= */

:root {

    /* Brand Colors */

    --sb-pink: #ff007b;
    --sb-pink-light: #ff6b9a;

    --sb-rose: #fd9a95;
    --sb-peach: #f8c49d;

    --sb-yellow: #fae7a0;

    --sb-cream: #fff9f4;

    --sb-white: #ffffff;

    --sb-dark: #3d2430;
    --sb-muted: #806d76;

    --sb-border: rgba(255, 255, 255, 0.65);

    --sb-glass:
        rgba(255, 255, 255, 0.48);

    --sb-shadow:
        0 25px 70px rgba(93, 34, 57, 0.12);

    --sb-shadow-small:
        0 10px 35px rgba(93, 34, 57, 0.10);

    --sb-radius:
        28px;

    --sb-transition:
        all 0.3s ease;

}


/* =========================================================
   GLOBAL
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "DM Sans",
        sans-serif;

    color:
        var(--sb-dark);

    background:

        radial-gradient(
            circle at 5% 10%,
            rgba(255, 0, 123, 0.10),
            transparent 25%
        ),

        radial-gradient(
            circle at 90% 5%,
            rgba(250, 231, 160, 0.35),
            transparent 28%
        ),

        radial-gradient(
            circle at 50% 90%,
            rgba(253, 154, 149, 0.13),
            transparent 30%
        ),

        var(--sb-cream);

    overflow-x: hidden;

}


a {
    text-decoration: none;
}


::selection {

    background:
        var(--sb-pink);

    color:
        white;

}


/* =========================================================
   NAVBAR
========================================================= */

.sb-navbar {

    margin: 15px auto;

    width: min(
        1180px,
        calc(100% - 30px)
    );

    padding:
        8px 18px;

    border:
        1px solid
        var(--sb-border);

    background:
        rgba(255, 255, 255, 0.48);

    backdrop-filter:
        blur(22px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(150%);

    border-radius:
        100px;

    box-shadow:
        var(--sb-shadow-small);

    transition:
        var(--sb-transition);

}


.sb-logo {

    width: 145px;

    height: auto;

    display: block;

}


.sb-navbar .nav-link {

    color:
        var(--sb-dark);

    font-weight:
        500;

    padding:
        10px 17px !important;

    position: relative;

}


.sb-navbar .nav-link::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 0;

    height: 2px;

    background:
        var(--sb-pink);

    border-radius: 10px;

    transform:
        translateX(-50%);

    transition:
        var(--sb-transition);

}


.sb-navbar .nav-link:hover::after,
.sb-navbar .nav-link.active::after {

    width: 22px;

}


.sb-navbar .nav-link:hover {

    color:
        var(--sb-pink);

}


.sb-navbar-toggler {

    border: 0;

    font-size: 28px;

    color:
        var(--sb-dark);

}


.sb-navbar-toggler:focus {

    box-shadow: none;

}


/* =========================================================
   BUTTONS
========================================================= */

.sb-btn-primary {

    border: 0;

    color:
        white;

    font-weight:
        700;

    background:

        linear-gradient(
            135deg,
            var(--sb-pink),
            var(--sb-pink-light)
        );

    box-shadow:

        0 12px 28px
        rgba(255, 0, 123, 0.23);

    transition:
        var(--sb-transition);

}


.sb-btn-primary:hover {

    color:
        white;

    transform:
        translateY(-2px);

    box-shadow:

        0 17px 35px
        rgba(255, 0, 123, 0.30);

}


.sb-btn-large {

    padding:
        14px 25px;

    border-radius:
        100px;

}


.sb-btn-glass {

    border:
        1px solid
        rgba(255,255,255,.8);

    color:
        var(--sb-dark);

    background:
        rgba(255,255,255,.45);

    backdrop-filter:
        blur(15px);

    box-shadow:
        var(--sb-shadow-small);

    transition:
        var(--sb-transition);

}


.sb-btn-glass:hover {

    color:
        var(--sb-pink);

    transform:
        translateY(-2px);

}


.sb-btn-outline {

    border:
        1px solid
        rgba(255, 0, 123, .25);

    color:
        var(--sb-pink);

    background:
        rgba(255,255,255,.4);

    border-radius:
        100px;

    padding:
        13px 24px;

    font-weight:
        600;

}


.sb-btn-outline:hover {

    color:
        white;

    background:
        var(--sb-pink);

}


/* =========================================================
   HERO
========================================================= */

.sb-hero {

    min-height:
        850px;

    padding:
        170px 0 100px;

    position:
        relative;

    overflow:
        hidden;

}


.sb-hero-content {

    position:
        relative;

    z-index:
        2;

}


.sb-eyebrow {

    display:
        inline-flex;

    align-items:
        center;

    gap:
        10px;

    padding:
        8px 14px;

    background:
        rgba(255, 255, 255, .55);

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius:
        100px;

    font-size:
        13px;

    font-weight:
        600;

    color:
        var(--sb-pink);

    backdrop-filter:
        blur(10px);

}


.sb-eyebrow-dot {

    width:
        7px;

    height:
        7px;

    border-radius:
        50%;

    background:
        var(--sb-pink);

    box-shadow:
        0 0 0 5px
        rgba(255,0,123,.08);

}


.sb-hero-title {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            3.3rem,
            6vw,
            5.8rem
        );

    line-height:
        1.02;

    letter-spacing:
        -3px;

    margin:
        25px 0;

    font-weight:
        700;

}


.sb-hero-title span {

    display:
        block;

    background:

        linear-gradient(
            90deg,
            var(--sb-pink),
            var(--sb-rose),
            #d98774
        );

    -webkit-background-clip:
        text;

    background-clip:
        text;

    color:
        transparent;

}


.sb-hero-description {

    max-width:
        580px;

    font-size:
        17px;

    line-height:
        1.8;

    color:
        var(--sb-muted);

}


.sb-hero-buttons {

    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        12px;

    margin-top:
        30px;

}


/* =========================================================
   HERO STATS
========================================================= */

.sb-hero-stats {

    display:
        flex;

    align-items:
        center;

    gap:
        22px;

    margin-top:
        45px;

}


.sb-stat {

    display:
        flex;

    flex-direction:
        column;

}


.sb-stat strong {

    font-size:
        18px;

}


.sb-stat span {

    color:
        var(--sb-muted);

    font-size:
        12px;

}


.sb-stat-divider {

    height:
        35px;

    width:
        1px;

    background:
        rgba(61,36,48,.15);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.sb-hero-visual {

    min-height:
        560px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.sb-flower-card {

    width:
        min(450px, 90%);

    height:
        510px;

    position:
        relative;

    border:
        1px solid
        rgba(255,255,255,.8);

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,.72),
            rgba(255,255,255,.27)
        );

    backdrop-filter:
        blur(30px)
        saturate(150%);

    -webkit-backdrop-filter:
        blur(30px)
        saturate(150%);

    border-radius:
        45px;

    box-shadow:
        0 35px 90px
        rgba(93,34,57,.16);

    overflow:
        hidden;

    transform:
        rotate(2deg);

}


.sb-flower-card::before {

    content: "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    border-radius:
        50%;

    background:
        rgba(255, 0, 123, .12);

    filter:
        blur(5px);

    top:
        -120px;

    right:
        -100px;

}


.sb-flower-card::after {

    content: "";

    position:
        absolute;

    width:
        230px;

    height:
        230px;

    border-radius:
        50%;

    background:
        rgba(250, 231, 160, .25);

    filter:
        blur(3px);

    bottom:
        -80px;

    left:
        -60px;

}


/* =========================================================
   FLOWER DISPLAY
========================================================= */

.sb-flower-display {

    position:
        absolute;

    inset:
        50px;

}


.flower {

    position:
        absolute;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        75px;

    filter:
        drop-shadow(
            0 20px 15px
            rgba(93,34,57,.15)
        );

    animation:
        sbFloat 5s ease-in-out infinite;

}


.flower-1 {

    left:
        20px;

    top:
        100px;

    font-size:
        95px;

}


.flower-2 {

    left:
        125px;

    top:
        20px;

    font-size:
        85px;

    animation-delay:
        -.8s;

}


.flower-3 {

    right:
        20px;

    top:
        90px;

    font-size:
        100px;

    animation-delay:
        -1.5s;

}


.flower-4 {

    left:
        75px;

    top:
        210px;

    font-size:
        72px;

    animation-delay:
        -2s;

}


.flower-5 {

    right:
        85px;

    top:
        220px;

    font-size:
        78px;

    animation-delay:
        -2.8s;

}


.flower-6 {

    left:
        185px;

    top:
        145px;

    font-size:
        95px;

    animation-delay:
        -1.2s;

}


@keyframes sbFloat {

    0%,
    100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-12px)
            rotate(3deg);
    }

}


/* =========================================================
   CARD CAPTION
========================================================= */

.sb-card-caption {

    position:
        absolute;

    bottom:
        32px;

    left:
        40px;

    z-index:
        3;

    display:
        flex;

    flex-direction:
        column;

}


.sb-card-caption span {

    font-size:
        11px;

    letter-spacing:
        5px;

    color:
        var(--sb-muted);

}


.sb-card-caption strong {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        27px;

    letter-spacing:
        4px;

}


/* =========================================================
   DECORATION
========================================================= */

.sb-card-decoration {

    position:
        absolute;

    border-radius:
        50%;

    z-index:
        1;

}


.decoration-one {

    width:
        15px;

    height:
        15px;

    background:
        var(--sb-pink);

    top:
        60px;

    left:
        40px;

}


.decoration-two {

    width:
        9px;

    height:
        9px;

    background:
        var(--sb-yellow);

    top:
        100px;

    right:
        55px;

}


/* =========================================================
   FLOATING CARDS
========================================================= */

.sb-floating-card {

    position:
        absolute;

    z-index:
        5;

    background:
        rgba(255,255,255,.68);

    border:
        1px solid
        rgba(255,255,255,.85);

    backdrop-filter:
        blur(20px);

    -webkit-backdrop-filter:
        blur(20px);

    box-shadow:
        var(--sb-shadow-small);

    border-radius:
        18px;

}


.sb-floating-card-one {

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    left:
        0;

    bottom:
        95px;

    padding:
        13px 18px;

    animation:
        sbFloat 6s ease-in-out infinite;

}


.sb-floating-card-one small {

    display:
        block;

    color:
        var(--sb-muted);

}


.sb-floating-card-one strong {

    display:
        block;

}


.sb-floating-icon {

    width:
        40px;

    height:
        40px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        13px;

    color:
        var(--sb-pink);

    background:
        rgba(255,0,123,.09);

}


.sb-floating-card-two {

    right:
        -15px;

    top:
        120px;

    padding:
        12px 18px;

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

    color:
        var(--sb-dark);

    animation:
        sbFloat 5s ease-in-out infinite;

}


.sb-floating-card-two i {

    color:
        var(--sb-pink);

}


/* =========================================================
   FEATURE SECTION
========================================================= */

.sb-feature-section {

    padding:
        20px 0 90px;

}


.sb-feature-card {

    display:
        flex;

    align-items:
        flex-start;

    gap:
        18px;

    padding:
        27px;

    height:
        100%;

    background:
        rgba(255,255,255,.45);

    border:
        1px solid
        rgba(255,255,255,.8);

    backdrop-filter:
        blur(18px);

    border-radius:
        25px;

    box-shadow:
        var(--sb-shadow-small);

    transition:
        var(--sb-transition);

}


.sb-feature-card:hover {

    transform:
        translateY(-5px);

}


.sb-feature-icon {

    width:
        50px;

    height:
        50px;

    flex-shrink:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--sb-pink);

    background:
        linear-gradient(
            135deg,
            rgba(255,0,123,.10),
            rgba(253,154,149,.15)
        );

    border-radius:
        16px;

    font-size:
        21px;

}


.sb-feature-card h5 {

    font-size:
        16px;

    margin-bottom:
        7px;

}


.sb-feature-card p {

    font-size:
        13px;

    line-height:
        1.7;

    color:
        var(--sb-muted);

    margin:
        0;

}


/* =========================================================
   GENERAL SECTION
========================================================= */

.sb-section {

    padding:
        120px 0;

}


.sb-section-heading {

    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        30px;

    margin-bottom:
        50px;

}


.sb-section-label {

    display:
        inline-block;

    color:
        var(--sb-pink);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        3px;

    margin-bottom:
        13px;

}


.sb-section-heading h2,
.sb-about-title,
.sb-contact-section h2 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.3rem,
            4vw,
            3.7rem
        );

    line-height:
        1.15;

    margin:
        0;

}


.sb-section-heading h2 span,
.sb-about-title span {

    color:
        var(--sb-pink);

}


.sb-text-link {

    color:
        var(--sb-pink);

    font-weight:
        600;

    white-space:
        nowrap;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.sb-product-card {

    height:
        100%;

    background:
        rgba(255,255,255,.55);

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:
        28px;

    overflow:
        hidden;

    backdrop-filter:
        blur(18px);

    box-shadow:
        var(--sb-shadow-small);

    transition:
        var(--sb-transition);

}


.sb-product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--sb-shadow);

}


.sb-product-image {

    height:
        320px;

    position:
        relative;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #ffe2eb,
            #fff1c7
        );

}


.sb-product-placeholder {

    height:
        100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    font-size:
        120px;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.7),
            transparent 60%
        );

}


.sb-product-yellow {

    background:
        linear-gradient(
            135deg,
            #fff4bb,
            #fff9e6
        );

}


.sb-product-peach {

    background:
        linear-gradient(
            135deg,
            #ffd8c7,
            #fff1e9
        );

}


.sb-product-badge {

    position:
        absolute;

    top:
        18px;

    left:
        18px;

    padding:
        7px 12px;

    border-radius:
        100px;

    font-size:
        11px;

    font-weight:
        700;

    color:
        var(--sb-pink);

    background:
        rgba(255,255,255,.72);

    backdrop-filter:
        blur(10px);

}


.sb-badge-new {

    color:
        #a66a00;

}


.sb-product-content {

    padding:
        25px;

}


.sb-product-category {

    color:
        var(--sb-pink);

    text-transform:
        uppercase;

    letter-spacing:
        2px;

    font-size:
        10px;

    font-weight:
        700;

}


.sb-product-content h4 {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        25px;

    margin:
        8px 0;

}


.sb-product-content p {

    color:
        var(--sb-muted);

    font-size:
        13px;

    line-height:
        1.7;

}


.sb-product-bottom {

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    margin-top:
        20px;

}


.sb-product-bottom strong {

    font-size:
        18px;

}


.sb-product-button {

    width:
        42px;

    height:
        42px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        50%;

    color:
        white;

    background:
        var(--sb-pink);

    transition:
        var(--sb-transition);

}


.sb-product-button:hover {

    color:
        white;

    transform:
        rotate(45deg);

}


/* =========================================================
   ABOUT
========================================================= */

.sb-about-section {

    background:
        rgba(255,255,255,.28);

}


.sb-about-visual {

    min-height:
        470px;

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

}


.sb-about-circle {

    width:
        380px;

    height:
        380px;

    border-radius:
        50%;

    background:

        radial-gradient(
            circle at 35% 30%,
            #ffe6ef,
            #fdb6b0 50%,
            #f8df9e
        );

    filter:
        blur(.2px);

}


.sb-about-card {

    width:
        220px;

    height:
        280px;

    position:
        absolute;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    background:
        rgba(255,255,255,.5);

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:
        30px;

    backdrop-filter:
        blur(20px);

    box-shadow:
        var(--sb-shadow);

    transform:
        rotate(-8deg);

}


.sb-about-card strong {

    font-family:
        "Playfair Display",
        serif;

    font-size:
        85px;

    color:
        var(--sb-pink);

    line-height:
        1;

}


.sb-about-small {

    font-size:
        11px;

    letter-spacing:
        5px;

    color:
        var(--sb-muted);

}


.sb-about-flower {

    position:
        absolute;

    font-size:
        100px;

    right:
        40px;

    bottom:
        30px;

    transform:
        rotate(12deg);

    filter:
        drop-shadow(
            0 15px 15px
            rgba(0,0,0,.12)
        );

}


.sb-about-text {

    color:
        var(--sb-muted);

    line-height:
        1.9;

    max-width:
        550px;

}


.sb-about-points {

    display:
        flex;

    flex-direction:
        column;

    gap:
        13px;

    margin-top:
        25px;

}


.sb-about-points div {

    display:
        flex;

    align-items:
        center;

    gap:
        10px;

}


.sb-about-points i {

    color:
        var(--sb-pink);

}


/* =========================================================
   CTA
========================================================= */

.sb-cta-section {

    padding:
        100px 0;

}


.sb-cta {

    position:
        relative;

    overflow:
        hidden;

    text-align:
        center;

    padding:
        80px 30px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:
        40px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.65),
            rgba(255,219,231,.5)
        );

    backdrop-filter:
        blur(20px);

    box-shadow:
        var(--sb-shadow);

}


.sb-cta::before {

    content: "";

    position:
        absolute;

    width:
        300px;

    height:
        300px;

    border-radius:
        50%;

    background:
        rgba(255,0,123,.10);

    filter:
        blur(5px);

    left:
        -130px;

    bottom:
        -150px;

}


.sb-cta h2 {

    position:
        relative;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(
            2.5rem,
            5vw,
            4.5rem
        );

    margin:
        10px 0;

}


.sb-cta h2 span {

    color:
        var(--sb-pink);

}


.sb-cta p {

    color:
        var(--sb-muted);

    margin-bottom:
        30px;

}


.sb-cta-decoration {

    position:
        absolute;

    right:
        70px;

    top:
        40px;

    font-size:
        80px;

    color:
        rgba(255,0,123,.10);

}


/* =========================================================
   CONTACT
========================================================= */

.sb-contact-section {

    padding-top:
        70px;

}


.sb-contact-section h2 {

    margin-bottom:
        20px;

}


.sb-contact-section p {

    color:
        var(--sb-muted);

    line-height:
        1.8;

}


.sb-instagram-card {

    margin-top:
        30px;

    display:
        flex;

    align-items:
        center;

    gap:
        14px;

    padding:
        16px;

    color:
        var(--sb-dark);

    background:
        rgba(255,255,255,.55);

    border:
        1px solid
        rgba(255,255,255,.8);

    border-radius:
        20px;

    backdrop-filter:
        blur(15px);

    box-shadow:
        var(--sb-shadow-small);

    transition:
        var(--sb-transition);

}


.sb-instagram-card:hover {

    transform:
        translateY(-3px);

    color:
        var(--sb-pink);

}


.sb-instagram-icon {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        15px;

    color:
        white;

    background:
        linear-gradient(
            135deg,
            #ff007b,
            #fd9a95
        );

    font-size:
        21px;

}


.sb-instagram-card small,
.sb-instagram-card strong {

    display:
        block;

}


.sb-instagram-card small {

    color:
        var(--sb-muted);

}


.sb-contact-card {

    padding:
        35px;

    border:
        1px solid
        rgba(255,255,255,.85);

    border-radius:
        30px;

    background:
        rgba(255,255,255,.52);

    backdrop-filter:
        blur(20px);

    box-shadow:
        var(--sb-shadow);

}


.sb-contact-card label {

    display:
        block;

    font-size:
        13px;

    font-weight:
        600;

    margin-bottom:
        8px;

}


.sb-contact-card .form-control {

    border:
        1px solid
        rgba(61,36,48,.08);

    background:
        rgba(255,255,255,.65);

    border-radius:
        15px;

    padding:
        13px 15px;

}


.sb-contact-card .form-control:focus {

    border-color:
        rgba(255,0,123,.35);

    box-shadow:
        0 0 0 4px
        rgba(255,0,123,.07);

}


/* =========================================================
   FOOTER
========================================================= */

.sb-footer {

    padding:
        70px 0 30px;

    background:
        #fff0f5;

}


.sb-footer-logo {

    width:
        180px;

    margin-bottom:
        15px;

}


.sb-footer p {

    max-width:
        380px;

    color:
        var(--sb-muted);

    line-height:
        1.8;

    font-size:
        14px;

}


.sb-footer h6 {

    font-weight:
        700;

    margin-bottom:
        18px;

}


.sb-footer a {

    display:
        block;

    color:
        var(--sb-muted);

    font-size:
        14px;

    margin-bottom:
        10px;

    transition:
        var(--sb-transition);

}


.sb-footer a:hover {

    color:
        var(--sb-pink);

    transform:
        translateX(3px);

}


.sb-footer hr {

    margin:
        40px 0 25px;

    border-color:
        rgba(61,36,48,.1);

}


.sb-footer-bottom {

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        var(--sb-muted);

    font-size:
        12px;

}


/* =========================================================
   BLOBS
========================================================= */

.sb-blob {

    position:
        absolute;

    border-radius:
        50%;

    filter:
        blur(1px);

    z-index:
        0;

}


.sb-blob-pink {

    width:
        400px;

    height:
        400px;

    background:
        rgba(255,0,123,.08);

    top:
        120px;

    left:
        -220px;

}


.sb-blob-yellow {

    width:
        350px;

    height:
        350px;

    background:
        rgba(250,231,160,.25);

    right:
        -180px;

    top:
        300px;

}


.sb-blob-peach {

    width:
        250px;

    height:
        250px;

    background:
        rgba(253,154,149,.13);

    bottom:
        -120px;

    left:
        40%;

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .sb-navbar {

        border-radius:
            25px;

    }


    .sb-navbar .navbar-collapse {

        padding:
            20px 10px;

    }


    .sb-navbar .btn {

        width:
            100%;

        margin-top:
            10px;

    }


    .sb-hero {

        padding-top:
            140px;

    }


    .sb-hero-title {

        letter-spacing:
            -2px;

    }


    .sb-hero-visual {

        min-height:
            500px;

        margin-top:
            20px;

    }


    .sb-section {

        padding:
            90px 0;

    }


    .sb-section-heading {

        align-items:
            flex-start;

        flex-direction:
            column;

    }

}


@media (max-width: 575px) {

    .sb-logo {

        width:
            120px;

    }


    .sb-hero {

        padding:
            125px 0 70px;

    }


    .sb-hero-title {

        font-size:
            3.1rem;

    }


    .sb-hero-description {

        font-size:
            15px;

    }


    .sb-hero-stats {

        gap:
            13px;

    }


    .sb-stat strong {

        font-size:
            15px;

    }


    .sb-stat span {

        font-size:
            10px;

    }


    .sb-flower-card {

        height:
            430px;

    }


    .sb-flower-display {

        inset:
            30px;

    }


    .flower {

        font-size:
            60px;

    }


    .flower-1 {
        left: 0;
        top: 90px;
    }

    .flower-2 {
        left: 75px;
        top: 15px;
    }

    .flower-3 {
        right: 0;
        top: 80px;
    }

    .flower-4 {
        left: 35px;
        top: 190px;
    }

    .flower-5 {
        right: 40px;
        top: 195px;
    }

    .flower-6 {
        left: 115px;
        top: 135px;
    }


    .sb-floating-card-one {

        left:
            -5px;

        bottom:
            55px;

    }


    .sb-floating-card-two {

        right:
            -5px;

        top:
            70px;

    }


    .sb-about-circle {

        width:
            300px;

        height:
            300px;

    }


    .sb-about-flower {

        right:
            0;

    }


    .sb-contact-card {

        padding:
            23px;

    }


    .sb-footer-bottom {

        flex-direction:
            column;

    }

}