* {
  box-sizing: border-box;
  user-select: none;
}
@font-face {
    font-family: Metropolis-ExtraLight;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-ExtraLight.otf") format("opentype");
}
@font-face {
    font-family: Metropolis-Medium;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Medium.otf") format("opentype");
}
@font-face {
    font-family: Metropolis-Regular;
    src: url("https://betheoneofficial.com/assets/fonts/Metropolis-Regular.otf") format("opentype");
}
body {
    margin: 0;
    padding: 0;
    background: black;
    height: auto;
    color: white;
    font-family: "Metropolis-ExtraLight";
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

h2 {
  font-size: clamp(1rem, 5vw, 5rem);
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.5em;
  margin-right: -0.5em;
  color: #cccccc;
  width: 90vw;
  max-width: 1200px;
  display: none; 
}

header {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  width: 100%;
  z-index: 50; 
  height: 7em;
  font-family: "Metropolis-Regular"";
  font-size: clamp(0.66rem, 2vw, 1rem);
  letter-spacing: 0.5em;
  transition: all 0.3s ease;
}

.burger-menu {
  cursor: pointer;
  width: 45px;
  height: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 55; 
}

.bar {
  width: 100%;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease-in-out;
  transform-origin: left;
}
img.header-logo {
    margin-top: 8px;
    width: 120px;
    /*margin-left: calc(50% - 60px);*/
    margin-left: 0;
}
img.footer-logo {
    margin-top: 8px;
    width: 80px;
    margin-left: calc(50% - 40px);
}

.burger-menu.is-open .bar-top {
  transform: rotate(45deg) translate(0, -13px);
}

.burger-menu.is-open .bar-bottom {
  transform: rotate(-45deg) translate(0, 13px);
}

/* --- Sliding Sidebar/Slider Styles --- */
.slider-header {
    position: fixed;
    top: 0;
    right: -90px;
    width: min(90vw, 350px);
    height: 100vh;
    background: rgba(17, 17, 17, 0.98); 
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5); 
    z-index: 51;
    transform: translateX(100%) skewX(10deg);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
    padding: 7em 2em 2em 2em;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-family: "Metropolis-Regular"";
    letter-spacing: 0.2em;
    overflow-y: auto; 
} 

.slider-header.is-open {
    transform: translateX(0) skewX(0); 
}

.slider-header nav {
    margin-top: 2em;
}

/* Hover Animation: Slide-in Underline */
.slider-header nav a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    display: block;
    margin-bottom: 0.8em;
    transition: color 0.3s;
    font-family: 'Metropolis-ExtraLight';
    text-transform: uppercase;
    
    /* New: Setup for underline effect */
    position: relative; 
    overflow: hidden; /* Hide the sliding line */
    padding-bottom: 5px; /* Add space for the line */
}
.slider-header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px; /* Line thickness */
    background-color: #d59576; /* Gold color */
    transform: translateX(-100%); /* Start off-screen to the left */
    transition: transform 0.3s ease-out;
}
.slider-header nav a:hover::after {
    transform: translateX(0); /* Slide in */
}
.slider-header nav a:hover {
    color: #d59576; 
}

/* Submenu Styling */
.nav-item-with-submenu {
    position: relative;
    /* Ensure the wrapper respects the same padding/margin as a regular link */
    /*margin-bottom: 0.8em; */
}

.nav-item-with-submenu .main-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 5px; /* Adjust if needed */
}

.submenu-toggle-icon {
    font-size: 14px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.nav-item-with-submenu.submenu-open .submenu-toggle-icon {
    transform: rotate(90deg); /* Rotate arrow when submenu is open */
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
    opacity: 0;
    padding-left: 20px; /* Indent submenu links */
    margin-top: 5px;
}

.submenu a {
    font-size: 15px; /* Smaller font for submenu links */
    margin-bottom: 0.4em;
    padding-bottom: 3px;
}

.nav-item-with-submenu.submenu-open .submenu {
    max-height: 200px; /* Sufficient height to show all links */
    opacity: 1;
}

/* Remove slide-in effect for the submenu links themselves */
.submenu a::after {
    display: none;
}
.submenu a:hover::after {
    transform: translateX(-100%);
}

/* * FIX: Restructure pointer-events CSS to enable clicking on submenu links
 */
.main-nav-link .submenu-toggle-icon {
    /* Prevents the arrow from being part of the 'a' hover effect if needed */
    pointer-events: none; 
}

.main-nav-link {
    pointer-events: auto; /* Re-enable pointer events for the main link text */
}

.submenu a {
    /* ENSURE submenu links are fully clickable */
    pointer-events: auto; 
}

/* On mobile, adjust the main-nav-link padding */
@media (max-width: 768px) {
    .slider-header nav a {
        padding-bottom: 3px;
        font-size: 15px !important;
        text-transform: uppercase;
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 50;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.is-open {
    visibility: visible;
    opacity: 1;
} 
.footer-content {
    width: 100%;
    height: 100%;
    min-height: 50vh; 
    padding: 5% 5% 2% 5%;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-family: "Metropolis-ExtraLight";
    font-size: 1.1rem;
    color: #cccccc;
    text-transform: none;
}
.footer-content a {
    color: #d59576;
    text-decoration: none;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 0.9em;
}
.footer-content .logo {
    font-family: "Metropolis-Regular";
    font-size: 2em;
    letter-spacing: 0.2em;
    color: white;
    margin-bottom: 20px;
    margin-top: 50px;
}
.footer-content .links a {
    letter-spacing: 0.1em;
}
.footer-content .copyright {
    margin-top: 40px;
    font-size: 0.85em;
    color: #888888;
} 
/* --- END NEW CSS: Footer Style --- */

/* =============================
Banner Video Section
==============================*/
.banner-section {
position: relative;
width: 100%;
height: 100vh;
overflow: hidden;
display: flex;
align-items: flex-end;
justify-content: flex-start;
}

.banner-section video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
transform: scale(1.2);
}

/* Header text inside video */
.banner-text {
position: absolute;
bottom: 10%;
left: 5%;
color: white;
text-transform: uppercase;
font-size: clamp(2rem, 6vw, 4rem);
font-family: "Metropolis-ExtraLight";
letter-spacing: 0.1em;
opacity: 0;
z-index: 10; /* Ensure text is above video */
}
.why-rna.right{
    /*background: url('https://betheoneofficial.com/assets/svg/right1-3.svg');*/
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    /*background: #000;*/
    /*padding: 3% 0;*/
}
.why-rna.left{
    /*background: url('https://betheoneofficial.com/assets/svg/left1-3.svg');*/
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh; 
    /*padding: 3% 0;*/
}
.row.right-content{
    align-items: flex-end;
    justify-content: flex-end;
    padding-bottom: 5%;
}
.row.left-content {
    padding-bottom: 5%;
    width:  100%;
    align-items: flex-end;
}

.section-heading {
    font-family: 'Metropolis-ExtraLight';
    font-size: 45px;
}
.section-heading small{
    font-size: 20px;
}

h4.section-sub-heading {
    font-family: 'Metropolis-ExtraLight';
    color: #d59576; 
}

.section-copy {
    font-family: 'Metropolis-ExtraLight';
    margin-bottom: 12px;
} 
section.bsection.why-rna .col {
    padding: 2em;
} 
section.bsection {
    opacity: 0; /* Hidden by default for GSAP animation */
    transform: translateY(50px); /* Start position for slide-up effect */
} 
.svg-holder svg {
    position: absolute;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover; 
}
.first{
    background: url('https://betheoneofficial.com/assets/images/doctor1.jpg');
    background-position: top left;
}
.second{
    background: url('https://betheoneofficial.com/assets/images/doctor2.jpg');
    background-position: top right;
}
.third{
    background: url('https://betheoneofficial.com/assets/images/doctor3.jpg');
    background-position: top left;
}
.four{
    background: url('https://betheoneofficial.com/assets/images/doctor4.jpg');
    background-position: top right;
} 
.five{
    background: url('https://betheoneofficial.com/assets/images/doctor5.jpg');
    background-position: top left;
} 
.col.left.img img {
    display: none;
}
.col.right.img img {
    display: none;
}
/* --- START Read More Toggle CSS --- */
.read-more-container {
    overflow: hidden;
    /* Initial height set to show just a few lines of the full biography */
    max-height: 0; 
    transition: max-height 0.5s ease-in-out;
}
.read-more-container.expanded {
    /* Sufficiently large height to show all content, including UL */
    max-height: 1000px; 
}
.read-more-toggle {
    background: transparent;
    border: none;
    color: #d59576; /* Gold color */ 
    font-family: "Metropolis-ExtraLight";
    font-size: 0.9rem;
    cursor: pointer;
    padding: 5px 0;
    margin-top: 5px;
    display: block; /* Make it take its own line */
    transition: color 0.3s;
}
.read-more-toggle:hover {
    color: #fff;
}
/* --- END Read More Toggle CSS --- */
@media (max-width: 480px) {
    section.bsection.why-rna .col {flex: 1 100%;}

    .why-rna.right {
        height: unset;
    } 
    
    .why-rna.left {
        height: unset;
    }
}
@media (max-width: 768px) {
    h3.section-heading {
        font-size: 25px;
    }
    .col.left.img img {
        display: block;
    }
    .col.right.img img {
        display: block;
    }
    h4.section-sub-heading {
        font-size: 20px;
    }
    .col.left.img {
        display: block;
        padding: 0px !important;
    }
    .banner-section{
        height: unset;
    }
    .col.right.img {
        display: block;
        padding: 0 !important;
    }
    .first{
        background: #000;
    }
    .second{
        background: #000;
    }
    .third{
        background: #000;
    }
    .four{
        background: #000;
    }
    .five{
        background: #000;
    }
    .six{
        background: #000;
    }
    .seven{
        background: #000;
    }
    img.header-logo {
        width: 70px;
        margin-left: 0; 
        margin-top: 5px;
    }
    img.footer-logo {
        width: 80px;
        margin-left: calc(50% - 40px);  
    }
    .burger-menu {width: 35px;}
    header {
        height: 4em;
        background: #0000008c;
    } 
    .footer-content p {
        line-height: 25px;
    }
    .footer-content .links a {
        font-size: 14px;
        line-height: 1.5rem;
    }   
    .nav-item-with-submenu .main-nav-link {
        padding-right: 10px;
        align-items: flex-start;
    }
    h3.section-heading {
        font-size: 25px;
    }
    
    h4.section-sub-heading {
        font-size: 20px;
    }
}
/* --- START NEW CSS: Contact Us Section & Form Styling --- */
.contact-us-section {
    background: #111111; /* Slightly lighter black for contrast */
}

.contact-form .form-label {
    font-family: 'Metropolis-ExtraLight';
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-form .form-control {
    background-color: #000000; /* Black background for inputs */
    color: white; /* White text for input */
    border: 1px solid #333333; /* Subtle border */
    border-radius: 0; /* Match existing style */
    padding: 10px;
    font-family: 'Metropolis-ExtraLight';
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
    background-color: #000000;
    color: white;
    border-color: #d59576; /* Gold/Accent color on focus */
    box-shadow: none;
}

/* Custom Submit Button Styling */
.submit-btn {
    background-color: transparent;
    border: 2px solid #d59576;
    color: #d59576;
    padding: 10px 30px;
    margin-top: 15px;
    font-family: 'Metropolis-Regular';
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-radius: 0;
}

/* Hover Animation for Submit Button */
.submit-btn:hover {
    background-color: #d59576; /* Fill with accent color */
    color: black; /* Change text to black */
    border-color: #d59576;
    transform: translateY(-2px); /* Slight lift */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.mb-3.name {
    width: 48%;
    display: inline-block;
    margin-right: 3%;
}

.mb-3.phone {
    width: 48%;
    display: inline-block;
} 
.contact-details p {
    font-size: 25px;
}

@media (max-width: 767px) {
    /* Center the corporate address content on mobile */
    .contact-us-section .col-md-6:first-child .section-heading,
    .contact-us-section .col-md-6:first-child .section-sub-heading,
    .contact-us-section .col-md-6:first-child address {
        text-align: left !important;
    }
    .mb-3.name {
        width: 100%; 
    }
    .contact-details p {
        font-size: 15px;
    } 
    .mb-3.phone {
        width: 100%;
        display: inline-block;
    } 
}
/* --- END NEW CSS: Contact Us Section & Form Styling --- */
/* --- START Map Section CSS --- */
.map-section {
    width: 100%;
    height: 500px;
    background: #000;
    overflow: hidden;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    /* This filter turns the standard light map into a Dark Mode map */
    filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2) grayscale(0.2);
    -webkit-filter: invert(90%) hue-rotate(180deg) brightness(0.9) contrast(1.2) grayscale(0.2);
    mix-blend-mode: normal;
}
@media (max-width: 768px) {
    .map-section {
        height: 350px; /* Smaller height for mobile */
    }
}
/* --- END Map Section CSS --- */ 