* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: 'Forum';
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    overflow-y: auto;
}

:root {
    --theme-color: #6FD1D4;
}

ul,
ol {
    list-style: none;
}

i,
a {
    display: inline-block;
}

a {
    text-decoration: none;
}

img {
    display: block;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 10px 40px;
}

.text-center {
    text-align: center;
}

.relative {
    position: relative;
}

.absoulte {
    position: absolute;
}

.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.items-center {
    align-items: center;
}

.forum {
    font-family: 'Forum';
}

.madimione {
    font-family: 'Madimi One';
}

.roboto {
    font-family: 'Roboto Condensed';
}

.LeagueGothic {
    font-family: 'League Gothic Condensed';
}

.advent {
    font-family: 'Advent Pro Expanded';
}

.lancelot {
    font-family: 'Lancelot';
}

.tenorsans {
    font-family: 'Tenor Sans';
}

.col-1 {
    width: 8.3333%;
}

.col-2 {
    width: 16.6667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.3333%;
}

.col-5 {
    width: 41.6667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.3333%;
}

.col-8 {
    width: 66.6667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.3333%;
}

.col-11 {
    width: 91.6667%;
}

.col-12 {
    width: 100%;
}


/* HEADER */

.logo {
    width: 130px;
    height: 120px;
    object-fit: contain;

}

.header {
    padding: 15px 40px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    max-width: 100vw;
    z-index: 1000;
}

.header .container {
    padding: 0;
    width: 100%;
    max-width: 100%;
}

main {
    padding: 10px 10px 0 10px;
}

.header .menu-icon i {
    font-size: 24px;
    cursor: pointer;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header .menu-icon:hover i {
    background-color: var(--theme-color);
    color: #000;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-logo {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 45px;
    height: 45px;
}

.menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 30px 20px;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin-bottom: 5px;
}

.mobile-nav ul li a {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-family: 'Forum', sans-serif;
}

.mobile-nav ul li a:hover {
    background-color: var(--theme-color);
    color: #000;
    transform: translateX(10px);
}

/* HERO */

.hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 450px;
    border-radius: 0;
    overflow: hidden;
    background-image: url("../assets/bohcaHero.png");
    background-size: cover;
    background-position: right bottom;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .header {
        padding: 15px 20px;
        width: auto;
        max-width: 100%;
    }

    .header .container {
        padding: 0;
    }

    .hero {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 16px;
    }
    .hero-content {
        padding: 24px;
    }

    .hero-title h2 {
        font-size: 28px;
    }

    .hero-title p {
        font-size: 16px;
        max-width: 100%;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    color: #ffffff;
}

.hero-title h2 {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 400;
    margin: 0;
    line-height: 1.1;
}

.hero-title p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    max-width: 520px;
}

.hero-content h1 {
    font-size: 67px;
    font-weight: 700;
    margin-top: auto;
}

.hero-btn {
    width: fit-content;
    padding: 10px 10px 10px 90px;
    background: #6fd4d4;
    color: #000;
   
    border-radius: 99px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  
    margin-bottom: 5px;
margin-top: 10px;
    font-family: Madimi One;
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 0px;
letter-spacing: 0%;

}
.Gbadge {
    width: 20px;
    height: auto;
}
.hero-btn i {
    margin-left: 40px;
    color: #000;
    background-color: #fff;
    padding: 10px 12px;
    border-radius: 50%;
}

.hero-btn:hover {
    background: #5bc2c2;
}

.hero-btn-container {
    background-color: #fff;
    position: absolute;
    bottom: -1.5%;
    right: 4%;
    border-radius: 40px 0px 0px 10px;

}

/* BOHCA */



.bohca-title h2{
  font-family: Roboto, sans-serif;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0 0 6px;
}

.bohca-title h2 span{
  color: #6FD1D4; /* theme highlight like screenshot */
  font-weight: 800;
}

.bohca-title p{
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.2px;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

/* Responsive */
@media (max-width: 768px){
  .bohca-title{
    padding: 12px 16px;
  }

  .bohca-title h2{
    font-size: 24px;
  }

  .bohca-title p{
    font-size: 12px;
  }
}



/* ===== BOHCA SECTION – FULL WIDTH SAFE ===== */
.bohca-dining{
  padding: 10px 0;
  background: #fff;
  width: 100%;
}

/* Full width container */
.bohca-dining .container{
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px; /* desktop side breathing space */
}

/* Main grid */
.bohca-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  align-items:center;
}

/* LEFT IMAGE */
.bohca-grid .bohca-item:first-child{
  border-radius: 28px;
  overflow: hidden;
}

.bohca-item img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
}

/* RIGHT CONTENT */
.bohca-grid .bohca-item:last-child{
  padding-top: 6px;
}

.bohca-item h3{
  font-family: Roboto, sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.15;
  color: #0c0c0c;
  margin: 0 0 18px;
  max-width: 90%;
}

.bohca-item h3 span{
  color: var(--theme-color);
}

.bohca-item p{
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #1a1a1a;
  margin: 0 0 16px;
  max-width: 90%;
}

/* LAST PARAGRAPH — aligned under RIGHT column using grid */
/* .bohca-dining > .container > p{
  grid-column: 2;
  max-width: 620px;
  margin: 10px 0 0;
  font-family: Inter, sans-serif;
  font-size: 15px;
  line-height: 24px;
  color: #1a1a1a;
} */

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px){
  .bohca-dining .container{
    padding: 0 40px;
  }
}

@media (max-width: 992px){
  .bohca-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .bohca-item h3{
    font-size: 34px;
    max-width: 100%;
  }

  .bohca-item p{
    max-width: 100%;
  }

  .bohca-dining > .container > p{
    grid-column: auto;
    max-width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 480px){
  .bohca-dining{
    padding: 50px 0;
  }

  .bohca-dining .container{
    padding: 0 20px;
  }

  .bohca-item h3{
    font-size: 26px;
    line-height: 1.2;
  }
}


/* CORE */

.core-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    background-color: #6FD1D433;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
}
.core-grid .core-item img{
    width: 100%;
}
.core-item ul li{
    margin-bottom: 15px;
    line-height: 22px;
}
.core-item h2{
    font-size: 45px;
    margin-bottom: 20px;
}
.core-btn-container .hero-btn{
    font-size: 20px;
    padding: 10px 20px;
    margin-top: 30px;
}
.stat{
    padding: 40px 0;
}
.stat-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.stat-item{
    border-bottom: 1px solid rgb(191, 188, 188);
    padding-bottom: 20px;
}
.stat-item h3{
    font-size: 40px;
}
.stat-item h4{
    font-size: 28px;
    color: var(--theme-color);
}
.stat-item p{
    font-size: 20px;
    margin-right: 20px;
}

/* FRANCHISE */

.franchise-grid{
    display: grid;
    grid-template-columns: 45% 55%;
    background-color: #6FD1D433;
    gap: 40px;
    padding: 30px;
    border-radius: 20px;
    align-items: center;
}
.franchise-grid .franchise-item img{
    width: 100%;
}
.franchise-item h3{
    font-size: 45px;
    margin-bottom:20px;
}
.franchise-item h3 span{
    color: var(--theme-color);
}
.franchise-item li{
    margin-bottom: 20px;
}

/* FOOTER */

footer {
    padding-top: 40px;
    background-color: #2F6466;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 4fr;
    gap: 40px;
    color: #fff;
}

.footer-grid .footer-content:first-child img {
    width: 270px;
}

.footer-grid .footer-content:first-child h4 {
    font-size: 17px;
    margin: 5px 0;
    margin-top: 15px;
    font-weight: 500;
}

.footer-content a {
    font-size: 14px;
    text-decoration: underline;
    display: inline-block;
    color: #fff;
    margin: 10px 0;
}

.footer-grid .footer-content:first-child i {
    background-color: rgb(60, 205, 60);
    padding: 10px 12px;
    font-weight: 500;
    font-size: 35px;
    color: green;
    border-radius: 50%;
    margin-top: auto;
}

.footer-content .whatsapp-icon {
    margin-top: auto;
}

.footer-grid .footer-content h3 {
    font-size: 20px;
    position: relative;
    display: inline-block;
}

.footer-grid .footer-content h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 200px;
    height: 1px;
    background: #fff;
}

.footer-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-content ul {
    padding-top: 30px;
}

.footer-content ul li {
    margin: 10px 0;
}

.footer-content ul li i {
    margin-right: 10px;
}

.footer-grid .footer-content:last-child img {
    width: 300px;
}

.copyright {
    color: #fff;
    border-top: 1px solid #fff;
    padding: 15px 0 0 0;
}

.copyright ul li:first-child i {
    color: #000;
    background-color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
}

.copyright ul li:nth-child(2) i {
    color: #fff;
    background-color: rgb(60, 209, 60);
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    margin: 0 15px;
}

.copyright ul li:last-child i {
    color: #fff;
    padding: 8px 9px;
    border-radius: 50%;
    font-size: 20px;
    background: linear-gradient(45deg,
            #f58529,
            #feda77,
            #dd2a7b,
            #8134af,
            #515bd4);
}

#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: #6fd4d4;
    color: #000;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

#backToTop:hover {
    transform: translateY(-4px);
}

/* Show button */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* FRANCHISE BENEFIT */
.franchise-benefit {
    background: #e1f7fb;
    border-radius: 36px;
    padding: 40px;
    margin-top: 40px;
}

.franchise-benefit-header {
    margin-bottom: 25px;
       display: grid;
    grid-template-columns: 35% 65%;
    gap: 30px;
    align-items: center;
}

.franchise-benefit-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #0d1f28;
    line-height: 1.1;
}

.franchise-benefit-header h2 span {
    color: var(--theme-color);
}

.franchise-benefit-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #0e2c34;
    margin-top: 10px;
}

.franchise-benefit-body {
    display: grid;
    /* grid-template-columns: 55% 45%; */
    gap: 30px;
    align-items: center;
}

/* .franchise-benefit-image {
    border-radius: 30px;
    overflow: hidden;
    min-height: 280px;
} */

.franchise-benefit-body img {
    width: 100%;
    height: 100%;
    /* min-height: 280px; */
    object-fit:contain;
    display: block;
}

.franchise-benefit-copy h3 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.franchise-benefit-copy h3 span {
    color: var(--theme-color);
}

.franchise-benefit-copy p {
    font-size: 18px;
    line-height: 1.7;
    color: #15232f;
    margin-bottom: 24px;
}

.core-btn-container.inline {
    padding: 0;
    background: none;
    box-shadow: none;
}

.core-btn-container.inline .hero-btn {
    margin: 0;
}

@media (max-width: 992px) {
    .franchise-benefit-body {
        grid-template-columns: 1fr;
    }

    .franchise-benefit {
        padding: 30px;
    }
}

.testimonial-section {
    margin-top: 60px;
    background: #d7eff4;
    border-radius: 40px;
    padding: 60px 40px;
}

.section-heading h2 {
    font-size: 46px;
    margin-bottom: 30px;
}

.section-heading h2 span {
    color: var(--theme-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 18px 45px rgba(9, 36, 41, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.testimonial-header p {
    margin: 0;
    font-size: 14px;
    color: #64828c;
}

.testimonial-card p {
    margin: 0;
    line-height: 1.7;
    color: #0b1a24;
    font-size: 16px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content:flex-start;
    font-size: 18px;
    font-weight: 700;
    gap: 4px;
}

.badge {
    background: #e0f6fb;
    border-radius: 14px;
    padding: 4px 14px;
    font-size: 14px;
    color: #1a7c86;
}

.stars {
    color: #f4b510;
    /* letter-spacing: 2px; */
    flex-direction: row;
    justify-content: flex-start;
}

.gallery-section {
    margin-top: 60px;
    padding: 40px;
}

.gallery-section .section-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.gallery-section .gallery-filters {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    background: #e7f5f8;
    border-radius: 40px;
    padding: 5px;
}

.gallery-section .filter {
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    background: transparent;
    color: #0b1a24;
    font-weight: 600;
    cursor: pointer;
}

.gallery-section .filter.active {
    background: #9ae2e8;
    color: #0b1a24;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-grid figure {
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(12, 80, 81, 0.15);
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
    }

    .gallery-grid figure {
        border-radius: 18px;
    }
}

/* BOHCA VIBE */
.bohca-vibe {
    padding: 60px 0;
}

.bohca-vibe-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.bohca-vibe-content h2 {
    font-size: 50px;
    font-weight: 400;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bohca-vibe-content h2 span {
    color: var(--theme-color);
}

.bohca-vibe-content p {
    font-size: 18px;
    color: #333;
    margin: 0;
}

.bohca-vibe-content .hero-btn {
    flex-shrink: 0;
}

/* BOHCA FAQ */


.bohca-faq-wrapper {
    background-color: #6FD1D433;
    border-radius: 20px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bohca-faq-content h2 {
    font-size: 50px;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
}

.bohca-faq-content h2 span {
    color: var(--theme-color);
}

.bohca-faq-image {
    border-radius: 16px;
    overflow: hidden;
}

.bohca-faq-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Accordion Styles for BOHCA FAQ */
.bohca-faq .faq-content {
    margin-top: 0;
}

.bohca-faq .accordion {
    background-color: transparent;
    color: #333;
    cursor: pointer;
    padding: 25px 0;
    width: 100%;
    text-align: left;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
    font-family: 'Forum', sans-serif;
    position: relative;
    z-index: 1;
}

.bohca-faq .accordion:hover {
    color: var(--theme-color);
}

.bohca-faq .accordion.active {
    color: var(--theme-color);
}

.bohca-faq .accordion .icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    border: 1px solid #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    position: relative;
}

.bohca-faq .accordion .icon::before {
    content: "+";
    display: block;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bohca-faq .accordion.active .icon {
    border-color: var(--theme-color);
    color: var(--theme-color);
}

.bohca-faq .accordion.active .icon::before {
    content: "−";
}

.bohca-faq .panel {
    padding: 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding-top 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                padding-bottom 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.bohca-faq .panel.active {
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 10px;
    opacity: 1;
}

.bohca-faq .panel p {
    margin: 0;
    padding: 20px 0 10px 0;
    line-height: 1.8;
    color: #333;
    font-family: 'Forum', sans-serif;
    font-size: 16px;
}

/* PARTNERSHIP */
.partnership {
    padding: 80px 0;
    text-align: center;
}

.partnership-content h2 {
    /* font-size: 50px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: Roboto; */
font-weight: 700;
font-style: Bold;
font-size: 45px;
color: #333;
/* leading-trim: NONE; */
line-height: 48px;
letter-spacing: 3%;
text-align: center;
margin-bottom: 30px;

}

.partnership-subtitle {

    font-family: Inter;
font-weight: 700;
font-style: Bold;
font-size: 24px;
 color: var(--theme-color);
line-height: 22px;
letter-spacing: 0%;
text-align: center;
margin-bottom: 30px;

}

.partnership-content .hero-btn {
    margin: 0 auto;
}
/* Carousel wrapper */
.testimonial-carousel{
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
}

/* Track moves */
.testimonial-track{
  display: flex;
  gap: 22px;               /* adjust spacing */
  width: max-content;
  animation: tscroll 18s linear infinite;
  will-change: transform;
}

/* Keep your card style as-is, only ensure fixed width */
.testimonial-card{
  flex: 0 0 auto;
  width: 360px;            /* change if your card is different */
}

/* Left -> Right scroll */
@keyframes tscroll{
  0%   { transform: translateX(-40%); }
  100% { transform: translateX(0%); }
}

/* Pause on hover (optional but nice) */
.testimonial-carousel:hover .testimonial-track{
  animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px){
  .testimonial-card{ width: 85vw; }
  .testimonial-track{ animation-duration: 22s; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .testimonial-track{ animation: none; }
}
