* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    font-family: var(--body-font);
    font-optical-sizing: auto;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    background: var(--bg2);
}

body a {
    color: var(--theme-primary1);
}

/* ul  */
ul {
    font-family: var(--body-font);
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

ul li {
    list-style: none;
    font-size: clamp(1.5rem, 2vw, 2rem) !important;
}

/* Font sizes for headings and paragraph */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

p {
    font-size: clamp(1.6rem, 2vw, 2rem) !important;
    margin-bottom: 0 !important;
}

/* color variable */
:root {

    /* Primary Brand */
    --theme-color: #ff6600;
    --theme-color-dark: #cc5200;
    --theme-color-light: #ff944d;
    --theme-color-soft: #fff2e6;

    /* Secondary (supporting warm tones) */
    --theme-secondary: #ff8533;
    --theme-accent: #ffb380;

    /* Text Colors */
    --title-color: #2b2b2b;
    --body-color: #6c757d;
    --black-color: #000000;
    --white-color: #ffffff;

    /* Neutral / Background */
    --smoke-color: #fff7f2;
    --smoke-color2: #fffaf5;
    --grey-dark-color: #e6e6e6;
    --light-color: #bdbdbd;
    --bg-light: #fff5eb;

    /* Status */
    --success-color: #28a745;
    --error-color: #dc3545;
    --yellow-color: #ffb347;

    /*  Borders */
    --th-border-color: #ffd6bf;

    /* Typography */
    --body-font: "Google Sans Flex", sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
    --body-font-size: 1.6rem;

    /*  Gradient (Orange-based) */
    --bg1: linear-gradient(180deg, #fff2e6 0%, #ffffff 100%);
    --bg1-border: 1px solid #ffd6bf;

    --bg2: linear-gradient(180deg, #fff5eb, #ffffff);
    --bg2-border: 1px solid #ffe0cc;

    --bg3: linear-gradient(180deg, #ffefe5 0%, #ffffff 100%);
    --bg3-border: 1px solid #ffc299;

    --bg4: linear-gradient(180deg, #ffffff, #fff2e6);
    --bg4-border: 1px solid #ffd6bf;

    --bg5: linear-gradient(180deg, #ffffff, #ffe6d5 100%);
    --bg5-border: 1px solid #ffccaa;

    --bg6: linear-gradient(180deg, #ffffff, #ffedd9 100%);
}

.heading {
    width: 100%;
    max-width: 950px;
    margin: 0 auto 3rem auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

h3.title {
    font-size: clamp(2.8rem, 5vw, 4rem) !important;
    font-weight: 500;
    line-height: 1.25;
}

h3.title,
p.subtitle {
    display: block;
    color: var(--black-color);
}

:is(h3.title, p.subtitle) span {
    color: var(--theme-color);
}

.theme-color {
    color: var(--theme-color);
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.gradient-1 {
    background-image: linear-gradient(90deg, #ff6600, #ff944d);
}

.gradient-2 {
    background-image: linear-gradient(90deg, #3341ff, #3341ff75);
}

.gradient-3 {
    background-image: linear-gradient(90deg, #33e0ff, #33e0ff79);
}

.gradient-4 {
    background-image: linear-gradient(90deg, #ff33c2, #ff33c258);
}

.gradient-5 {
    background-image: linear-gradient(90deg, #ff3333, #ff335f58);
}


.background-white {
    background: var(--white-color);
}

.background-theme {
    background: var(--theme-color);
}

.background-gradient-color {
    background: var(--bg3);
}

/* section  */
section {
    width: 100%;
    height: auto;
    padding: 5rem 0;
    margin: 0 auto;
}

section:empty {
    padding: 0 !important;
    margin: 0 !important;
}


/* img default  */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* swiper  */
.swiper-button-next,
.swiper-button-prev {
    color: #000;
}

.swiper-pagination-bullet {
    background: #000;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.5s ease;
    position: relative;
}

.swiper-pagination-bullet-active {
    width: 30px !important;
    background: #000;
    opacity: 1;
    border-radius: 10px !important;
}

.swiper-pagination-bullet-active {
    background: var(--theme-color) !important;
}

/* animate class */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* header section */
.header {
    display: block;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    animation: fadeInBackground 0.2s ease-in-out forwards;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid var(--th-border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.header-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 10px;
}

.v-center {
    align-items: center;
}

/* logo menu */
.header .item-right {
    display: flex;
    justify-content: flex-end;
}

/* cta menu  */
.small,
small {
    font-size: 1rem !important;
}

/* cta buttons */
.cta-button {
    width: auto;
    height: auto;
}

.cta-primary {
    padding: 1rem 1.3rem;
    color: var(--white-color);
    transition: all 0.5s ease-in-out;
    text-align: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    border-radius: 2.5rem;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.dark-btn {
    background-color: var(--theme-color);
}

.light-btn {
    background: var(--bg3);
    border: var(--bg3-border);
    color: var(--theme-color);
}

.cta-button .cta-primary:hover {
    opacity: 0.8;
}

/* icon base */
.cta-primary i {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    overflow: hidden;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
}

.cta-primary i::before,
.cta-primary i::after {
    content: "\f061";
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
}

.cta-primary i::after {
    transform: translateX(-20px);
    opacity: 0;
}

.cta-primary:hover i::before {
    transform: translateX(20px);
    opacity: 0;
}

.cta-primary:hover i::after {
    transform: translateX(0);
    opacity: 1;
}

.cta-flexbutton {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-flexbutton .cta-button {
    flex: 1;
    flex-basis: 150px;
}

/* --------------------------------------------------------------- */

/* home-slider  */
.hero-section {
    background: linear-gradient(180deg,
            #ffe8d6 0%,
            #fff5ee00 40%,
            #ffffff 100%), url('https://framerusercontent.com/images/jBUMVVFjKCBRw4l4EEvLSAq3ik4.png?width=2880&height=2190') no-repeat center center/cover;
    padding: 0rem 0;
    height: 100dvh;
}

.hero-heading {
    max-width: 1100px;
}

h1.hero-title {
    font-size: clamp(3rem, 6vw, 13rem) !important;
    font-weight: 700;
    line-height: 1.25;
    text-transform: capitalize;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg3);
    border: var(--bg3-border);
    color: var(--theme-color);
    border-radius: 50px;
    padding: 8px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    ;
    width: 100%;
    padding-left: 5rem;
}

.camera-icon,
.search-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.camera-icon {
    left: 1rem;
    font-size: 1.5rem;
    color: var(--light-color);
    background: #f3f3f3;
    width: 4rem;
    height: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.search-btn {
    right: 1rem;
}

.users {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg3);
    border: var(--bg3-border);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-left: -12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user:first-child {
    margin-left: 0;
}

.user img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* video-hero-content */
.video-hero-content video {
    height: 900px;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

/* step-card  */
.step-card {
    background: var(--bg3);
    border: var(--bg3-border);
    border-radius: 1rem;
    padding: 2rem;
}

.step-card i {
    color: var(--theme-color);
    font-size: clamp(2.5rem, 5vw, 3rem);
}

/* slider animation */
.floating-wrapper {
    position: relative;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.floating-wrapper .gallerytitle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.float-img {
    position: absolute;
    bottom: -150px;
    border-radius: 50%;
    object-fit: cover;
    animation: floatUp linear infinite;
    opacity: 0;
    z-index: 10;
}

.float-img:hover {
    animation-play-state: paused;
}

h5.gradient-heading {
    font-size: clamp(2.5rem, 8vw, 12rem) !important;
    font-weight: 800;
    line-height: 1.25;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    background-image: linear-gradient(90deg, #1e759e, #b45134, #e27340, #e79f69);
}

.img-1 {
    width: 120px;
    height: 120px;
    left: 10%;
    animation-duration: 8s;
    animation-delay: 0s;
}

.img-2 {
    width: 180px;
    height: 180px;
    left: 40%;
    animation-duration: 12s;
    animation-delay: 2s;
}

.img-3 {
    width: 100px;
    height: 100px;
    left: 70%;
    animation-duration: 10s;
    animation-delay: 4s;
}

.img-4 {
    width: 220px;
    height: 220px;
    left: 25%;
    animation-duration: 14s;
    animation-delay: 1s;
}

.img-5 {
    width: 140px;
    height: 140px;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.img-6 {
    width: 200px;
    height: 200px;
    left: 60%;
    animation-duration: 16s;
    animation-delay: 5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateY(-60vh) translateX(30px);
    }

    100% {
        transform: translateY(-120vh) translateX(-20px);
        opacity: 1;
    }
}


/* Thumbnail */
.yt-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.yt-thumb img {
    width: 100%;

}

.reviewsection:hover .yt-thumb:not(:hover) {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    opacity: .75;
}

.reviewCard {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.62), rgb(0, 0, 0));
}

.badge {
    background: linear-gradient(90deg, #ff6600, #ff944d);
    color: var(--black-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 100;
    font-size: 1rem;
}

.play-btn {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    z-index: 10;
    background: var(--bg3);
    border: var(--bg3-border);
    color: var(--theme-color);
}

/* Popup */
.yt-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.yt-popup.active {
    display: flex;
}

.yt-popup-inner {
    position: relative;
    width: 90%;
    max-width: 800px;
    background: #000;
    border-radius: 16px;
}

.yt-popup-inner iframe {
    width: 100%;
    height: 450px;
    border-radius: 16px;
}

.yt-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}


/* textreview */

.testimonial-wrap {
    padding: 100px 0;
    background: var(--bg-light);
    overflow: hidden;
}

.testiSlider {
    padding: 80px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.test-card {
    background: var(--bg3);
    border: var(--bg3-border);
    padding: 50px;
    border-radius: 30px;
    max-width: 600px;
    transition: .5s;
}

.avatar-initials {
    width: 70px;
    height: 70px;
    background: var(--bg3);
    border: var(--bg3-border);
    color: var(--theme-color);
    font-weight: 600;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* footer  */

footer {
    padding: 5rem 0;
    background: var(--theme-color-dark);
    width: 100%;
}

.main-footer-container {
    width: 100%;
    height: auto;
}

.footer-bottom {
    width: 100%;
    height: auto;
    padding: 1.5rem 0;
}

h5.brand-heading {
    font-size:clamp(4rem, 6vw, 7rem);
    font-weight: bold;
    color: var(--white-color);
}


.copyright {
    width: 100%;
    font-size: 2rem;
    color: var(--white-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}


/* form edit */
.formbox {
    padding: 1rem;
}

h3.form-heading {
    font-size: 2.3rem !important;
    font-weight: bold;
}

.formcontainer,
.formcontainer .input-box {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    color: var(--black-color);
    font-size: 1.6rem;
    justify-content: start;

}

.formcontainer .form-control {
    border-color: transparent;
    outline: none;
    position: relative;
}

.formcontainer .form-control,
.formcontainer .form-select {
    background-color: var(--smoke-color2);
    color: var(--body-color);
    font-size: 1.4rem;
    border-width: 2px;
    border-color: var(--light-color);
    outline: none;
    border-radius: 1rem;
    padding: 1.3rem !important;
}

.formcontainer .form-select option {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.367);
    color: white;
}

.formcontainer .form-control:focus,
.formcontainer .form-select:focus {
    box-shadow: none;
    color: var(--text-color-light);
    border-color: var(--theme-primary1);
}

.submitbtn {
    border: none;
    font-size: 1.8rem;
    font-weight: bolder;
}

/* Fix for iOS input styling */
.formcontainer :is(input, select, textarea) {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

/* Modal */

.modal {
    z-index: 999999;
}

.ai-modal {
    background: transparent;
}

.ai-modal .modal-content {
    border: 0;
    border-radius: 32px;
    overflow: hidden;
    background: #0e0e12;
    color: var(--white-color);
    position: relative;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.35);
}

/* Glow */
.ai-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #ff6600;
    top: -120px;
    left: -120px;
    opacity: .25;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #3341ff;
    bottom: -120px;
    right: -120px;
    opacity: .25;
}

/* Close */
.custom-close {
    position: absolute;
    right: 25px;
    top: 25px;
    z-index: 10;
    filter: invert(1);
}

/* Form */
.formbox {
    padding: 50px;
    position: relative;
    z-index: 2;
}

.ai-modal .form-control,
.ai-modal .form-select {
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .04);
    color: var(--white-color);
}

.ai-modal textarea.form-control {
    height: auto;
}

.ai-modal .form-control::placeholder {
    color: rgba(255, 255, 255, .45);
}

.ai-modal .form-control:focus,
.ai-modal .form-select:focus {
    box-shadow: none;
    border-color: #ff6600;
    background: rgba(255, 255, 255, .06);
    color: var(--white-color);
}

/* Fix for select arrow */
.formcontainer select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3e%3cpolygon points='6 9 12 15 18 9'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 1rem center !important;
    background-size: 1em !important;
}

.error {
    color: red;
    font-size: 10px;
    text-align: center;
}

.success {
    color: green;
    font-size: 14px;
}

.iti {
    width: 100%;
}

.iti__country-name,
.iti__flag-box {
    color: #000;
}

.iti input,
.iti input[type="tel"],
.iti input[type="text"] {
    padding-left: 50px !important;
}

/* .trust-info */
.trust-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--body-color);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(1.4rem, 2vw, 2rem);
}

.trust-item i {
    font-size: 16px;
    color: var(--theme-primary1);
}

.trust-item strong {
    font-weight: 600;
    color: var(--black-color);
}

.divider {
    width: 1px;
    height: 16px;
    background: #ccc;
}

.custom-md-border {
    border: none;
}

@media (min-width: 768px) {
    .custom-md-border {
        border-right: 4px solid var(--bs-border-color) !important;
    }
}

/* thankyou page */
.gradient-section {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gradient-section::before,
.gradient-section::after {
    display: block;
    position: absolute;
    content: "";
    width: 450px;
    height: 450px;
    z-index: 2;

}

.gradient-section::before {
    background: radial-gradient(circle, rgba(255, 187, 0, 0.18), transparent 70%);
    top: -150px;
    left: -150px;
}

.gradient-section::after {
    background: radial-gradient(circle, rgba(215, 241, 99, 0.25), transparent 70%);
    bottom: -150px;
    right: -100px;
}

.thankyou-card {
    width: 100%;
    max-width: 720px;
    background: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 60px 40px;
    position: relative;
    z-index: 10;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}


.badge-ai {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg3);
    border: var(--bg3-border);
    color: var(--theme-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 25px;
}

.badge-ai span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--theme-color);
    display: inline-block;
    box-shadow: 0 0 10px #ff4400;
}

.thankyou-card p.subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem) !important;
}