@font-face {
    font-family: "Gallient Regular";
    src: url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.eot");
    src: url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/ecce6fb92d2957e8e04867dc281f666b.svg#Gallient Regular")format("svg");
}

/* @font-face {
    font-family: "Microsoft YaHei";
    src: url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.eot");
    src: url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.eot?#iefix")format("embedded-opentype"),
        url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.woff2")format("woff2"),
        url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.woff")format("woff"),
        url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.ttf")format("truetype"),
        url("https://db.onlinewebfonts.com/t/e63653407669814f5b0eb9bbdc175f77.svg#Microsoft YaHei")format("svg");
}  */
* {
    padding: 0;
    margin: 0;
}

:root {
    --font1: "gallient regular", serif;
    --font2: "Microsoft YaHei";
    --brown-color: #51372A;
    --black-color: black;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
}

.brown {
    color: var(--brown-color);
}

.global-section {
    width: 88%;
    margin: auto;
    background-color: #fff;
    position: relative;
}

.heading-font1 {
    font-size: 60px;
    font-family: var(--font1);
    color: var(--brown-color);
    font-weight: 400;
}

.heading-font2 {
    font-size: 60px;
    font-family: var(--font1);
    color: var(--black-color);
    font-weight: 400;
}

@media screen and (max-width:720px) {

    .heading-font2,
    .heading-font1 {
        font-size: 20px;
        text-align: center;
    }
}

.para {
    font-size: 20px;
    font-family: var(--font2);
    font-weight: 400;
}

@media screen and (min-width:1024px) and (max-width:1280px) {
    .heading-font1 {
        font-size: 45px;
        font-family: var(--font1);
        color: var(--brown-color);
        font-weight: 400;
    }

    .heading-font2 {
        font-size: 45px;
        font-family: var(--font1);
        color: var(--black-color);
        font-weight: 400;
    }

    .para {
        font-size: 20px;
        font-family: var(--font2);
        font-weight: 400;
    }

}

/* General Styles for Navbar */
.navbar {
    background-color: #000000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    /* Adjust for toggler alignment */
    padding: 1%;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    position: fixed;
    top: 0;
    width: 86%;
    margin: auto;
    /* Full width for the navbar */
    z-index: 1000;
}

.logo {
    color: #ffffff;
    font-size: 32px;
    font-family: "Microsoft YaHei";
    font-weight: 400;
}

.logo-container {
    width: auto;
    height: auto;
}

.logo-icon {
    width: 100%;
    height: 60px;
}

.nav-item {
    font-family: "Microsoft YaHei";
    font-size: 17px;
    font-weight: 400;
    color: #ffffff;
    list-style-type: none;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
}


.ul-align {
    display: flex;
    gap: 50px;
}

.icons-align {
    display: flex;
    gap: 5px;
}

.icon-size {
    padding-top: 2%;
    height: 40px;
}

/* Toggler Button Styles */
/* Toggler Button Styles */
.toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    z-index: 1001;
}

.toggler-icon {
    display: block;
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* Transition for the menu */
.ul-align {
    transition: max-height 0.3s ease-out;
}

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: white;
    text-underline-offset: 5px;
    /* Optional: Adjusts the space between text and underline */
}

.padding-y {
    padding-left: 40px !important;
}

/* smaller laptop screens */
@media screen and (min-width:1020px) and (max-width:1280px) {
    .navbar {
        width: 84%;
        background-color: #000000;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        /* Adjust for toggler alignment */
        padding: 2%;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
        position: fixed;
        top: 0;
        z-index: 1000;
    }
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .navbar {
        border-radius: 0;
        width: 92%;
        padding: 10px 20px;
        justify-content: space-between;
    }

    .global-section {
        width: 100%;
        background-color: #fff;
        position: relative;
    }

    .logo-icon {
        width: 100%;
        height: 40px;
    }

    .ul-align {
        display: none;
        /* Initially hidden */
        width: 30%;
        margin-top: 6px;
        margin-left: 67%;
        background-color: #000000;
        position: absolute;
        top: 60px;
        left: 0;
        border-radius: 10px;
        padding: 10px 0;
        z-index: 999;
        /* Ensure it overlays other content */
    }

    .ul-align.active {
        display: flex;
        /* Display when active */
    }

    .nav-item {
        text-align: left;
        padding-left: 20px;
        margin: 10px 0;
        font-size: 14px;
    }

    .icons-align {
        display: none;
        /* Hide social icons on mobile */
    }

    .toggler {
        display: block;
        /* Show toggler only on mobile */
        position: relative;
        cursor: pointer;
    }

    .toggler-icon {
        width: 25px;
        height: 3px;
        background: #ffffff;
        margin: 5px 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* When the toggler is clicked, and the menu is open */
    .toggler.open .toggler-icon:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .toggler.open .toggler-icon:nth-child(2) {
        opacity: 0;
    }

    .toggler.open .toggler-icon:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .ul-align {
        display: none;
        /* Initially hide the menu */
        width: 30%;
        margin-top: 6px;
        margin-left: 67%;
        background-color: #000000;
        position: absolute;
        top: 60px;
        left: 0;
        border-radius: 10px;
        padding: 10px 0;
        z-index: 999;
    }

    .ul-align.active {
        display: block;
        /* Display menu when active */
    }
}


/* ********** footer */
footer {
    padding: 0 5% 1% 7%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-text {
    font-size: 16px;
    font-family: var(--font2);
    font-weight: 400;
}

@media screen and (max-width:550px) {
    .footer-text {
        font-size: 12px;
    }
}

.footer-blocks {
    height: 100px;
    padding-left: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-left: 2px solid var(--brown-color);
}

.footer-blocks1 {
    width: 22%;
}

.footer-blocks2 {
    width: 34%;
}

.footer-logo-block {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

.footer-logo {
    width: 100%;
    height: auto;
}

.footer-icon-block {
    width: 40px;
}

.footer-icon-block i {
    font-size: 16px;
}

.licience {
    border-top: 1px solid black;
    padding: 5px;
}

.licience-text {
    text-align: center;
    font-size: 16px;
    font-family: var(--font2);
    font-weight: 400;
}

@media screen and (min-width:1020px) and (max-width:1280px) {
    .footer-text {
        font-size: 20px;
        font-family: var(--font2);
        font-weight: 400;
    }

}

/* large */
@media screen and (min-width: 1600px) {
    footer {
        padding: 0 7% 3% 8%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer-text {
        font-size: 24px;
        /* Increased font size for larger screens */
    }

    .footer-blocks {
        height: 100px;
        padding-left: 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
        border-left: 2px solid var(--brown-color);
    }

    .footer-blocks1 {
        width: 22%;
    }

    .footer-blocks2 {
        width: 34%;
    }

    .footer-logo-block {
        width: 80%;
        margin: auto;
        overflow: hidden;
    }

    .footer-logo {
        width: 100%;
        height: auto;
    }

    .footer-icon-block {
        width: 40px;
    }

    .footer-icon-block i {
        font-size: 35px;
        padding-right: 15px;
    }

    .licience {
        border-top: 1px solid black;
        padding: 5px;
    }

    .licience-text {
        text-align: center;
        font-size: 20px;
        font-family: var(--font2);
        font-weight: 400;
    }

}


/* mobile view  */
@media screen and (max-width: 550px) {
    footer {
        flex-direction: column;
        align-items: center;
        /* padding: 10px; */
    }

    .footer-blocks {
        width: 100%;
        height: auto;
        padding-left: 0;
        border-left: none;
        /* border-bottom: 1px solid var(--brown-color); */
        padding-bottom: 5px;
        margin-bottom: 5px;
    }

    .footer-blocks:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }

    .footer-text {
        font-size: 14px;
        text-align: center;
        padding: 0;
    }

    .footer-logo-block {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        width: 30%;
        display: none;
        /* Adjust as needed */
    }

    .footer-icon-block {
        width: 30px;
    }

    .footer-icon-block i {
        font-size: 20px !important;
    }

    .footer-blocks1,
    .footer-blocks2 {
        width: 95%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .licience-text {
        text-align: center;
        font-size: 14px !important;
    }
}