@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --bg: #FFFFFFF2;
    --text: #111827;
    --muted: #6b7280;
    --primary: #F97316;
    --primary-hover: #EA580C;
    --border-color: #e5e7eb;
}

/* =========================
   HERO SECTION START
   Styles for the hero template (easy to locate and edit)
   ========================= */

.hero-template {
    padding: 4rem 0;
    background: linear-gradient(180deg, rgba(249, 115, 22, 0.08), transparent 60%);
}

.hero-inner {
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: var(--text);
    margin: 0;
}

/* HERO SECTION END */


*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    transition: margin-left 0.3s ease-in-out;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-header {
    background: var(--bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: rgba(46, 46, 46, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 20px;
}



.logo img {
    height: 40px;
    margin-right: 0.75rem;
}

.btn {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    padding: 0.65rem 1.5rem;
    border-radius: 9999px;
    transition: background-color 0.2s ease;
}

.btn-primary {
    background: rgba(249, 115, 22, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-110%);
    height: 100vh;
    width: 280px;
    background: var(--bg);
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem 2rem;
    transition: transform 350ms cubic-bezier(.2, .9, .2, 1);
    z-index: 10000;
}

body.nav-open .main-nav {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 7, 7, 0.521);
    opacity: 0;
    pointer-events: none;
    transition: opacity 250ms ease;
    z-index: 900;
}

.overlay.visible {
    opacity: 1;
    pointer-events: auto;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.nav-links li {
    margin-bottom: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: rgba(75, 85, 99, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.mobile-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.mobile-logo .logo {
    color: rgba(46, 46, 46, 1);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.mobile-logo .logo img {
    height: 36px;
    margin-right: 0.5rem;
}

.sidebar-cta {
    margin-top: auto;
    display: inline-block;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

body.nav-open .hamburger-menu .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

body.nav-open .hamburger-menu .bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger-menu .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (min-width: 768px) {
    .hamburger-menu {
        display: none;
    }

    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        position: relative;
    }

    .main-nav {
        position: static;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        z-index: 100000 !important;
        margin-left: 100px;
    }

    .main-nav {
        transform: none !important;
        left: auto !important;
    }

    .overlay {
        display: none;
    }

    .mobile-logo,
    .sidebar-cta,
    .main-nav .btn-primary,
    .main-nav .logo {
        display: none;
    }

    .header-container>.btn-primary {
        display: inline-block;
        width: auto;
        padding: 0.65rem 1.5rem;
        box-sizing: border-box;
    }

    .nav-links {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 2.5rem;
    }

    .nav-links li {
        margin: 0;
    }

    .btn-primary {
        justify-self: end;
    }
}

@media (max-width: 767px) {
    .main-nav {
        padding: 10px 1rem 1rem;
    }

    .header-container>.btn-primary {
        display: none;
    }

    .main-nav .btn-primary,
    .sidebar-cta {
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
    }

    .sidebar-cta {
        margin-top: 1rem;
    }

    .main-nav {

        z-index: 100000 !important;

    }
}

@media (max-width: 767px) {


    .floating-badge {
        display: inline-flex !important;
        z-index: 9999 !important;
    }

    .badge-track {
        top: 46% !important;
        left: 42% !important;
        transform: translateX(-120%) !important;
        z-index: 9999 !important;
        display: inline-flex !important;
    }

    .badge-health {
        top: 18% !important;
        left: auto !important;
        right: 6% !important;
        transform: translateX(0) !important;
        z-index: 9999 !important;
        display: inline-flex !important;
        max-width: 150px !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }

    .badge-monitor {
        top: 66% !important;
        left: 50% !important;
        transform: translateX(0%) !important;
        z-index: 9999 !important;
        display: inline-flex !important;
    }

    .floating-badge {
        padding: 0.5rem 0.9rem !important;
        border-radius: 10px !important;
        font-size: 0.9rem !important;
        gap: 0.4rem !important;
    }

    .floating-badge svg {
        width: 1.1rem !important;
        height: 1.1rem !important;
    }

    .hero-phone-image {
        z-index: 1 !important;
        transform: translateY(-1px) !important;
        -webkit-transform: translateY(-1px) !important;
        -moz-transform: translateY(-1px) !important;
        -ms-transform: translateY(-1px) !important;
        -o-transform: translateY(-1px) !important;
    }

}

.hero-section {
    position: relative;
    width: 100%;
    padding: 0 !important;
    overflow: visible;
    text-align: center;
    background-color: #FEE4D2;

}

.hero-text-content {
    max-width: 56rem;
    margin: 0 auto;
}

.hero-headline-1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #111827;
    line-height: 1.1;
    font-size: 2.25rem;
    padding-top: 5.3rem;

}

.hero-headline-2 {
    margin-top: -1rem;

}

.hero-headline-2 {
    margin-top: 0.25rem;
}

.hero-headline-2 .text-green {
    color: #16a34a;
}

.hero-headline-2 .text-orange {
    color: #f97316;
}

.hero-description {
    margin-top: 1.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    margin-top: -2rem;
}

.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;

}

.store-button img {
    height: 3rem;
    width: auto;

}

.store-button:hover img {
    transform: scale(1.05);
}

.hero-image-content {
    margin-top: 4rem;
    position: relative;
    display: flex;
    justify-content: center;
    padding-bottom: 0 !important;
}

.hero-phone-image {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    transform: translateY(-30px);
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(-30px);
    }
}

.floating-badge {
    display: none;
    position: absolute;
    z-index: 15;
    background-color: white;
    border-radius: 12px;
    padding: 0.75rem 1.25rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    font-weight: 600;
    color: #374151;
    align-items: center;
    gap: 0.5rem;
}

.floating-badge svg {
    width: 1.5rem;
    height: 1.5rem;
}

.badge-track svg {
    color: #fb923c;
}

.badge-health svg {
    color: #ef4444;
    fill: #ef4444;
}


.badge-monitor svg {
    color: #22c55e;
}

@media (min-width: 640px) {
    .hero-section {
        padding: 2rem 1.5rem;

    }

    .hero-headline-1,
    .hero-headline-2 {
        font-size: 3rem;

    }

    .hero-description {
        font-size: 1.25rem;
        margin-top: -3rem;
    }

    .store-button img {
        height: 3.5rem;
    }

    .hero-phone-image {
        max-width: 450px;
    }
}

@media (min-width: 768px) {
    .hero-section {
        padding: 2.5rem 2rem;
    }

    .hero-headline-1,
    .hero-headline-2 {
        font-size: 3.75rem;
    }

    .hero-headline-2 {
        margin-top: -3rem;
    }


    .hero-phone-image {
        max-width: 600px;
    }

    .floating-badge {
        display: inline-flex;
    }

    .badge-track {
        top: 30%;
        left: 50%;
        transform: translateX(-120%);
        z-index: 5;
    }

    .badge-health {
        top: 45%;
        left: 50%;
        transform: translateX(40%);
        z-index: 5;
    }

    .badge-monitor {
        top: 70%;
        left: 50%;
        transform: translateX(0%);
        z-index: 15;

    }
}

@media (min-width: 768px) and (max-width: 1023px) {

    .badge-track {
        top: 34%;
        left: 38%;
        transform: translateX(-180%);
        z-index: 5;
    }

    .badge-health {
        top: 25%;
        left: 58%;
        transform: translateX(90%);
        z-index: 5;
    }
}

@media (min-width: 1024px) {
    .hero-phone-image {
        max-width: 400px;
        margin-bottom: -1.8rem;
    }

    .badge-track {
        transform: translateX(-240%);
        top: 35%;
        left: 50%;
    }

    .badge-health {
        transform: translateX(140%);
        top: 21%;
        left: 50%;
    }

    .badge-monitor {
        top: 70%;
        left: 50%;
        transform: translateX(10%);

    }
}

@media (max-width: 767px) {
    .hero-headline-2 {
        font-size: 2.1rem;
        margin-top: -1rem;

    }

    .hero-description {
        margin-top: 1.5rem;
        margin-top: -1.2rem;
    }
}


@media (min-width: 1280px) {


    .badge-track {
        transform: translateX(-280%);

    }

    .badge-health {
        transform: translateX(180%);

    }


    .badge-track {
        top: 36%;
        left: 50%;
    }

    .badge-health {
        top: 19%;
        left: 50%;
    }

    .badge-monitor {
        top: 70%;
        left: 50%;
        transform: translateX(20%);

    }
}

.hero-section {
    padding-bottom: 0 !important;
}

@media (max-width: 767px) {}

/* Hero section ends from here  */


/* why us secton start from here  */
.why-section {
    background-color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
}

.why-container {
    max-width: 1280px;
    margin: 0 auto;
}

.why-headline {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.why-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #4B5563;
    margin-top: -1.5rem;
    max-width: 55rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
    text-align: center;
}

@media (min-width: 640px) {
    .why-section {
        padding: 5rem 1.5rem;

    }

    .why-headline {
        font-size: 2.5rem;

    }

    .why-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .why-section {
        padding: 3rem 2rem;
    }

    .why-headline {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .why-headline {
        font-size: 1.7rem;
    }

    .why-description {
        font-size: 1rem;
        margin-top: -.5rem;
        text-align: justify;
    }
}

/* why us secton ends from here  */
/* new section belwo why css start here  */
.features-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.features-image-wrapper {
    display: flex;
    justify-content: center;
}

.features-image {
    width: 100%;
    max-width: 375px;
    height: 720px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: left;
}

.card-green {
    background-color: #FFFFFF;

}

.card-orange {
    background-color: #FFF7ED;
}

.card-yellow {
    background-color: #FEFCE8;
}

.card-blue {
    background-color: #F3F8FF;
}

.feature-icon {
    width: 4rem;
    height: 4rem;

}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2E2E2E;
    margin-bottom: 0.5rem;
    margin-top: -0.1rem;
}

.feature-description {
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-image {
        max-width: 400px;
    }
}

@media (min-width: 768px) {
    .features-section {
        padding: 2rem 2rem;

    }

    .features-image {
        max-width: 420px;
    }
}

@media (min-width: 1024px) {
    .features-container {
        grid-template-columns: 1fr 1.5fr;

    }


    .features-image {
        max-width: 100%;
        width: 370px;
        margin: 0;
        padding-bottom: 20px;
        padding-top: 20px;
    }

    .features-container {

        background: linear-gradient(to right, #FEFCE8 70%, #FFFFFF 30%);
    }

}

@media (max-width: 992px) {
    .card-green {
        background-color: #FFFFFF;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
            rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

    }

    .card-orange {
        background-color: #FFF7ED;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
            rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .card-yellow {
        background-color: #FEFCE8;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
            rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }

    .card-blue {
        background-color: #F3F8FF;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
            rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }



}



/* new section belwo why css ends  here  */
/* action section css start from here  */
.action-section {
    background-color: #FFF;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 2rem;
    margin: 0 1rem;
}

.action-container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #FEE6D6;
    border-radius: 32px;
    -webkit-border-radius: 32px;
    -moz-border-radius: 32px;
    -ms-border-radius: 32px;
    -o-border-radius: 32px;
}

.action-text-content {
    margin-bottom: 3rem;
}

.action-headline {
    font-size: 4rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    letter-spacing: -0.025em;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    padding: 56px 0 0 66px;

}

.action-subheadline {
    font-size: 32px;
    color: #4B5563;
    max-width: 66rem;
    line-height: 1.75;
    padding: 0px 0 0 66px;
    text-align: left;
    margin-top: -1.9rem;

}

.action-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.action-card {
    width: 100%;
}

.action-image {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    margin-bottom: -6px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 640px) {
    .action-headline {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .action-section {
        padding: 0;
        margin: 0;
    }
}

@media (min-width: 768px) {
    /* .action-section {
        padding: 5rem 2rem;
        margin: 0 1.5rem;
    } */

    .action-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
        gap: 1.875rem;
        padding-right: 2rem;
        padding-left: 2rem;
    }

    .action-subheadline {
        font-size: 1.5rem;
        margin-top: -3rem;
    }
}

@media (min-width: 1024px) {
    /* .action-section {
        padding: 5rem 3rem;
        margin: 0 2rem;
    } */

    /* .action-container {
        width: calc(100% + 60px);
        margin-left: -30px;
        margin-right: -30px;
    } */

    .action-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: none;
        margin-right: 30px;
        gap: 3rem;
        padding-right: 4rem;
        padding-left: 4rem;


    }

    .action-headline {
        font-size: 4rem;

    }
}

@media (max-width: 767px) {
    .action-image {

        padding-left: .5rem;
        padding-right: .5rem;
    }

    .action-headline {
        font-size: 2rem;
        padding: 56px 0 0 16px;
    }

    .action-subheadline {
        font-size: 1rem;
        margin-top: -1.3rem;
        padding: 0px 0 0 16px;

    }


}

/* action section css ends from here  */
/* bets rocket section css start here  */
.beta-signup-section {
    background: linear-gradient(to right, #F97316, #824E00);
    padding: 4rem 1rem;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
}

.beta-signup-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.beta-signup-card {
    background-color: #FFFFFF;
    border-radius: 1.5rem;
    padding: .5rem 1.5rem;
    box-shadow: 0px 25px 50px 0px #00000040;
    max-width: 56rem;
    width: 100%;
    text-align: center;
}

.beta-signup-headline {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
}

.beta-signup-description {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 36rem;
    margin-left: 8rem;
    text-align: center;
}

.beta-signup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.beta-signup-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #D1D5DB;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #111827;
    background-color: #F9FAFB;
    outline: none;
}

.beta-signup-input::placeholder {
    color: #6B7280;
    white-space: pre-line;
}

.beta-signup-input:focus {
    border-color: #F97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

.beta-signup-button {
    background-color: #F97316;
    color: #FFFFFF;
    padding: 1rem 1rem;
    border: none;
    border-radius: 1.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.3s ease;
    outline: none;
    -webkit-border-radius: 1.75rem;
    -moz-border-radius: 1.75rem;
    -ms-border-radius: 1.75rem;
    -o-border-radius: 1.75rem;
}

.beta-signup-button:hover {
    background-color: #EA580C;
}

.beta-signup-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

.beta-signup-privacy {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.5;
}

@media (min-width: 640px) {
    /* .beta-signup-card {
        padding: 3rem 2rem;
    } */

    .beta-signup-headline {
        font-size: 2.25rem;
    }

    .beta-signup-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 768px) {
    .beta-signup-section {
        padding: 6rem 2rem;
    }

    /* .beta-signup-card {
         padding: 3.5rem 2.5rem;
    } */

    .beta-signup-headline {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .beta-signup-section {
        padding: 8rem 2rem;
    }

    .beta-signup-description {
        font-size: 1rem;

    }



}

.beta-signup-form .beta-signup-input,
.beta-signup-form textarea {
    max-width: 640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.beta-signup-input {
    padding: 1rem 1.25rem;
    line-height: 1.4;
    white-space: pre-line;
    resize: vertical;
    font-family: 'Inter', sans-serif;
    background-color: #FFF;
}

.beta-signup-input::placeholder {
    white-space: pre-line;
    color: #6B7280;
}

.beta-signup-form .beta-signup-button {
    max-width: 400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1400px) {

    .beta-signup-form .beta-signup-input,
    .beta-signup-form textarea {
        max-width: 720px;
    }

    .beta-signup-form .beta-signup-button {
        max-width: 360px;
    }
}

@media (max-width: 767px) {

    .beta-signup-headline {
        font-size: 1.5rem;

    }

    .beta-signup-description {

        margin-left: 0rem;

    }

    .beta-signup-section {
        margin-top: 2rem;
    }
}

/* bets rocket section css ends here  */
/* diet palnenr sections start from here  */
.diet-planner-section {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    padding: 4rem 1rem;
    overflow: hidden;
}

.diet-planner-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.diet-planner-image-col {
    width: 100%;
    display: flex;
    justify-content: center;
}

.diet-planner-image {
    max-width: 100%;
    width: 320px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.08));
}

.diet-planner-text-col {
    width: 100%;
    text-align: center;
}

.diet-planner-headline-1 {
    font-size: 3.35rem;
    font-weight: 800;
    color: #F97316;
    line-height: 1.1;
}

.diet-planner-headline-2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4B5563;
    line-height: 1.1;
    margin-top: -1.8rem;
}

.diet-planner-description {
    font-size: 1.25rem;
    color: #4B5563;
    line-height: 1.5;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: -.6rem;
}

.text-orange-bold {
    color: #F97316;
    font-weight: 600;
}



.diet-planner-button-image {
    height: 40px;
    width: auto;
    max-width: 100%;
}

@media (min-width: 768px) {
    .diet-planner-image {
        width: 400px;
    }

    .diet-planner-headline-1 {
        font-size: 3rem;
    }

    .diet-planner-headline-2 {
        font-size: 1.5rem;
        /* width: 26rem; */
    }

    .diet-planner-description {
        font-size: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .diet-planner-section {
        padding: 6rem 2rem;
    }

    .diet-planner-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .diet-planner-image-col {
        flex: 1;
        justify-content: flex-end;
        transform: translateX(5%);
        -webkit-transform: translateX(5%);
        -moz-transform: translateX(5%);
        -ms-transform: translateX(5%);
        -o-transform: translateX(5%);

    }

    .diet-planner-image {
        width: 500px;
        max-width: none;
    }

    .diet-planner-text-col {
        flex: 1;
        text-align: left;
    }

    .diet-planner-headline-1 {
        font-size: 3.35rem;
    }

    .diet-planner-headline-2 {
        font-size: 1.5rem;
    }

    .diet-planner-description {
        margin-left: 0;
        margin-right: 0;
        max-width: 36rem;
        font-size: 1.25rem;
    }

    .diet-planner-buttons {
        margin-top: 1rem;
    }

    .diet-planner-button-image {
        height: 54px;
        cursor: pointer;
    }
}

@media (min-width: 1280px) {
    .diet-planner-image-col {
        transform: translateX(-10%);
    }

    .diet-planner-image {
        width: 350px;
        align-items: center;
    }
}

@media (max-width: 767px) {

    .diet-planner-headline-1 {
        font-size: 2.5rem;
    }

    .diet-planner-headline-2 {
        font-size: .9rem;

    }

    .diet-planner-description {

        font-size: .9rem;
    }
}

/* diet palnenr sections ends  here  */
/* footer section start from here  */
.site-footer {
    background-color: #FEE6D6;
    font-family: 'Inter', sans-serif;
    text-align: center;
    border-radius: 2rem;
    padding: 4rem 1.5rem 2.5rem 1.5rem;
    margin: 2rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    width: 56px;
    height: 56px;
    border-radius: 0.75rem;
    margin: 0 auto -1rem auto;
    background-color: #F97316;
    padding: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.footer-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: #F97316;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
}

.footer-description {
    font-size: 1rem;
    color: #000000;
    max-width: 36rem;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.footer-social-links a {
    color: #374151;
    transition: color 0.3s ease;
}

.footer-social-links a:hover {
    color: #F97316;
}

.footer-social-links svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-bottom {
    border-top: 1px solid #FBEFE5;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: -3.3rem;
}

.footer-links a:hover {
    color: #000000;
}

.footer-copyright {
    font-size: 1rem;
    color: #676D79;
    margin-top: -3.3rem;
}

@media (min-width: 768px) {
    .site-footer {
        padding: 5rem 2rem 3rem 2rem;
        margin: 2rem 1.5rem;
    }

    .footer-headline {
        font-size: 2.5rem;
    }

    .footer-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .site-footer {
        margin: 2rem;
    }

    .footer-headline {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .site-footer {
        margin: 0;
    }

    .footer-headline {
        font-size: 1.5rem;

    }
}

/* footer section ends from here  */
#hero-section,
#features-section,
#why-section {
    scroll-margin-top: 5rem;
}