/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on January 8, 2026 */



@font-face {
    font-family: 'boschregular';
    src: url('../fonts/bosch1-webfont.woff2') format('woff2'),
        url('../fonts/bosch1-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background-image: url('https://isoharts.com/wp-content/uploads/2026/01/fullbaner.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    height: 95px;
    align-content: center;
    background: rgb(49 130 167 / 30%);
    backdrop-filter: blur(9px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header {
    transition: transform 0.6s ease, background 0.6s ease;
}

.header.hide {
    transform: translateY(-100%);
}



.header.scrolled {
    background: rgb(49 130 167 / 79%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.header.scrolled .nav a {
    color: #070707;
}

.header.scrolled .btn-primary {
    background: #2f7fa4;
}



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

.header .logo img {
    max-width: 248px;
    max-height: 71px;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
    z-index: 100;
}

.header .menus {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
}

.header .menus .nav {
    display: flex;
    align-items: center;
}

.header .nav a {
    text-decoration: none;
    color: black;
    margin-right: 22px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
}

.header .btn-primary {
    background: #fff;
    color: #000;
    width: 148px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;
}

/* =====================================================
   RESPONSIVE HEADER – DROPDOWN FROM TOP
===================================================== */

/* Hamburger icon */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #000;
    z-index: 1001;
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 991px) {

    .header {
        height: auto;
        padding: 12px 0;
    }

    .header .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
        margin-left: 50px;
    }

    .header .menus {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(215, 235, 244, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 18px;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.65s ease, padding 0.9s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    /* OPEN STATE */
    .header.menu-open .menus {
        max-height: 100vh;
        padding: 10px 10px 20px;
    }

    /* Nav links */
    .header .nav {
        flex-direction: column;
        align-items: center;
    }

    .header .nav a {
        font-size: 18px;
        margin: 10px 0;
        color: #1a3d63;
    }

    .header .btn-primary {
        margin-top: 0px;
        width: 220px;
    }
}

@media (max-width: 576px) {

    .header .logo img {
        max-width: 160px;
    }

    .header .nav a {
        font-size: 16px;
    }
}


/* ================= VIDEO WRAPPER ================= */

.video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-wrapper .bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    z-index: -2;
}

.video-wrapper .video-overlay {
    position: absolute;
    inset: 0;
    background: rgb(49 130 167 / 16%);
    z-index: -1;
}


/*  HERO SECTION*/

.hero {
    position: relative;
    z-index: 5;
    padding: 120px 20px;
    background: transparent;
}

.hero .hero-content {
    text-align: center;
    padding-top: 120px;
}

.hero .hero-content p:first-child {
    color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    font-family: "Alexandria", sans-serif;
}

.hero .hero-content h1 {
    color: #4fa3c7;
    font-size: 88px;
    line-height: 100px;
    font-weight: 500;
    margin-bottom: 30px;
    font-family: 'boschregular';
}

.hero .hero-content .holistic-approach {
    color: #ffffff;
    font-weight: 400;
    font-size: 19px;
    line-height: 1.7;
    max-width: 860px;
    margin: 0 auto 35px;
    font-family: "Alexandria", sans-serif;
}

.hero .hero-content .btn-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #4fa3c7;
    color: #4fa3c7;
    text-decoration: none;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero .hero-content .btn-outline:hover {
    background: #4fa3c7;
    color: #000;
}

@media (max-width: 768px) {
    .hero .hero-content {
        padding-top: 50px;
    }

    .hero .hero-content h1 {
        font-size: 48px;
        line-height: 60px;
    }
}

.background-image {
    background-image: url('../Assets/images/wallpaper-textile-pattern-with-natural-leaves-trees-background-mountain-sky-sunset\ 1.png');
    background-repeat: no-repeat;
    background-size: cover;

}

/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 100px 0px;
    background: rgba(215, 235, 244, 0.3);

}

.about-section .row {
    justify-content: space-between;
}

.about-section .about-tag {
    color: #1A3D63;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    font-family: "Alexandria";
}

.about-section .about-left h2 {
    font-size: 64px;
    line-height: 1.15;
    color: #2b7da3;
    font-family: 'boschregular';
    font-weight: 600;
    margin-bottom: 20px;
}

.about-section .about-left .about-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #3b3b3b;
    max-width: 420px;
    font-family: "Alexandria";
}

.about-section .about-right p {
    font-size: 18px;
    line-height: 30px;
    color: #2f2f2f;
    margin-bottom: 40px;
    font-family: "Alexandria";
}

.about-section .about-right .btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: #2f7fa4;
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 500;
    font-family: "Alexandria";
}


.about-section .about-media {
    margin-top: 70px;
    position: relative;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.about-section .about-media video {
    width: 100%;
    display: block;
    border-radius: 28px;
}

.about-section .about-media .play-btn {
    position: absolute;
    top: -30px;
    left: -30px;
    height: 128px;
    width: 128px;
    background: #3181A7;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    z-index: 9
}

.about-section .about-media .play-btn a {
    color: white;
}

.about-section .about-media .play-btn i {
    font-size: 38px;
}

@media (max-width:768px) {
    .about-section {
        padding: 50px 0px;
    }

    .about-section .about-media .play-btn {
        width: 70px;
        height: 70px;
        left: -8px;
        top: -20px;
    }
}

/*  Services section */

.service-section {
    background: rgba(215, 235, 244, 0.4);
    padding-bottom: 90px;
}

.service-section .service-tag {
    color: #1A3D63;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    font-family: "Alexandria", sans-serif;


}

.service-section .service-left h2 {
    font-size: 64px;
    line-height: 1.15;
    color: #2b7da3;
    font-family: 'boschregular';
    font-weight: 600;
    margin-bottom: 20px;
}

.service-section .service-right p {
    font-size: 18px;
    line-height: 30px;
    color: #2f2f2f;
    font-weight: 500;
    margin-bottom: 40px;
    font-family: "Alexandria", sans-serif;

}

.service-section .service-left .btn-primary {
    display: inline-block;
    padding: 14px 34px;
    color: black;
    font-family: "Alexandria", sans-serif;
    text-decoration: none;
    border-radius: 12px;
    border: 2px solid black;
    font-weight: 500;
    transition: all 0.3s ease;

}

.service-section .service-left .btn-primary:hover {
    background: #2f7fa4;
    border: 2px solid #2f7fa4;
    font-weight: 500;
    color: white;
    text-decoration: none;

}

.service-cards {
    margin: 80px 0px 10px 0px;
}

.service-cards .service-card {
    background: #2f7fa4;
    color: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    min-height: 313px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-cards .service-card h4 {
    font-family: "Alexandria", sans-serif;
    font-size: 26px;
}

.service-cards .service-card p {
    font-family: "Alexandria", sans-serif;
    font-size: 18px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 62px;
    height: 62px;
    font-size: 20px;
    font-weight: 600;
}

.service-card h4 {
    font-family: 'boschregular';
    padding-top: 30px;
    font-size: 20px;
    line-height: 1.4;
    margin-top: 40px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Text */
.service-card p {
    font-family: 'boschregular';
    line-height: 1.6;
    opacity: 0.95;
}

@media (max-width: 768px) {
    /* Service section... */


    .service-section {
        padding-bottom: 20px;
    }

    .service-cards .service-card {
        margin-bottom: 20px;
    }

    .service-section .service-left .btn-primary {
        margin-bottom: 30px;
    }

    .service-section .service-right p {
        margin-bottom: 30px;
    }

    .service-cards {
        margin-top: 30px;
    }
}

/* BENEFITS SECTION............ */


.benefits-section {
    background: rgba(49, 129, 167, 0.3);
    padding: 100px 0;
}

.benefits-section .benefits-tag {
    letter-spacing: 2px;
    color: #1a3d63;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'boschregular';
}

.benefits-section h2 {
    font-size: 63px;
    font-weight: 500;
    line-height: 1.15;
    color: #2b7da3;
    font-family: 'boschregular';
    font-weight: 600;
    margin-bottom: 30px;
}

.benefits-section .benefits-list {
    list-style: none;
    font-family: "Alexandria", sans-serif;
    padding-left: 0;
}

.benefits-section .benefits-list li {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(26, 61, 99, 1);
    margin-bottom: 12px;
    padding-left: 18px;
    position: relative;
}

.benefits-section .benefits-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #2f7fa4;
    font-size: 18px;
}

.benefits-section .benefits-content img {
    width: -webkit-fill-available;
}

.benefits-section .benefits-media .media-card {
    text-align: right;
}

.benefits-section .benefits-media .media-card img {
    width: 468px;
}

.benefit-btn {
    text-align: left !important;
    padding-left: 30px;
}

.benefits-section .btn-outline {
    display: inline-block;
    text-align: left;
    margin-top: 50px;
    margin-left: 50px;
    padding: 12px 40px;
    border: 2px solid #0b0b0b;
    color: #050505;
    font-family: "Alexandria", sans-serif;
    text-decoration: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefits-section .btn-outline:hover {
    border: 2px solid #2f7fa4;
    background: #2f7fa4;
    color: #ffffff;
}

@media (max-width:768px) {
    .benefits-section {
        padding: 50px 0px !important;

    }

    .benefits-content {
        padding-bottom: 30px;
    }

    .benefit-btn {
        padding-left: 0px;
    }

    .benefits-section .btn-outline {
        margin-left: 0px;
    }

    .benefits-section .benefits-media .media-card img {
        width: -webkit-fill-available;
    }

}

/* ================= SUBSCRIBE BANNER ================= */

.subscribe-section {
    padding: 80px 0;
    background: rgba(215, 235, 244, 0.4);

}

.subscribe-banner {
    background-image: url("../Assets/images/preparing-sake-japanese-beverage\ 1.png");
    background-size: cover;
    background-position: center;
    border-radius: 28px;
    align-items: center;
    overflow: hidden;
}

.subscribe-content {
    position: relative;
    z-index: 2;
    max-width: 520px;
    padding: 60px;
    color: #ffffff;
}

/* Tag */
.subscribe-content .subscribe-tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(49, 129, 167, 1);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
}

.subscribe-content h2 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 18px;
    font-family: 'boschregular';
    font-family: 600;
}

.subscribe-content p {
    font-size: 18px;
    line-height: 30px;
    color: #e5e5e5;
    margin-bottom: 30px;
    font-family: "Alexandria", sans-serif;
}

.subscribe-content .btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: #2f7fa4;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-family: "Alexandria", sans-serif;
    font-weight: 500;
}

@media (max-width:768px) {
    .subscribe-section {
        padding: 20px 0px;
    }

    .subscribe-banner {
        width: -webkit-fill-available;
    }

    .subscribe-content {
        padding: 20px;
    }

    .subscribe-content .btn-primary {
        padding: 10px;
        font-weight: 400;
        font-size: 14px;
    }
}

/* ================= FOOTER ================= */

.site-footer {
    position: relative;
    background-image: url("../Assets/images/footer-bg-img.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px 0 40px;
    color: #ffffff;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(49, 130, 167, 0.79);
}

.site-footer>* {
    position: relative;
    z-index: 2;
}

.site-footer .footer-logo img {
    width: 173px;
    height: 50px;
    margin-bottom: 30px;
}

.site-footer .footer-left h2 {
    font-size: 48px;
    line-height: 64px;
    font-family: 'boschregular';
    font-weight: 600;
    margin-bottom: 25px;
}

.site-footer .footer-nav a {
    color: white;
    text-decoration: none;
    margin-right: 18px;
    font-size: 18px;
    opacity: 0.8;
    font-family: "Alexandria", sans-serif;
}

.site-footer .footer-nav a:hover {
    opacity: 1;
}

.site-footer .footer-right strong {
    opacity: 0.8;
}

.site-footer .footer-right p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
    font-family: "Alexandria", sans-serif;

}

.site-footer .footer-right .appointment {
    opacity: 0.8;
    font-family: "Alexandria", sans-serif;

}

.site-footer .footer-divider {
    height: 1px;
    margin-top: 40px;
    background: white;
    margin-bottom: 20px;
}

.site-footer .footer-bottom {
    font-family: "Alexandria", sans-serif;
    text-align: center;
    align-content: center;
    font-size: 18px;
    opacity: 0.65;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .site-footer .footer-left h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 70px 0 30px;
    }

    .site-footer .footer-left h2 {
        font-size: 28px;
        line-height: 50px;
    }

    .site-footer .footer-nav a {
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* test */