/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Reset & Global Styles */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #090909;
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    
}
/* =====================================================
   RESPONSIVE MOBILE NAVIGATION
   ===================================================== */

@media (max-width: 768px) {

    /* HEADER */
    .header {
        height: 70px;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 9999;
    }

    /* LOGO */
    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 55px;
        width: auto;
        max-width: 180px;
        object-fit: contain;
    }

    /* HAMBURGER */
    #menu-btn,
    .menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        font-size: 30px;
        line-height: 1;

        color: #fff;
        background: transparent;

        cursor: pointer;

        z-index: 10001;

        user-select: none;
    }

    /* DESKTOP GET QUOTE */
    .desktop-btn {
        display: none !important;
    }

    /* MOBILE NAVIGATION */
    .navbar {
        position: fixed;

        top: 70px;
        left: 0;

        width: 100%;
        max-height: calc(100vh - 70px);

        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 10px 20px 25px;

        background: rgba(9, 9, 9, 0.98);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        border-top: 1px solid rgba(255,255,255,.1);

        overflow-y: auto;

        /* CLOSED */
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;

        transition:
            transform 0.35s ease,
            opacity 0.35s ease,
            visibility 0.35s ease;

        z-index: 10000;
    }

    /* OPEN */
    .navbar.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    /* NAV LINKS */
    .navbar a {
        display: block;

        width: 100%;

        padding: 15px 10px;

        text-align: center;

        color: #fff;

        font-size: 16px;
        font-weight: 500;

        text-decoration: none;

        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* HOVER */
    .navbar a:hover {
        color: #F26522;
    }

    /* REMOVE DESKTOP UNDERLINE */
    .navbar a::after {
        display: none !important;
    }

    /* MOBILE GET QUOTE */
    .navbar .mobile-btn {
        display: block !important;

        width: 100%;

        margin-top: 15px;

        padding: 13px 20px;

        background: #F26522;

        color: #fff;

        border-radius: 30px;

        border: none;
    }

    .navbar .mobile-btn:hover {
        background: #fff;
        color: #111;
    }

    /* PREVENT HORIZONTAL SCROLL */
    html,
    body {
        overflow-x: hidden;
    }
}


/* =====================================================
   SMALL PHONES
   ===================================================== */

@media (max-width: 480px) {
    .hero h1{
        font-size:30px;
    }
    .header {
        height: 65px;
        padding: 0 12px;
    }

    .logo img {
        height: 50px;
        max-width: 160px;
    }

    #menu-btn,
    .menu-btn {
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .navbar {
        top: 65px;
        max-height: calc(100vh - 65px);
        padding: 8px 15px 20px;
    }

    .navbar a {
        padding: 14px 8px;
        font-size: 15px;
    }
}


/* =====================================================
   EXTRA SMALL PHONES
   ===================================================== */

@media (max-width: 360px) {

    .logo img {
        height: 46px;
        max-width: 145px;
    }

    #menu-btn,
    .menu-btn {
        font-size: 25px;
    }

    .navbar a {
        font-size: 14px;
        padding: 13px 5px;
    }
}

.logo img {
    height: 75px;
    width: auto;
    transition: .3s;
}

.logo img:hover {
    transform: scale(1.05);
}

.navbar {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    position: relative;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #F26522;
    transition: .3s;
}

.navbar a:hover {
    color: #F26522;
}

.navbar a:hover::after {
    width: 100%;
}

/* Header Buttons & Utility */
.quote-btn {
    padding: 12px 28px;
    background: #F26522;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.quote-btn:hover {
    background: white;
    color: #111;
}

.mobile-btn {
    display: none;
}

.menu-btn {
    display: none;
    font-size: 32px;
    cursor: pointer;
    color: white;
}


/* HERO */
.hero {
    min-height: 100vh;
    background: url("assets/hero.jpg") center center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 8% 60px;
    box-sizing: border-box;
}

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .72);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: #fff;
    text-align: left;
}

.welcome {
    padding: 0;
    color: #ffffff;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-size:auto;
    margin: 15px 0;
    line-height: 1.1;
    font-weight: 700;
    color: #F26522;
}

.hero h1 span, 
.brand-highlight {
    color: #F26522;
}

.hero h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 35px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.btn-primary {
    background: #F26522;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #fff;
    color: #111;
}

.btn-secondary {
    border: 2px solid #F26522;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

.btn-secondary:hover {
    background: #F26522;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-stats h2 {
    font-size: 42px;
    color: #F26522;
}

.hero-stats p {
    margin-top: 8px;
    font-size: 15px;
    color: #ccc;
}

/* ABOUT */
.about {
    padding: 100px 8%;
    background: #111;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 152, 0, .25);
    transition: .4s;
}

.about-image img:hover {
    transform: scale(1.03);
}

.section-title {
    color: #F26522;
    font-weight: 600;
    letter-spacing: 2px;
}

.about-content h2 {
    font-size: 42px;
    margin: 15px 0 25px;
    line-height: 1.3;
}

.about-content p {
    color: #ccc;
    line-height: 1.9;
    margin-bottom: 20px;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 35px 0;
}

.feature {
    background: #1b1b1b;
    padding: 18px;
    border-radius: 10px;
    border-left: 4px solid #F26522;
    transition: .3s;
}

.feature:hover {
    background: #222;
    transform: translateY(-5px);
}

.about-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #F26522;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: .3s;
}

.about-btn:hover {
    background: white;
    color: #111;
}

@media(max-width: 900px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-content {
        text-align: center;
    }
    .features {
        grid-template-columns: 1fr;
    }
}

/* SERVICES */
.services {
    padding: 100px 8%;
    background: #0b0b0b;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading span {
    color: #F26522;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-heading h2 {
    font-size: 42px;
    margin: 15px 0;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    color: #bbb;
    line-height: 1.8;
}

.service-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #171717;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    opacity: 0;
    transform: translateY(50px);
    transition: .6s, border-color .4s, box-shadow .4s, transform .4s;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #F26522;
    box-shadow: 0 15px 40px rgba(255, 152, 0, .25);
}

.icon {
    width: 80px;
    height: 80px;
    margin: auto;
    background: #F26522;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    color: #bbb;
    line-height: 1.8;
}

@media(max-width: 768px) {
    .services {
        padding: 70px 20px;
    }
    .section-heading h2 {
        font-size: 32px;
    }
    .service-card {
        padding: 30px;
    }
}

/* WHY CHOOSE US & COUNTERS */
.why-us {
    padding: 100px 8%;
    background: #111;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.why-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(255, 152, 0, .25);
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    transition: .3s;
}

.why-card:hover {
    transform: translateX(10px);
    border-left: 5px solid #F26522;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: #F26522;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    color: #fff;
    flex-shrink: 0;
}

.why-card h3 {
    margin-bottom: 10px;
}

.why-card p {
    color: #bbb;
    line-height: 1.8;
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 80px;
}

.counter-box {
    background: #1a1a1a;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    transition: .3s;
}

.counter-box:hover {
    background: #F26522;
}

.counter-box:hover h2, .counter-box:hover p {
    color: #fff;
}

.counter-box h2 {
    font-size: 48px;
    color: #F26522;
    margin-bottom: 10px;
}

.counter-box p {
    color: #ccc;
}

@media(max-width: 900px) {
    .why-container {
        grid-template-columns: 1fr;
    }
}

/* PROJECTS & LIGHTBOX */
.projects {
    padding: 100px 8%;
    background: #0d0d0d;
}

.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0;
}

.project-filter button {
    padding: 12px 28px;
    background: #222;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 40px;
    transition: .3s;
    font-size: 16px;
}

.project-filter button.active, .project-filter button:hover {
    background: #F26522;
}

.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-info {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 25px;
    background: rgba(0, 0, 0, .75);
    transition: .4s;
}

.project-card:hover .project-info {
    bottom: 0;
}

.project-info h3 {
    margin-bottom: 8px;
    color: #F26522;
}

.project-info p {
    color: #ddd;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .95);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lightbox img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 15px;
}

.close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}

@media(max-width: 768px) {
    .project-gallery {
        grid-template-columns: 1fr;
    }
    .project-filter {
        gap: 10px;
    }
    .project-filter button {
        font-size: 14px;
        padding: 10px 20px;
    }
}

/* INSTAGRAM */
.instagram {
    padding: 100px 8%;
    background: #111;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.insta-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    display: block;
}

.insta-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: .5s;
}

.insta-card:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .75);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: .4s;
}

.insta-card:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 50px;
    color: #F26522;
    margin-bottom: 20px;
}

.overlay h3 {
    color: #fff;
    font-size: 24px;
}

.instagram-btn {
    text-align: center;
    margin-top: 60px;
}

.instagram-btn a {
    padding: 16px 40px;
    background: #F26522;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: .3s;
}

.instagram-btn a:hover {
    background: #fff;
    color: #111;
}

@media(max-width: 768px) {
    .instagram {
        padding: 70px 20px;
    }
    .instagram-grid {
        grid-template-columns: 1fr;
    }
}

/* VIDEO GALLERY */
.video-gallery {
    padding: 100px 8%;
    background: #0c0c0c;
}

.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.video-card {
    background: #181818;
    border-radius: 20px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid #222;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 152, 0, .25);
    border-color: #F26522;
}

.video-frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-content {
    padding: 25px;
}

.video-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.video-content p {
    color: #bbb;
    line-height: 1.8;
}

.youtube-btn {
    margin-top: 60px;
    text-align: center;
}

.youtube-btn a {
    display: inline-block;
    padding: 16px 40px;
    background: #F26522;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.youtube-btn a:hover {
    background: #fff;
    color: #111;
}

@media(max-width: 768px) {
    .video-gallery {
        padding: 70px 20px;
    }
    .video-container {
        grid-template-columns: 1fr;
    }
}

/* TESTIMONIALS SLIDER */
.testimonials {
    padding: 100px 8%;
    background: #111;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    margin-top: 60px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: slide 18s linear infinite;
}

.testimonial-card {
    min-width: 350px;
    background: #1b1b1b;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #222;
    transition: .3s;
}

.testimonial-card:hover {
    border-color: #F26522;
    transform: translateY(-8px);
}

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F26522;
    margin-bottom: 20px;
}

.testimonial-card h3 {
    margin-bottom: 5px;
}

.testimonial-card span {
    color: #999;
    font-size: 15px;
}

.stars {
    color: #F26522;
    font-size: 22px;
    margin: 18px 0;
}

.testimonial-card p {
    color: #ccc;
    line-height: 1.8;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media(max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
    }
}

/* CONTACT SECTION & FORM */
.contact {
    padding: 100px 8%;
    background: #0b0b0b;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-box {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #181818;
    padding: 25px;
    border-radius: 15px;
    transition: .3s;
}

.info-box:hover {
    border-left: 5px solid #F26522;
    transform: translateX(10px);
}

.info-box i {
    font-size: 30px;
    color: #F26522;
}

.info-box h3 {
    margin-bottom: 5px;
}

.info-box a, .info-box p {
    color: #ccc;
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #1b1b1b;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 20px;
    transition: .3s;
}

.social-links a:hover {
    background: #F26522;
}

.contact-form {
    background: #181818;
    padding: 40px;
    border-radius: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input, .contact-form textarea, .contact-form select {
    padding: 16px;
    background: #111;
    border: 1px solid #333;
    border-radius: 10px;
    color: white;
    font-size: 16px;
}

.contact-form button {
    padding: 16px;
    background: #F26522;
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
}

.contact-form button:hover {
    background: white;
    color: #111;
}

.map {
    margin-top: 70px;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 20px;
}

@media(max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact {
        padding: 70px 20px;
    }
    .map iframe {
        height: 300px;
    }
}

/* FOOTER & ACCENTS */
.footer {
    background: #090909;
    padding: 80px 8% 20px;
    border-top: 1px solid #222;
}
.footer a{
    color:orange;
    text-decoration:none;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-box h2 {
    color: #F26522;
    margin-bottom: 10px;
}

.footer-box h3 {
    margin-bottom: 20px;
    color: #fff;
}

.footer-box p {
    color: #bbb;
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-box ul {
    list-style: none;
}

.footer-box ul li {
    margin-bottom: 12px;
    color: #bbb;
}

.footer-box ul li a {
    text-decoration: none;
    color: #bbb;
    transition: .3s;
}

.footer-box ul li a:hover {
    color: #F26522;
    padding-left: 8px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: .3s;
}

.footer-social a:hover {
    background: #F26522;
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    color: #888;
}

/* Floating Widgets */
.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .4);
    transition: .3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}
#topBtn {
    position: fixed;
    bottom: 115px;
    right: 28px;
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #F26522;
    color: white;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    transition: .3s;
    display: flex;         
    align-items: center;     
    justify-content: center; 
}

#topBtn:hover {
    background: white;
    color: #111;
}

@media(max-width: 768px) {
    .footer {
        padding: 60px 20px 20px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }
}

/* ================= PRELOADER & REVEAL ================= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #090909;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity .8s ease;
}

.loader {
    text-align: center;
}

.loader img {
    width: 140px;
    margin-bottom: 20px;
    animation: rotateLogo 3s linear infinite;
}

.loader h2 {
    font-size: 34px;
    color: #F26522;
    margin-bottom: 10px;
}

.loader p {
    color: #ccc;
    margin-bottom: 35px;
}

.loading-bar {
    width: 260px;
    height: 5px;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    margin: auto;
}

.loading-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #F26522;
    animation: loading 2s ease forwards;
}

@keyframes loading {
    100% { width: 100%; }
}

@keyframes rotateLogo {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}