@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


@font-face {
    font-family: 'Myriad Pro';
    font-style: normal;
    font-weight: 400;
    src: local('Myriad Pro Regular'), local('MyriadPro-Regular'),
        url('./fonts/myriad-pro/MyriadPro-Regular.ttf') format('woff');
}

@font-face {
    font-family: 'Myriad Pro';
    font-style: normal;
    font-weight: 600;
    src: local('Myriad Pro Semibold'), local('MyriadPro-Semibold'),
        url('./fonts/myriad-pro/MyriadPro-Semibold.ttf') format('woff');
}

@font-face {
    font-family: 'Myriad Pro';
    font-style: normal;
    font-weight: 700;
    src: local('Myriad Pro Bold'), local('MyriadPro-Bold'),
        url('./fonts/myriad-pro/MyriadPro-Bold.ttf') format('woff');
}

:root {
    --color-primary-navy: #1b252d;
    /* Deep navy slate for heading */
    --color-text-muted: #486581;
    /* Soft slate gray for description */
    --color-bg-light: #ffffff;
    /* Main background */
    --color-divider-bg: #f0f4f8;
    /* Soft gray background for the bottom strip */
    --font-family-headings: 'Roboto', sans-serif;
    --font-family-body: 'Myriad Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    --black: #000;
}

/* Global Reset for demo purpose */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-body);
    background-color: var(--color-bg-light);
    color: var(--color-text-muted);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-headings);
}

.custcontainer {
    max-width: 1058px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/*=========================
        Header
=========================*/

.atrantil-header {
    padding: 20px;
    background: #fff;
    box-shadow: 0 3px 15px rgba(0, 0, 0, .08);
    position: relative;
    z-index: 999;
}

.headerrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 60px;
}

.header-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.header-nav a:hover {
    color: #95c93d;
}

.header-btn {
    text-decoration: none;
    background: #0b9fe3;
    color: #fff;
    padding: 13px 24px;
    /* border-radius: 0; */
    font-weight: 600;
    transition: .3s;
}

.header-btn:hover {
    background: #088ac5;
}

.header-nav a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.header-nav a:hover {
    color: #95c93d;
}

.header-btn {
    text-decoration: none;
    background: #0b9fe3;
    color: #fff;
    padding: 13px 24px;
    /* border-radius: 6px; */
    font-weight: 600;
}

/* Toggle Button */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: .3s;
}



@media (max-width:991px) {

    .menu-toggle {
        display: flex;
        order: 3;
    }

    .header-btn {
        display: none;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, .08);

        flex-direction: column;
        align-items: flex-start;
        gap: 0;

        max-height: 0;
        overflow: hidden;

        transition: .35s ease;
    }

    .header-nav.active {
        max-height: 350px;
        padding: 15px 0;
    }

    .header-nav a {
        width: 100%;
        padding: 15px 8%;
        border-bottom: 1px solid #eee;
    }

}

/*=========================
        Banner
=========================*/



.hero-banner {

    position: relative;
    overflow: hidden;
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f3f8f3 100%);

}

.hero-banner::before {

    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    background: #95c93d12;
    border-radius: 50%;

    top: -250px;
    right: -150px;

}

.hero-banner__row {

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;

}

/*======================
CONTENT
=======================*/

.hero-banner__content {
    flex: 0 0 48%;
    max-width: 580px;
    background: rgb(162 206 71 / 28%);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
}

.hero-banner__logo {

    width: 240px;
    margin-bottom: 30px;

}

.hero-banner__badge {

    display: inline-block;

    padding: 8px 18px;

    border-radius: 50px;

    background: #95c93d20;

    color: #6c9800;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 25px;

}

.hero-banner__content h1 {

    font-size: clamp(2.5rem, 4.5vw, 3.25rem);

    line-height: 1.2;

    color: #333;

    margin-bottom: 20px;

}

.hero-banner__content p {

    font-size: 18px;

    color: #666;

    line-height: 1.9;

    margin-bottom: 35px;

}

/*======================
BUTTONS
=======================*/

.hero-banner__buttons {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

.hero-btn {

    padding: 16px 28px;


    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

    box-shadow: 0 12px 25px rgba(0, 0, 0, .10);

}

.hero-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 20px 35px rgba(0, 0, 0, .15);

}

.hero-btn--green {

    background: #95c93d;

}

.hero-btn--blue {

    background: #1d9ce5;

}

/*======================
IMAGE
=======================*/

.hero-banner__image {

    flex: 1;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 550px;

}

.hero-banner__circle {

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    background: linear-gradient(135deg, #95c93d, #d7efb0);

}

.hero-banner__image img {
    position: relative;
    width: 300px;
    z-index: 5;
    object-fit: contain;
    max-height: 440px;
    filter: drop-shadow(0 35px 45px rgba(0, 0, 0, .20));
}

/*======================
FLOATING DOTS
=======================*/

.hero-banner__dot {

    position: absolute;

    border-radius: 50%;

    background: #95c93d20;

}

.hero-banner__dot1 {

    width: 80px;
    height: 80px;

    top: 60px;
    right: 40px;

}

.hero-banner__dot2 {

    width: 45px;
    height: 45px;

    bottom: 80px;
    left: 60px;

}

/*======================
RESPONSIVE
=======================*/

@media(max-width:991px) {

    .hero-banner {

        padding: 70px 20px;

    }

    .hero-banner__row {

        flex-direction: column;

        text-align: center;

    }

    .hero-banner__content {

        max-width: 100%;

        padding: 40px 30px;

    }

    .hero-banner__buttons {

        justify-content: center;

    }

    .hero-banner__image {

        min-height: 400px;

    }

    .hero-banner__circle {

        width: 300px;
        height: 300px;

    }

    .hero-banner__image img {

        width: 260px;

    }

}

@media(max-width:576px) {

    .hero-banner__content h1 {

        font-size: 40px;

    }

    .hero-banner__content p {

        font-size: 16px;

    }

    .hero-btn {

        width: 100%;
        text-align: center;

    }

    .hero-banner__logo {

        width: 180px;

    }

}

/* ------------- */
.video-section {
    padding: 0px 0px 80px 0px;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 38px;
    color: #333;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 17px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.video-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe,
.video-wrapper div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



@media(max-width:991px) {

    .video-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 30px;
    }

}


/*==========================
    Gut Health Section
===========================*/



.atrantil-cmp {
    position: relative;
    background: rgba(159, 204, 67, 1);
    padding: 80px 20px;
    margin: 20px 20px;
    border-radius: 20px;
}

.incimg img,
.decimg img {
    max-width: 60px;
    object-fit: contain;
}

.increasepart,
.decreasepart {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 30%;
}

.cmpimg {
    width: 40%;
}

.centerimg img {
    width: 100%;
    object-fit: contain;
    max-height: 400px;
}

.cmptitle {
    text-align: center;
    margin-bottom: 30px;
    font-size: 40px;
}

.cmplogo {
    max-width: 200px;
    margin-bottom: 40px;
    object-fit: contain;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin: 0 auto 20px;
    display: flex;
}

.points li {
    list-style: none;
}

.cpmrow {
    display: flex;
    gap: 20px;
    align-items: center;
}

.atrantil-cmp.second {
    background: rgba(44, 45, 110, 1);
}

.atrantil-cmp.second .points li {
    color: rgb(159, 204, 67);
}

.atrantil-cmp .cmptitle {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem)
}

.atrantil-cmp.second .cmptitle {
    color: rgb(159, 204, 67);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem)
}

.atrantil-cmp.second .smlxt {
    color: rgb(159, 204, 67);
}

/* -------- */

.formbox {
    position: relative;
    padding: 50px 20px 0;
    /* background: #eaf4fb; */
}

.formbox .css-29pv05.css-29pv05 {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    margin-top: 50px;
}

.formbox .css-4cpoln.css-4cpoln {
    border-radius: 10px;
}

.formbox .css-4cpoln.css-4cpoln textarea {
    height: 34px;
}

.from-left-content .formpara a {
    color: #000;
}

.formbox .css-4cpoln.css-4cpoln input:not([type="submit"]),
.formbox .css-4cpoln.css-4cpoln textarea,
.formbox .css-4cpoln.css-4cpoln select {
    border-radius: 8px !important;
}

.formbox .css-1ub0j67.css-1ub0j67:last-child {
    grid-column: span 3;
    align-items: center;
}

.formupper h2 {
    font-family: var(--font-family-headings);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--color-primary-navy);
    text-align: left;
    margin-bottom: 20px;
}

.formpara {
    font-size: 21px;
    color: #000000;
    font-weight: 400;
    max-width: 1058px;
    margin: 0 auto 15px;
    text-align: left;
}

input.css-1cal32j {
    padding: 12px 30px !important;
    font-size: 16px !important;
    border-radius: 0 !important;
    background-color: #1b252d !important; 
    transition: all .3s ease;
}

input.css-1cal32j:hover {
    background-color: #2c3e50 !important;
}

/* .formbox:before {
    position: absolute;
    content: "";
    height: 200px;
    width: 200px;
    background-image: url(./img/leaf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    transform: scaleX(-1);
    z-index: 1;
}

.double-blind-section:before {
    position: absolute;
    content: "";
    height: 200px;
    width: 200px;
    background-image: url(./img/leaf.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 1;
} */

/* @media (max-width: 1599px) {
    .formbox:before,
    .double-blind-section:before {
        height: 100px;
        width: 100px;
    }
}

@media (max-width: 1199px) {
    .formbox:before,
    .double-blind-section:before {
        display: none;
    }
} */

@media (max-width: 767px) {
    .bannerrow {
        flex-wrap: wrap;
    }

    .banner-content {
        flex: unset;
        width: 100%;
    }

    .banner-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cpmrow {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .increasepart,
    .decreasepart {
        width: 100%;
    }

    .cmpimg {
        width: 100%;
    }

    .atrantil-cmp.second .smlxt {
        margin-bottom: 40px;
    }

    .formbox .css-29pv05.css-29pv05 {
        display: flex;
        flex-direction: column;
        gap: 0;
    }


    .hero-banner__image img {
        width: 200px;
    }
}