@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;
}

.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: #CC3232;
    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){
    .nav-links {
        gap: 20px;
    }
    .logo{
        font-size: 18px;
    }
    .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: 50px;
                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;
        }
        .hamburger{
            top: 30px;
        }
        .logo{
            font-size: 14px;
            margin-top: 27px;
        }
    }
/* Navbar End */



/* Hero Start */
.kyo-container h1{
    font-size: 48px;
    font-weight: bold;
    margin-top: 80px;
    max-width: 1200px;
    color: #fff;
    text-transform: uppercase;
    margin-left:auto;
    margin-right: auto;
}
.kyo-container p{
    margin-bottom: 40px;
    margin-top: 16px;
    font-size: 18px;
    color: #fff;
    text-transform: none;
    max-width: 1200px;
    margin-left:auto;
    margin-right: auto;
}
/* Hero Image Container */
.hero-img {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Ensures no default inline gaps */
}

/* Hero Image */
.hero-img img {
    display: block; /* Removes any inline spacing around the image */
    width: 100%; /* Ensures the image spans its container */
    margin: 0;
    padding: 0;
    border: 0;
}

/* Quote Container */
.kyo-quote-container {
    margin-left: auto;
    margin-right: auto;
    height: 201px;
    background-color: #CC3232;
    width: 1440px; /* Full-width background */
    padding: 60px 20px 20px; /* Top padding adds 40px spacing from the image */
    text-align: center;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Quote Text */
.kyo-quote {
    color: #fff;
    font-size: 40px; /* Bold and large text size for the quote */
    text-transform: uppercase;
    font-weight: bold;
    font-style: italic;
    margin: 0; /* Prevents extra spacing around the quote */
}

/* Paragraph under the Quote */
.kyo-quote-container p {
    color: #fff;
    font-size: 14px; /* Adjust text size as needed */
    margin: 10px auto 0; /* Adds space only above the paragraph */
    max-width: 800px; /* Ensures the paragraph is nicely centered and constrained */
}

.kyo-quote-container p{
    margin-top: 16px;
    max-width: 1200px;
    margin-left:80px;
    color: #fff;
    text-align: left;
}


/* Cards Section */

/* General Section Styling */
.content-section {
    width: 100%;
    box-sizing: border-box;
}

/* Container for Text and Image */
.content-container {
    display: flex;
    align-items: flex-start; /* Align content to the top */
    justify-content: space-between; /* Maintain spacing between text and image */
    height: 480px; /* Fixed container height */
    max-width: 1440px; /* Optional max width for content alignment */
    margin: 0 auto; /* Center container horizontally on the page */
    padding: 80px 120px; /* Inner padding: 80px top/bottom, 120px left/right */
    gap: 40px; /* Space between text and image */
    box-sizing: border-box; /* Ensure padding is within the height/width */
}

/* Background Colors */
.content-container.white-bg {
    background-color: #fff; /* White background for white sections */
}

.content-container.black-bg {
    background-color: #000; /* Black background */
}

.content-container.red-bg {
    background-color: #CC3232; /* Red background for the third section */
}

/* Text Content */
.text-content {
    flex: 1;
    color: #000; /* Default text color */
    text-align: left; /* Align text to the left */
    margin: 0; /* Removed extra margins */
}

.content-container.black-bg .text-content,
.content-container.red-bg .text-content {
    color: #fff; /* White text for dark/red backgrounds */
}

.text-content h2 {
    margin-top: 64px;
    font-size: 32px;
    font-weight: 600; /* Semibold */
    margin-bottom: 20px;
}

.text-content p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Image Content */
.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align image to the top */
}

.image-content img {
    width: 480px;
    height: 320px;
    object-fit: cover; /* Ensures image fits perfectly */
}



/* footer */

/* Footer Styles */
.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;
}


/* laptop */

@media (max-width: 1024px){
    .kyo-quote-container {
        margin-left: auto;
        margin-right: auto;
        width: 1024px;
    }
    .kyo-container h1{
        margin-left: 40px;
    }
    .kyo-container p{
        text-transform: none;
        margin-left: 40px;
        font-size: 16px;
    }
    .kyo-quote {
        font-size: 30px;
    }
    .kyo-quote-container p {
        font-size: 12px;
    }
    .image-content img {
        width: 400px;
        height: 280px;
        object-fit: cover;
    }
    .text-content h2 {
        font-size: 24px;
    }
    .text-content p {
        font-size: 12px;
    }
}

/* Tablet */


@media (max-width: 768px){
    .kyo-quote-container {
        margin-left: auto;
        margin-right: auto;
        width: 768px;
        height: 150px;
    }
    .kyo-container h1{
        margin-left: 40px;
        font-size: 32px;
    }
    .kyo-container p{
        text-transform: none;
        margin-left: 40px;
        font-size: 16px;
    }
    .kyo-quote {
        font-size: 24px;
    }
    .kyo-quote-container p {
        margin-top: 16px;
        max-width: 1200px;
        margin-left: 10px;
        color: #fff;
        text-align: left;
    }
    .image-content img {
        width: 313px;
        height: 208px;
        object-fit: cover;
    }
    .text-content h2 {
        margin-top: 24px;
        font-size: 14px;
    }
    .text-content p {
        font-size: 10px;
    }
    .content-container{
        height: 368px;
        padding: 80px 60px;
    }
}


/*iphone 12 pro*/

@media (max-width: 390px){
        .kyo-quote-container {
        max-width: 390px;
        height: 140px;
    }
    .text-content p{
        display: none;
    }
    .text-content h2{
        font-size: 18px;
    }
}



/* mobile large*/



@media (max-width: 425px) {
    .navbar{
        height: 60px;
    }
    .kyo-quote-container {
        padding: 45px 20px 20px;
        width: 100%;
        height: 140px;
    }
    .kyo-container h1{
        margin-left: 16px;
        font-size: 24px;
    }
    .kyo-container p{
        text-transform: none;
        margin-left: 16px;
        font-size: 16px;
    }
    .kyo-quote {
        font-size: 20px;
    }
    .kyo-quote-container p {
        margin-top: 16px;
        max-width: 425px;
        margin-left: 10px;
        color: #fff;
        text-align: left;
        font-size: 10px;
    }
    /* Container adjustments */
    .content-container {
        height: 424px;
        display: flex; /* Flexbox for layout */
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center-align items horizontally */
        justify-content: flex-start; /* Align items to the top */
        max-width: 425px; /* Restrict the width for smaller screens */
        margin: 0 auto; /* Center the container in the viewport */
        padding: 40px; /* Equal padding on all sides */
        gap: 16px; /* Space between items */
        box-sizing: border-box; /* Include padding in width/height calculations */
        background-color: #f5f5f5; /* Example background color */
    }

    /* Image adjustments */
    .image-content {
        order: 1; /* Ensure the image comes first */
        width: 100%; /* Make image responsive */
        max-width: 313px; /* Restrict maximum width */
    }

    .image-content img {
        width: 100%; /* Stretch image to container width */
        max-width: 313px; /* Maintain width limit */
        height: 208px; /* Fixed height for images */
        object-fit: cover; /* Ensure the image covers its area */
    }

    /* Text content adjustments */
    .text-content {
        order: 2; /* Ensure the text always comes after the image */
        /* text-align: center; Center-align text */
        width: 100%; /* Full width of the container */
    }
    .text-content p{
        display: none;
    }

    .text-content h2 {
        margin-top: 24px;
        font-size: 18px; /* Adjust heading size for mobile */
        margin-bottom: 16px; /* Add spacing below the heading */
    }

    .text-content p {
        font-size: 10px; /* Adjust paragraph font size */
        line-height: 1.5; /* Improve readability */
    }
    .footer{
        display: none;
    }
    .line{
        margin-top: 80px;
    }
    .copyright p{
        font-size: 10px;
    }
    .footer-insta{
        width:16px ;
        height: 16px;
    }
    .footer-tiktok{
        width:16px ;
        height: 16px;
    }
}






/* Mobile Medium */




@media (max-width: 375px) {
    .hamburger{
        top: 30px;
    }
    .logo{
        font-size: 14px;
        margin-top: 27px;
    }
    .kyo-quote-container {
        padding: 40px 20px 20px;
        width:100%;
        height: 131px;
    }
    .kyo-container h1{
        margin-left: 18px;
        font-size: 24px;
    }
    .kyo-container p{
        text-transform: none;
        margin-left: 14px;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .kyo-quote {
        font-size: 20px;
    }
    .kyo-quote-container p {
        color: #fff;
        text-align: left;
        font-size: 10px;
    }
    /* Image adjustments */
    .image-content {
        order: 1; /* Ensure the image comes first */
        width: 100%; /* Make image responsive */
        max-width: 313px; /* Restrict maximum width */
    }

    .image-content img {
        width: 100%; /* Stretch image to container width */
        max-width: 313px; /* Maintain width limit */
        height: 208px; /* Fixed height for images */
        object-fit: cover; /* Ensure the image covers its area */
    }

    /* Text content adjustments */
    .text-content {
        order: 2; /* Ensure the text always comes after the image */
        /* text-align: center; Center-align text */
        width: 100%; /* Full width of the container */
    }

    .text-content h2 {
        margin-top: 24px;
        font-size: 20px; /* Adjust heading size for mobile */
        margin-bottom: 16px; /* Add spacing below the heading */
    }

    .text-content p {
        font-size: 10px; /* Adjust paragraph font size */
        line-height: 1.5; /* Improve readability */
    }
    .footer{
        display: none;
    }
    .line{
        margin-top: 80px;
    }
    .copyright p{
        font-size: 10px;
    }
    .footer-insta{
        width:16px ;
        height: 16px;
    }
    .footer-tiktok{
        width:16px ;
        height: 16px;
    }
}

@media (max-width:375px){
    .text-content p{
        display: none;
    }
    .text-content h2{
        font-size: 18px;
    }
        /* Container adjustments */
        .content-container {
            height: 424px;
            display: flex; /* Flexbox for layout */
            flex-direction: column; /* Stack items vertically */
            align-items: center; /* Center-align items horizontally */
            justify-content: flex-start; /* Align items to the top */
            max-width: 375px; /* Restrict the width for smaller screens */
            margin: 0 auto; /* Center the container in the viewport */
            padding: 40px; /* Equal padding on all sides */
            gap: 16px; /* Space between items */
            box-sizing: border-box; /* Include padding in width/height calculations */
            background-color: #f5f5f5; /* Example background color */
        }
}

/* 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) {
    .floating-contact {
        font-size: 18px;
        padding: 14px 28px;
    }
}
@media (min-width: 1440px) {
    .floating-contact {
        font-size: 20px;
    }
}
@media (max-width: 1440px) {
    .kyo-container p{
        text-transform: none;
    }
}