body,
html {
    font-family: "DM Sans", sans-serif;
    font-size: 18px;
    scroll-behavior: smooth;
}

header {
    z-index: 9;
    position: relative;
}

/* LOADİNG */
#loading-screen {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
}

.loading-logo {
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
    display: block;
    margin: 20% auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* LOADİNG */



.header-menu a {
    font-weight: 600;
}

.form-control:focus {
    box-shadow: none;
}

ul li {
    list-style-type: none;
    margin: 0;
    padding: 0 !important;
}

/* BANNER */
.hero {
    background: url('../images/banner.jpg') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-content .btn {
    color: #fff;
    font-weight: 600;
    padding: 13px 25px;
}

.hero-content .btn:hover {
    background-color: transparent;
    transition: 0.3s;
}

.form-box {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.form-box .form-control {
    font-size: 1rem;
}

.form-box input.form-control {
    font-size: 1rem;
    font-weight: 500;
    height: 50px;
}

.form-box .form-control::placeholder {
    color: #999;
}

/* BANNER */

/*  HAKKIMIZDA*/
#about-us {
    margin-top: 100px;
    margin-bottom: 100px;
}

/*  HAKKIMIZDA*/


/*  SSS*/
.accordion-button {
    font-weight: bold;
}

/*  SSS*/


/* MENÜ */
#mobileMenu {
    display: flex
}

#menuToggle {
    display: none;
}

.breadcrumb-banner {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.breadcrumb-banner .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

.page-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.breadcrumb-nav {
    font-size: 14px;
    color: #666;
}

.breadcrumb-nav a {
    text-decoration: none;
    color: #999;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.separator {
    margin: 0 5px;
    color: #999;
}


.royal-warrant-logo {
    max-width: 250px;
    transition: transform 0.3s ease;
}

.royal-warrant-logo:hover {
    transform: scale(1.05);
}

.breadcrumb-nav .current {
    color: #333;
    font-weight: 500;
}

@media (max-width: 992px) {
    .contact {
        display: none !important;
    }

    #menuToggle {
        display: block;
        margin-left: auto;
    }

    #mobileMenu {
        display: none;
        flex-direction: column;
        align-items: flex-start !important;
        width: 100%;
        margin-top: 1rem;
    }

    #mobileMenu.active {
        display: flex;
    }
}

/* MENÜ */