html {
    scroll-behavior: smooth;
    scroll-padding-top: 50px;
}

body {
    font-family: "Spectral", serif;
    font-weight: 500;
}

.main {
    font-family: "Spectral", serif;
    font-weight: 500;
    margin-top: 70px;
    width: 100%;
    padding: 0;
}

.main-header {
    font-family: "Spectral", serif;
    font-weight: 500;
    background-color: #111;
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.navigation-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left-links a,
.right-links a {
    color: #dcdcdc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding: 10px;
    transition: color 0.3s ease;
}

.left-links a:hover,
.right-links a:hover {
    color: #6cbaff;
}

.left-links a::before,
.right-links a::before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #6cbaff;
    transition: all 0.5s ease;
}

.left-links a::after,
.right-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0%;
    height: 2px;
    background-color: #6cbaff;
    transition: all 0.5s ease;
}

.left-links a:hover::before,
.right-links a:hover::before {
    width: 50%;
}

.left-links a:hover::after,
.right-links a:hover::after {
    width: 50%;
    right: 0;
}

.brand-logo a {
    margin-left: -150px;
    display: inline-block;
    transition: all 0.5s ease;
}

.brand-logo svg {
    width: 500px;
    height: 50px;
}

.brand-logo svg text {
    font-size: 28px;
    font-weight: 400;
    fill: white;
    transition: fill 0.5s ease;
}

.brand-logo svg rect,
.brand-logo svg text {
    transition: fill 0.5s ease;
}

.brand-logo a:hover svg rect,
.brand-logo a:hover svg text {
    fill: #6cbaff;
}


.submenu {
    position: absolute;
    top: 100%;
    background-color: #222;
    width: 200px;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}


.submenu a {
    display: block;
    padding: 8px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
}

.submenu a:hover {
    background-color: #444;
}

.menu-item {
    position: relative;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-item:hover .submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: initial;
}

.right-links a {
    font-size: 16px;
}

.menu-item > .submenu > .menu-item > .submenu {
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.menu-item > .submenu > .menu-item:hover > .submenu {
    opacity: 1;
    transform: translateX(0);
}

.site-footer {
    font-family: "Spectral", serif;
    font-weight: 500;
    background-color: #111;
    color: #ffffff;
    padding: 20px 40px;
    line-height: 1.6;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 0px;
}

.social-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a.facebook:hover {
    color: #1877f2;
}

.social-links a.linkedin:hover {
    color: #1877f2;
}

.social-links a.instagram:hover {
    color: #e4405f;
}


.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 10px;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #6cbaff;
    text-decoration: none;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    font-size: 18px;
}

.footer-bottom a {
    color: #ffffff;
    font-size: 18px;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.brand-logo-footer {
    flex: 1;
}

.brand-logo-footer .logo-svg {
    width: 300px;
    height: auto;
}

.footer-bottom .contact-info {
    flex: 1;
    text-align: center;
    margin-bottom: 20px;
}

.footer-bottom .contact-info p {
    margin: 5px 0;
    font-size: 23px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}


.main-header {
  position: fixed;      
  top: 0;
  left: 0;
  right: 0;
  width: 100%;          
  box-sizing: border-box;
  padding: 0 20px;      
  z-index: 1000;
}


.brand-logo {
  margin-left: 0 !important;
}

*/
.main {
  margin-top: 70px;    
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
    position: absolute;
    left: 20px;
    top: 22px;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background-color: #111;
    z-index: 1500;
    transition: left 0.4s ease;
    overflow-y: auto;
    box-shadow: 2px 0 10px rgba(0,0,0,0.5);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-header {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    margin-bottom: 15px;
    text-align: center;
}

.sidebar-header .brand-logo svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item,
.mobile-menu-link {
    color: #dcdcdc;
    text-decoration: none;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #333;
}

.mobile-menu-item > a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.arrow {
    font-size: 12px;
    margin-left: 5px;
}

.mobile-submenu {
    display: none;
    padding-left: 15px;
    padding-top: 5px;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu a {
    display: block;
    padding: 8px 0;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
}

.mobile-submenu a:hover {
    color: #6cbaff;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .brand-logo {
        margin: 0 auto;
    }
    
    .brand-logo a {
        margin-left: 0;
    }
    
    .brand-logo svg {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .brand-logo svg {
        width: 250px;
    }
    
    .brand-logo svg text {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .brand-logo svg {
        width: 200px;
    }
    
    .brand-logo svg text {
        font-size: 24px;
    }
}
@media (max-width: 1024px) {
  .header-content {
    justify-content: center;      
    position: relative;           
  }
  .mobile-menu-btn {
    position: absolute;
    left: 20px;                   
  }
  .brand-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); 
    margin: 0;
  }
  .brand-logo svg {
    width: 200px;                
    height: auto;                 
  }
}
/* Mobile Footer Styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 20px 15px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0px;
        border-bottom: none;
        margin-bottom: 0px;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .social-links a {
        padding: 8px 12px;
        font-size: 14px;
    }
    
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;


        width: 100%;
    }
    
    .footer-menu a {
        padding: 8px 0;
        margin: 0;
        font-size: 15px;
        width: 100%;
        text-align: center;
    }
    
    .brand-logo-footer.mobile-only {
        display: block;

        width: 100%;
        text-align: center;
    }
    
    .brand-logo-footer.mobile-only .logo-svg {
        width: 200px;
        height: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding: 0 10px;
        text-align: center;
    }
    
    .brand-logo-footer.desktop-only {
        display: none;
    }s
    
    .contact-info p {
        font-size: 16px;
        line-height: 1.5;
        margin: 8px 0;
    }
}

/* Desktop-only elements */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
    
    .mobile-only {
        display: none;
    }
    
    /* Keep original desktop footer styles */
    .footer-top {
        border-bottom: 1px solid #ffffff;
    }
    
    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
  .footer-bottom .contact-info p {
    margin: 4px 0;
    font-size: 18px;
  }
}



@media only screen 
  and (min-device-width: 768px) 
  and (max-device-width: 1024px) 
  and (-webkit-min-device-pixel-ratio: 2) {
    

    .site-footer {
        padding: 20px 15px;
    }
    
    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
    
    .social-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .footer-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }
    
    .footer-menu a {
        padding: 10px 0;
        margin: 0;
        font-size: 18px;
        width: 100%;
        text-align: center;
    }
    
    .brand-logo-footer.mobile-only {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        padding: 0;
        text-align: center;
    }
    
    .brand-logo-footer.desktop-only {
        display: none;
    }
    
    .footer-bottom .contact-info p {
        font-size: 18px;
        line-height: 1.5;
        margin: 8px 0;
    }
    

    .brand-logo svg {
        width: 280px;
    }
    
    .brand-logo svg text {
        font-size: 24px;
    }
}


@media (max-width: 1024px) {
    .brand-logo svg {
        width: 300px;
    }
    
    
}


@media (max-width: 1024px) {
    .brand-logo svg .logo-line {
        display: none;
    }
}

