* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: black;
    color: white;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}

.logo {
    color: gold;
    font-weight: bold;
    z-index: 1100;
}

/* HAMBURGER BUTTON */
.menu-toggle {
    width: 35px;
    height: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

/* LINES */
.menu-toggle span {
    display: block;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, gold, #d4af37);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* ANIMATION TO X */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
#navMenu {
    position: fixed;
    top: 0;
    left: -260px;
    width: 260px;
    height: 100%;
    background: #000;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    transition: 0.4s ease;
}

#navMenu a {
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,215,0,0.2);
    transition: 0.3s;
}

#navMenu a:hover {
    background: rgba(255,215,0,0.1);
    color: gold;
}

#navMenu.active {
    left: 0;
}

/* OVERLAY */
#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
}

#overlay.active {
    display: block;
}
/* HERO */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    text-align: center;
}

.hero-logo {
    width: 368px;
}

/* BUTTONS */
button {
    padding: 10px 20px;
    background: gold;
    border: none;
    cursor: pointer;
}

.outline {
    background: transparent;
    border: 1px solid gold;
    color: gold;
}

/* MEDIA QUERY FOR MOBILE */
@media(max-width: 768px){
    .menu-toggle {
        display: flex;
    }

    #navMenu {
        position: fixed;
        top: 0;
        left: -250px;
        flex-direction: column;
        background: black;
        width: 250px;
        height: 100%;
        padding-top: 80px;
        transition: left 0.3s ease;
        z-index: 1000;
    }

    #navMenu.active {
        left: 0;
    }

    #navMenu a {
        transform: translateX(-20px);
        opacity: 0;
        transition: transform 0.3s, opacity 0.3s;
    }

    #navMenu.active a {
        transform: translateX(0);
        opacity: 1;
    }
}
/* PORTFOLIO / OUR WORK */
#portfolio {
    padding: 80px 20px;
    background: #000; /* solid black background */
    text-align: center;
}

#portfolio h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 40px;
}

#portfolio .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

#portfolio .gallery video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

#portfolio .gallery video:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

/* MOBILE */
@media(max-width: 600px) {
    #portfolio h2 {
        font-size: 28px;
    }

    #portfolio .gallery video {
        height: 180px;
    }
}
/* ========================= */
/* EXTENDED INFO SECTION */
/* ========================= */
#about-details {
    padding: 80px 20px;
    background: #000;
    text-align: center;
}

#about-details h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 40px;
}

/* GRID LAYOUT */
.info-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* BOX STYLE */
.info-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,215,0,0.3);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    text-align: left;
    transition: 0.3s;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

.info-box h3 {
    color: gold;
    margin-bottom: 15px;
}

.info-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #ddd;
}

/* ========================= */
/* CLIENTS */
/* ========================= */
#clients {
    padding: 80px 20px;
    text-align: center;
    background: #111;
}

#clients h2 {
    color: gold;
    margin-bottom: 30px;
}

.client-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.client-list span {
    border: 1px solid gold;
    padding: 10px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* ========================= */
/* CONTACT DETAILS */
/* ========================= */
#contact-details {
    padding: 80px 20px;
    text-align: center;
    background: #000;
}

#contact-details h2 {
    color: gold;
    margin-bottom: 20px;
}

.contact-box {
    margin-top: 20px;
    font-size: 15px;
    color: #ddd;
}
/* SERVICES SECTION */
/* CARDS */
.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* INDIVIDUAL CARD */
.card {
    background: #111;
    padding: 20px;
    border: 1px solid gold;
    border-radius: 10px;
    width: 300px;
    text-align: center;
    transition: 0.3s;
}
@media(max-width:768px){
    .cards {
        flex-direction: column;
        align-items: center;   /* THIS CENTERS THEM */
    }

    .card {
        width: 90%;           /* makes it responsive */
        max-width: 350px;
    }
}
/* HOVER EFFECT */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255,215,0,0.4);
}
#services {
    padding: 80px 20px;
    background: #111; /* slightly lighter than portfolio for contrast */
    text-align: center;
}

#services h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 40px;
}

#services .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

#services .card {
    background: #222;
    color: white;
    padding: 30px 20px;
    border: 2px solid gold;
    border-radius: 10px;
    width: 220px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

#services .card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

/* MOBILE */
@media(max-width: 768px) {
    #services .cards {
        flex-direction: column;
        gap: 15px;
    }
}
/* CONTACT SECTION */
#contact {
    background: #111; /* dark background for contrast */
    padding: 80px 20px;
    text-align: center;
}

#contact h2 {
    font-size: 36px;
    color: gold;
    margin-bottom: 15px;
}

#contact p {
    color: #ddd;
    margin-bottom: 40px;
    font-size: 16px;
}

#contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#contact input,
#contact textarea {
    padding: 15px;
    border-radius: 5px;
    border: 1px solid gold;
    background: #222;
    color: white;
    font-size: 16px;
    resize: none;
}

#contact input::placeholder,
#contact textarea::placeholder {
    color: #ccc;
}

#contact button {
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: gold;
    color: black;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

#contact button:hover {
    background: #e6c200;
    transform: scale(1.05);
}

/* RESPONSIVE */
@media(max-width: 600px) {
    #contact h2 {
        font-size: 28px;
    }

    #contact input,
    #contact textarea {
        font-size: 14px;
    }

    #contact button {
        font-size: 16px;
    }
}
/* HERO BUTTONS */
.hero .buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .buttons button {
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid gold;
    border-radius: 8px;
    cursor: pointer;
    background: gold;
    color: black;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.hero .buttons button.outline {
    background: transparent;
    color: gold;
}

.hero .buttons button:hover {
    transform: scale(1.05);
}

/* Hover effect for outline */
.hero .buttons button.outline:hover {
    background: gold;
    color: black;
}

/* WHATSAPP BUTTON */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: gold; /* matches your theme */
    color: black;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none; /* removes underline */
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp:hover {
    transform: scale(1.2);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
/* LOADING SCREEN */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease;
}

/* BIGGER LOGO ANIMATION */
.loader-logo {
    width: 200px;        /* starting logo size */
    height: 200px;
    object-fit: contain;
    animation: logo-zoom 1.7s forwards;
}

@keyframes logo-zoom {
    0% {
        transform: scale(2);  /* slightly smaller than final size */
        opacity: 0;
    }
    50% {
        transform: scale(2.1);  /* slightly bigger than final size for "pop" effect */
        opacity: 1;
    }
    100% {
        transform: scale(1);    /* final size */
        opacity: 1;
    }
}

/* FADE OUT SCREEN */
#loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}
/* FOOTER */
.footer {
    background: #000;
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,215,0,0.2);
}

.footer p {
    font-size: 14px;
    color: #aaa;
}

.footer a {
    color: gold;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.footer a:hover {
    text-shadow: 0 0 10px rgba(255,215,0,0.8);
}
/* THANK YOU MESSAGE */
#thankYouMessage {
    display: none;
    margin-top: 30px;
    padding: 25px;
    border: 1px solid gold;
    border-radius: 10px;
    background: rgba(255,215,0,0.05);
    color: gold;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

#thankYouMessage h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

#thankYouMessage p {
    color: #ddd;
}

/* ANIMATION */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}