@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
   /* Reset and base styles */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    justify-content: center;
    align-items: center;
    background-color: #000;
}


/* General Navbar Styles */
.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding: 50px 40px;
    background-color: #000;
    position: relative;
    z-index: 10;
    height: 129px;
}

.logo{
    text-decoration: none;
    margin-left: 20px;
    color: #CC3232;
    font-size: 24px; /* Scaled for mobile */
    font-weight: bold;
    text-transform: uppercase;
}

.nav-links{
    gap: 40px;
    display: flex;
}
.nav-buttons {
    display: flex;
    gap: 24px; /* Reduced gap for mobile */
}

.nav-links {
    list-style: none;
}

.nav-links a {
    color: #CC3232;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px; /* Adjusted font size */
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #fff;
}
/* Side Navbar */
/* General Styles */
body {
    margin: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* Side Navbar */
.side-navbar {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    height: 100%;
    width: 70%; /* Adjust width for smaller screens */
    max-width: 300px; /* Maximum width for larger devices */
    background-color: #000;
    transition: right 0.3s ease; /* Smooth slide-in animation */
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
    z-index: 100; /* Ensure it appears above all other elements */
    display: flex;
    flex-direction: column;
    padding: 15px;
    overflow-y: auto; /* Enable scrolling for long content */
}

/* Active State */
.side-navbar.active {
    right: 0px; /* Fully visible when active */
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 20px; /* Properly aligned */
    top: 21px;
    z-index: 101; /* Above the navbar */
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: transform 0.3s;
}

/* Buttons inside Side Navbar */
.nav-buttons {
    margin-top: auto; /* Push buttons to the bottom of the navbar */
}

.btn {
    width: 100%; /* Full width inside the navbar */
    margin: 10px 0; /* Add spacing between buttons */
    height: 50px;
    border: 2px solid #CC3232;
    background: transparent;
    color: #CC3232;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn:hover {
    background-color: #CC3232;
    color: #fff;
}

.side-navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.side-navbar ul li {
    margin: 15px 0;
}

.side-navbar ul li a {
    color: #CC3232;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px; /* Mobile-friendly font size */
}

.side-navbar ul li a:hover {
    color: #fff;
}

/* Side Navbar Buttons */
.side-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px; /* Adjusted spacing for mobile */
}

/* Button Styles */
.btn {
    width: 200px; /* Ensure buttons adjust in side navbar */
    height: 49px; /* Scaled for mobile */
    border: 2px solid #CC3232; /* Red color */
    background: transparent;
    color: #CC3232;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn.filled {
    background-color: #CC3232;
    color: #fff;
}

.btn.outline-login:hover,
.btn.filled:hover {
    background-color: #b12b2b;
    color: #fff;
}

.btn.outline-login{
    width: 82px;
    height: 49px;
}

@media (max-width:1024px){
    .btn {
        width: 150px;
    }
    .nav-links a {
        font-size: 11px;
    }
    .nav-container {
        gap: 20px;
    }
}

@media (min-width: 1024px) {
.hamburger{
    display: none;
}
}
@media (max-width: 768px) {
    .nav-buttons,.nav-links{
        display: none;
    }
    }
    @media (max-width: 425px) {
        .navbar{
            position: sticky; /* Sticky positioning */
            top: 0; /* Stick to the top of the viewport */
            z-index: 1000; /* Ensure it stays above other elements */
                width: auto;
                height: 60px;
                padding: 0px 0px 0px 0px;
        }
        .nav-buttons,.nav-links{
            display: none;
        }
        .nav-logo {
            font-size: 16px;
        }
        .hamburger span {
            width: 18px;
            height: 2.5px;
        }
        .side-navbar ul li a {
            font-size: 14px; /* Smaller size for smaller screens */
        }
    }
    @media (max-width: 320px) {
        .side-navbar {
            width: 80%; /* Adjust width for very small screens */
        }
        .hamburger span {
            width: 16px;
        }
    }
/* Navbar End */


/* Section Start */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.section-title {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    color: #fff;
}

.section-description {
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.branches {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.branch {
    width: 580px;
    height: 228px;
    border: 1px solid #fff;
    padding: 40px;
    text-align: left;
}

.branch-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.branch-details {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

/* Section end */



/* A B C D Branch */
.dojo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.branch-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.branch-text {
    padding: 40px;
    max-width: calc(50% - 40px);
}

.branch-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

.branch-subtitle {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}

.branch-description {
    color: #fff;
    font-size: 16px;
    line-height: 1.5;
}

.branch-description a{
    color: white;
    font-weight: bold;
}

.branch-description a:hover{
    color: #CC3232;
}

.branch-image {
    margin-left: 40px;
}

.branch-image img {
    width: 480px;
    height: 320px;
    object-fit: cover;
}

.facilities-section {
    margin-top: 40px;
    padding: 0 40px;
}

.facilities-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.facilities-images {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.facilities-images img {
    width: 357px;
    height: 238px;
    object-fit: cover;
    margin-bottom: 40px ;
}
/* End of A B C D branch */

/* footer */

/* Footer Styles */
.line1{
    margin-top: 40px;
    width: 100%;
}

.footer {
    background-color: #000; /* Black background */
    color: #fff; /* White text */
    padding: 80px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center; /* Center vertically */
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 40px;
}

/* Left Section */
.footer-left {
    flex: 1 1 30%;
    max-width: 400px;
    margin-right: 100px; /* Adjusted for alignment */
    text-align: left; /* Ensure text aligns properly */
}

.footer-logo {
    width: 90px; /* Adjusted logo size */
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: #aaa; /* Lighter text for copyright */
}

/* Right Section */
.footer-right {
    flex: 1 1 60%;
    display: flex;
    justify-content: space-between; /* Ensure columns are evenly spaced */
}

.footer-column {
    flex: 1;
    margin: 0;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: bold; /* Bold for headings */
    margin-bottom: 15px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 12px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f00; /* Red on hover */
    text-decoration: underline;
}

/* Ensure the entire footer content is centered */
.footer-container {
    align-items: center; /* Vertically center the content */
}
.line{
    margin-left: 50px;
    margin-right: 50px;
    margin-bottom: 20px;
}

.copyright {
    margin-left: 40px;
    margin-right: 40px;
    display: flex; /* Enable flexbox for alignment */
    align-items: center; /* Vertically center content */
    justify-content: space-between; /* Distribute space between text and icons */
    padding: 10px; /* Add some padding for visual spacing */
}
.copyright p{
    color: #fff;
}

.social-icons {
    display: flex; /* Enable flexbox for icons */
    align-items: center; /* Vertically center icons */
}

.footer-insta {
    margin-right: 10px; /* Add 10px gap to the right of the Instagram icon */
}

/* Optional: Adjust image size if needed */
.footer-insta, .footer-tiktok {
    width: 24px; /* Example width */
    height: 24px;
}


/* Responsive */


@media (max-width: 1024px){
    .branch {
        margin-left: 16px;
        width: 440px;
        height: 228px;
        padding: 30px;
    }

    .branches{
        gap: 30px;
        justify-content: flex-start; /* or another value you prefer */
        margin-bottom: 30px;
    }
    .branch-section{
        justify-content: unset;
    }
    .branch-text {
        padding: 40px;
        max-width: calc(50% - 48px);
    }

    .facilities-images {
        /* display: flex; */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .facilities-images img {
        width: 293px;
    }
    .section-title{
        margin-left: 20px;
    }
    .section-description{
        margin-left: 20px;
        font-size: 18px;
    }
}

@media(max-width:768px){
    .logo{
        font-size: 18px;
    }
    .facilities-images {
        /* display: flex; */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .branch-section{
        flex-direction: column;
    }
    .branches{
        gap: 10px;
        margin-bottom: 20px;
    }
    .branch{
        width: 344px;
        margin-left: 10px;
    }
    .branch-text {
        padding: 40px;
        max-width: 768px;
    }
    .branch-image img {
        width: 680px;
    }
    .facilities-images img{
        width: 210px;
        margin-bottom: 0px;
    }
    .dojo-container{
        padding: 0px;
    }
    .footer{
        padding: 50px 20px;
    }
    .section-title{
        font-size: 32px;
    }
}
/*iphone 12 pro*/
@media (max-width: 425px) {
    .branch-text {
        padding:30px;
    }
    .branch-subtitle{
        font-size: 16px;
    }
}
@media(max-width:425px){
    .branch {
        width: 355px;
        height: 190px;
        margin: 0px;
    }
    .branch-title{
        font-size: 24px;
    }
    .branch-details{
        font-size: 16px;
    }
    .branches {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 24px;
        margin-bottom: 16px;
    }
    .section-title{
        max-width: 425px;
        font-size: 24px;
        font-weight: bold;
    }
    .section-description{
        max-width: 425px;
        font-size: 16px;
    }
    .branch-image img{
        width: 325px;
        height: 208px;
    }
    .facilities-images img{
        width: 325px;
        height: 208px;
        margin-bottom: 0px;
    }
    .facilities-images{
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 20px;
    }
    .branch-description{
        font-size: 16px;
    }
    .facilities-title{
        font-size: 14px;
    }
    .footer{
        display: none;
    }
    .line1{
        display: none;
    }
    .line {
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    .copyright p{
        font-size: 10px;
    }
    .branch-subtitle{
        font-size: 16px;
    }
}

@media(max-width:375px){
    .branches{
        margin-bottom: 16px;
    }
    .branch {
        width: 325px;
        gap: 16px;
    }
    .branch-image img {
        max-width: 375px;
        margin-left: auto;
        margin-right: auto;
        width: 300px;
        height: 208px;
    }
    .facilities-images img{
        max-width: 375px;
        margin-left: auto;
        margin-right: auto;
        width: 300px;
        height: 208px;
        margin-bottom: 0px;
    }
}

/* Flaoting btn */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: black ;
    color: white;
    border: 1px solid white;
    border-radius: 30px;
    padding: 10px 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    z-index: 1000;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.floating-contact:hover {
    background-color: white;
    color: #CC3232;
}
@media (max-width: 375px) {
    .floating-contact {
        font-size: 12px;
        padding: 8px 16px;
    }
}
@media (max-width: 325px) {
    .floating-contact {
        font-size: 10px;
        padding: 6px 12px;
    }
}
@media (min-width: 768px) {
    .floating-contact {
        font-size: 16px;
        padding: 12px 24px;
    }
}
@media (min-width: 1024px) {
    .logo{
        font-size: 18px;
    }
    .nav-links{
        gap: 20px;
    }
    .floating-contact {
        font-size: 18px;
        padding: 14px 28px;
    }
}
@media (min-width: 1440px) {
    .nav-links{
        gap: 40px;
    }
    .logo{
        font-size: 24px
    }
    .floating-contact {
        font-size: 20px;
    }
}