/* General */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: linear-gradient(to right, #001733, #003366, #001a33, #0033cc);
    color: #f0f0f0;
}

a {
    text-decoration: none;
    color: inherit;
}


/* Container */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* Header */

header {
    background-color: rgba(0, 31, 63, 0.9);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 60px;
    height: auto;
    border-radius: 10px;
}

header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

header nav ul li a {
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

header nav ul li a:hover,
header nav ul li a.active {
    background-color: #cc8400;
    color: #fff;
}


/* Hamburger Menu */

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
}


/* Hero */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .quote-btn {
    background-color: #cc8400;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
}

.hero .quote-btn:hover {
    background-color: #ffa533;
}


/* Services */

.services {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.35);
}

.services h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.service-card i {
    margin-bottom: 15px;
    color: #cc8400;
}

.service-card h3 {
    margin-bottom: 10px;
}


/* Why Choose Us */

.why-choose-us {
    padding: 60px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.why-choose-us h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.choose-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.choose-card {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.choose-card i {
    margin-bottom: 15px;
    color: #cc8400;
}


/* Gallery */

.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery h2 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.slider {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.slides img {
    width: 100%;
    display: none;
    border-radius: 10px;
}


/* Arrows */

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 10px;
    margin-top: -22px;
    color: #cc8400;
    font-weight: bold;
    font-size: 30px;
    border-radius: 50%;
    user-select: none;
    transition: background 0.3s;
}

.prev:hover,
.next:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.prev {
    left: -50px;
}

.next {
    right: -50px;
}


/* Footer */

footer {
    background-color: rgba(0, 31, 63, 0.9);
    padding: 30px 20px;
    text-align: center;
    color: #f0f0f0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-left p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-right .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-right .social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.footer-right .social-icons a:hover {
    transform: scale(1.2);
}

.footer-right .footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-right .footer-links li {
    list-style: none;
}


/* Responsive */

@media(max-width: 768px) {
    header nav ul {
        display: none;
        flex-direction: column;
        background: rgba(0, 31, 63, 0.95);
        position: absolute;
        top: 70px;
        right: 20px;
        border-radius: 10px;
        padding: 10px;
    }
    header nav ul.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .service-cards,
    .choose-cards {
        flex-direction: column;
        align-items: center;
    }
    .prev {
        left: 10px;
    }
    .next {
        right: 10px;
    }
}


/* Body & General */

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background: linear-gradient(135deg, #001733, #003366, #ff9900, #000a1f, #ffd633);
    color: #f0f0f0;
}


/* Hero Section */

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    flex-direction: column;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    max-width: 700px;
}


/* Quote Button */

.hero .quote-btn {
    background-color: #cc8400;
    color: #fff;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    transition: background 0.3s;
    margin-top: 15px;
}

.hero .quote-btn:hover {
    background-color: #ffa533;
}


/* Services */

.service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.service-card {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 25px;
    border-radius: 15px;
    width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card p {
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: #ffa533;
    /* link color */
    font-weight: bold;
    margin-top: auto;
    /* pushes it to bottom */
}

.service-card .learn-more:hover {
    text-decoration: underline;
}


/* Why Choose Us */

.choose-card p {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}


/* Adjust gaps */

.service-cards,
.choose-cards {
    gap: 40px;
}


/* Hero Section - center align text */

.hero .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Add spacing between sections */

.services h2,
.why-choose-us h2 {
    margin-bottom: 20px;
}


/* Space between description and cards */

.services p,
.why-choose-us p {
    margin-bottom: 30px;
}


/* Additional spacing before cards */

.service-cards,
.choose-cards {
    margin-top: 20px;
    /* space from description */
    gap: 40px;
}


/* Keep links aligned at bottom of service cards */

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* Why Choose Us - paragraph spacing */

.why-choose-us p {
    max-width: 800px;
    margin: 0 auto 30px auto;
    /* centers paragraph and adds bottom spacing */
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}


/* Cards spacing */

.choose-cards {
    margin-top: 20px;
    /* spacing from paragraph */
    gap: 40px;
}


/* General */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #f0f0f0;
}


/* Header */

header.glass-header {
    background-color: rgba(0, 31, 63, 0.95);
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 60px;
    height: auto;
    border-radius: 10px;
}

header nav.nav-links {
    display: flex;
    gap: 20px;
}

header nav.nav-links a {
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

header nav.nav-links a:hover,
header nav.nav-links a.active {
    background-color: #cc8400;
    color: #fff;
}


/* Preloader */

#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#preloader .spinner {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid #cc8400;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
}


/* Services Section */

.services-container {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.services-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #f0f0f0;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}


/* Service Box */

.service-box {
    background: rgba(0, 0, 0, 0.35);
    /* dimmed glass effect */
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.service-box i.service-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #b58c00;
}

.service-box h3 {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.service-box p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.98rem;
}

.service-box .learn-more {
    color: #e6c84f;
    font-weight: 700;
    margin-top: auto;
    align-self: center;
    transition: color 0.3s;
}

.service-box .learn-more:hover {
    color: #d9a829;
}


/* Footer */

footer.glass-footer {
    background-color: rgba(0, 31, 63, 0.95);
    padding: 30px 20px;
    text-align: center;
    color: #f0f0f0;
}

footer .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

footer .footer-section p {
    margin: 0;
    font-size: 0.9rem;
}

footer .social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

footer .social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

footer .social-icons a:hover {
    transform: scale(1.2);
}

footer .quick-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

footer .quick-links li {
    list-style: none;
}

footer .quick-links li a {
    color: #f0f0f0;
    transition: color 0.3s;
}

footer .quick-links li a:hover {
    color: #cc8400;
}


/* Responsive */

@media(max-width: 768px) {
    header nav.nav-links {
        flex-direction: column;
        gap: 10px;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
}

header nav.nav-links {
    display: flex;
}

@media(max-width: 768px) {
    header nav.nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 31, 63, 0.95);
        position: absolute;
        top: 70px;
        right: 20px;
        border-radius: 10px;
        padding: 15px;
        gap: 10px;
    }
    header nav.nav-links.show {
        display: flex;
    }
    .hamburger {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #fff;
    }
}


/* About Page Styles */


/* Container for About page */

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Glass box for content */

.about-container .glass-box {
    background: rgba(255, 255, 255, 0.1);
    /* slightly transparent glass effect */
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    color: #fff;
    /* ensures text is visible on dark backgrounds */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    width: 100%;
}


/* Headings */

.about-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 25px;
    text-align: center;
    color: #f8f8f8;
}

.about-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #f0f0f0;
}


/* Paragraphs */

.about-container p {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #eaeaea;
}


/* Learn More / Contact Button */

.about-container .learn-more-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: #0077cc;
    /* blue accent, change to match site theme */
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-container .learn-more-btn:hover {
    background: #005fa3;
    transform: translateY(-2px);
}


/* Responsive Adjustments */

@media (max-width: 1024px) {
    .about-container {
        padding: 50px 15px;
    }
    .about-container .glass-box {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .about-container h1 {
        font-size: 2.2rem;
    }
    .about-container h2 {
        font-size: 1.6rem;
    }
    .about-container p {
        font-size: 1rem;
    }
    .about-container .learn-more-btn {
        width: 100%;
        text-align: center;
    }
}


/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}


/* Nav Links */

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}


/* Hamburger */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}


/* Active Menu */

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
}

.nav-links.active li {
    margin: 15px 0;
}


/* Hamburger Animation */

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Responsive */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}


/* -----------------------------
   CONTACT PAGE STYLES
----------------------------- */

.contact-section {
    max-width: 900px;
    margin: 5rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00bfff;
    font-family: 'Montserrat', sans-serif;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-section input,
.contact-section textarea {
    padding: 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    outline: none;
    font-family: 'Roboto', sans-serif;
}

.contact-section input::placeholder,
.contact-section textarea::placeholder {
    color: white;
    opacity: 1;
}

.contact-section textarea {
    resize: vertical;
    height: 150px;
}

.contact-section button {
    padding: 1rem;
    font-size: 1rem;
    background-color: #00bfff;
    border: none;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-section button:hover {
    background-color: #009fd4;
}

.contact-alternatives {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-alternatives a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    background-color: #25D366;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-alternatives a:hover {
    background-color: #1ebe5d;
}

.contact-alternatives a i {
    margin-right: 8px;
    font-size: 1.2rem;
}


/* Map container if you include iframe */

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 10px;
}


/* Glass effect for header */

.glass-header {
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 1rem 0;
}


/* Responsive adjustments */

@media screen and (max-width: 768px) {
    .contact-section {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    .contact-section h2 {
        font-size: 2rem;
    }
    .contact-section button {
        font-size: 0.95rem;
        padding: 0.8rem;
    }
}

@media screen and (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.8rem;
    }
    .contact-alternatives {
        flex-direction: column;
    }
}


/* -----------------------------
   HAMBURGER NAVIGATION STYLES
----------------------------- */


/* Nav container */

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: #00bfff;
}


/* Hamburger button */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.4s ease;
}


/* Hamburger animation when open */

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Mobile menu */

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        /* below header */
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        flex-direction: column;
        gap: 15px;
        padding: 1.5rem 2rem;
        border-radius: 15px;
        display: none;
        width: 200px;
        z-index: 999;
    }
    .nav-links.active {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}


/* Glass box for the body content */

.glass-box {
    background: rgba(255, 255, 255, 0.05);
    /* transparent glass */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 1000px;
    margin: 50px auto;
    color: #fff;
}


/* Headings and paragraphs spacing */

.glass-box h2 {
    margin-bottom: 20px;
}

.glass-box p {
    margin-bottom: 25px;
    line-height: 1.6;
}


/* What We Offer section */

.glass-box h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.glass-box ul {
    list-style: disc;
    padding-left: 25px;
    /* bullets closer */
    text-align: left;
    /* left aligned content */
    margin-bottom: 25px;
}

.glass-box li {
    margin-bottom: 10px;
}


/* Back to services link */

.back-to-services a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #00bfff;
    font-weight: 500;
}


/* Quote button style */

.quote-btn {
    display: inline-block;
    background-color: #00bfff;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    margin-right: 15px;
    transition: transform 0.3s ease;
}

.quote-btn:hover {
    transform: scale(1.05);
    background-color: #009fd4;
}


/* If you want Learn More button next to Quote button */

.learn-btn {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin-top: 20px;
    transition: transform 0.3s ease;
}

.learn-btn:hover {
    transform: scale(1.05);
    background-color: #005bb5;
}


/* Ensure buttons are side by side */

.button-group {
    margin-top: 20px;
}

.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), linear-gradient(to bottom right, rgba(255, 165, 0, 0.2), rgba(255, 140, 0, 0.2));
    z-index: -1;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00000080;
    /* optional dim overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 80px;
    height: 80px;
}

.arc {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 6px solid transparent;
    border-top-color: #ff4500;
    /* Arc color */
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.arc1 {
    border-top-color: #ff4500;
    animation-delay: 0s;
}

.arc2 {
    border-top-color: #1e90ff;
    animation-delay: 0.3s;
}

.arc3 {
    border-top-color: #32cd32;
    animation-delay: 0.6s;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/* === HEADER STACKED FIX === */
header, nav, .header, .navbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 15px !important;
}

/* Centered logo + name stacked */
header .logo, nav .logo, .header .logo, .navbar .logo {
  display: flex !important;
  flex-direction: column !important;   /* stack logo + text */
  align-items: center !important;      /* center align */
  text-align: center !important;
  flex: 1 !important;
}

header .logo img {
  max-height: 45px !important;
  width: auto !important;
  margin-bottom: 5px !important;
}

header .logo span {
  font-size: 16px !important;          /* make text readable */
  font-weight: 600 !important;
  color: #fff !important;
  line-height: 1.2em !important;
  word-wrap: break-word !important;    /* allow wrapping */
  max-width: 100% !important;
}

/* Hamburger bigger & fixed to right */
.hamburger {
  font-size: 30px !important;          /* larger size */
  cursor: pointer !important;
  color: #fff !important;
  flex: 0 0 auto !important;
  margin-left: auto !important;
}
