* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
}

header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    z-index: 99999;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 99999;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
    max-width: 1200px;
    min-height: 75px;
    background-color: rgb(34, 33, 33);
    border-radius: 50px;
    margin-top: 10px;
    padding: 0 25px;
    gap: 30px;
    z-index: 99999;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
}

.main-nav a:hover,
.main-nav a.active {
    color: #FFD700;
}

.main-logo {
    height: 70px;
}

.mobile-nav { 
    display: none;
}

.logo{ 
    display: none;
}

.call-btn img {
    height: 50px;
}

.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    margin-top:  -100px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;

}

.hero-content h1 {
    font-size: 4rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin: 20px 0;
}

.cta-btn {
    background: #FFD700;
    color: black;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.container1,
.container2 {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    max-width: 1400px;
    margin: 50px auto;
    padding: 0 20px;
}

.about {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 500px;
}

.about h1 strong,
.about h3 strong,
strong {
    color: #FFD700;
}

.about h2 {
    font-size: 19px;
    margin-top: 20px;
}

.about img {
    border-radius: 100%;
    height: 200px;
    margin-right: 100px;
    width: 200px;
    object-fit: cover;
}

.owner {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    align-items: center;
}

.about h3 {
    margin-top: 20px;
}

.services {
    display: flex;
    flex-direction: column;
    max-width: 500px;
}

.services p {
    margin-top: 20px;
    max-width: 400px;
    line-height: 1.8;
}

.line {
    display: block;
    height: 1px;
    border: 0;
    width: 70%;
    border-top: 1px solid #FFD700;
    margin: 30px auto;
}

/* FORM */

.contact-section {
    padding: 50px 20px;
    background: #111111;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.contact-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section p {
    color: #ccc;
    margin-bottom: 20px;
}

.contact-form {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1c1c1c;
    color: white;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    background: #FFD700;
    color: #111111;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: white;
}

/* OFFER */

.offer,
.services-section {
    width: 100%;
    max-width: 500px;
}

.services-section {
    text-align: left;
    padding: 0 20px;
}

.services-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.services-section p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

.service-list {
    list-style: none;
    max-width: 600px;
    margin: auto;
    text-align: left;
}

.service-list li {
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #e5e5e5;
}

/* PORTFOLIO */

.container3 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333;
    gap: 30px;
    color: white;
    padding: 80px 20px 100px;
}

.portfolio-slide {
    display: none;
}

.portfolio-slide.active {
    display: flex;
    align-items: center;
    gap: 50px;
}

.portfolio-slide.active img {
    width: 100%;
    max-width: 650px;
    border-radius: 10px;
}

.portfolio-container h1 {
    font-size: 60px;
    margin: 40px 0;
}

.portfolio-btn {
    background: #FFD700;
    color: #333;
    border: none;
    min-width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}

/* STATS */

.container4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
    padding: 60px 20px 100px;
    text-align: center;
}

.container4 p {
    max-width: 900px;
    width: 100%;
    margin-bottom: 30px;
}

.boxes {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.box,
.box2 {
    width: 400px;
    height: 250px;
    border-radius: 10px;
    text-align: left;
}

.box {
    background-color: #FFD700;
}

.box2 {
    background-color: #333;
    color: white;
}

.box h1,
.box2 h1 {
    font-size: 70px;
    margin-left: 30px;
}

.box p,
.box2 p {
    margin-left: 40px;
    width: 300px;
}

/* FOOTER */

.footer {
    background-color: #2c2e2f;
    color: white;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    padding: 60px 100px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 300px;
}

.footer-section h3 {
    color: #FFD700;
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

/*PORTFOLIO PAGE */

.portfolio-logo {
    display: none;
}

.portfolio-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.title { 
    width: 60%;
    max-width: 60%;
    margin: 30px auto;
    margin-left:175px;
}

.portfolio-show {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
    width: 80%;
    max-width: 80%;
    margin: 30px auto;

}

.portfolio-box { 
    width: 30%;
    height: 550px;
    max-width: 30%;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #888888;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.portfolio-box img {
    margin-top: 20px;
    width: 90%;
    height: 200;
    align-items: center;
    border-radius: 10px;
}

.portfolio-box h2 { 
    color: #FFD700;
    margin-left: -50px;
    margin-top: 20px;
}

.portfolio-box p { 
    margin-top: 20px;
    color: white;
    width: 90%; 
    margin-left: 15px;

}

.portfolio-box1 { 
    width: 30%;
    height: 500px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #888888;
}

.portfolio-box3 { 
    width: 30%;
    height: 500px;
    background-color: #333;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #888888;
}

/*ABOUT PAGE */

.about-container { 
    display: flex;
    flex-direction: row;
    margin-top: 100px;
    justify-content: center;
}

.mobile-logo-about {
    display: none;
    
}

.mobile-nav-black {
    display: none;
}

.about-me { 
    width: 30%;
    margin-top: 250px

}

.about-me h2 { 
    margin-bottom: 30px;
    font-size: 50px;
}

.about-me p { 
    font-size: 20px;
}

.about-title-img {
    margin-left: 150px;
}

.about-title-img h1 { 
    font-size: 75px;
}

.about-title-img img { 
    border-radius: 50%;
    height: 500px;
    margin-top: 40px;
}

.about-support { 
    display: flex;
    flex-direction: row;
    margin: 30px auto;
    gap: 20px;
    justify-content: center;
    margin-top: 100px;
    
}

.about-box, .about-box2, .about-box3 { 
    width: 400px;
    height: 250px;
    border-radius: 10px;
    text-align: left;
}

.about-box { 
    background-color: #FFD700;
}

    .about-box h3 { 
        font-size: 40px;
        margin-top: 20px;
        margin-left: 20px;
    }

    .about-box p { 
        padding: 20px;
        font-size: 20px;

    }

.about-box2 {
    background-color: #2c2e2f;
    color: white;
}

    .about-box2 h3 {
        font-size: 40px;
        margin-top: 20px;
        margin-left: 20px;
    }

    .about-box2 p { 
            padding: 20px;
            font-size: 20px;

        }

.about-box3 { 
    background-color: #666;
    color: #FFD700;
}

 .about-box3 h3 {
        font-size: 40px;
        margin-top: 20px;
        margin-left: 20px;
    }

    .about-box3 p { 
            padding: 20px;
            font-size: 20px;

        }

.about-contact { 
    margin-top: 100px;
    background-color: #333;
    height: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.about-contact h2 {
    margin: 30px auto;
    font-size: 50px;
    color: #FFD700;
    margin-top: 150px;
}

.about-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 200px;
    height: 65px;
    margin: 30px auto;
    background-color: #FFD700;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;

}

.about-btn:hover { 
    background-color: white;
}

/*CONTACT SESCTION*/
.contact-title {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin:  0 auto;
    text-align: center;
    align-items: center;
    margin-bottom: -100px;
}

.contact-title h1,
.contact-title p {
    width: 80%;
    margin-top: 50px;
    text-align: center;
}

.contact-title h1 { 
    font-size: 50px;
    margin-top: 100px;
}

.contact-title p { 
    font-size: 20px;
}

.contact-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 200px;
    gap: 30px;

}

.contact-details {
    width: 500px;
    height: 600px;
    background-color: #1c1c1c;
    color: white;
}

.contact-details h3 { 
    display: flex;
    justify-content: center;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 70px
}

.contact-details p { 
    margin-left: 50px;
    margin-bottom: 40px;
    font-size: 17px;
}

.contact-section-contact {
    padding: 50px 20px;
    background: #111111;
    color: white;
    text-align: center;
    width: 100%;
    max-width: 500px;
    
}

.contact-section-contact h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-section-contact p {
    color: #ccc;
    margin-bottom: 20px;
}

.contact-form-contact {
    max-width: 450px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form-contact input,
.contact-form-contact textarea {
    padding: 12px;
    border: 1px solid #333;
    border-radius: 8px;
    background: #1c1c1c;
    color: white;
    font-size: 15px;
}

.contact-form-contact textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form-contact button {
    background: #FFD700;
    color: #111111;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form-contact button:hover {
    background: white;
}




/* MOBILE */

@media (max-width: 768px) {

    .main-nav {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: absolute;
        width: 70%;
        max-width: 1200px;
        min-height: 75px;
        background-color: rgb(34, 33, 33);
        margin-top: 700px;
        width: 100%;
        height: 500px;
        gap: 40px;
        z-index: 99999;
        animation: slideDown .3s ease;
    }

    .main-nav.show { 
        display: flex;
        animation: slideDown .3s ease;
    }

    .main-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        height: 75px;
        z-index: 9999;
    }

    .mobile-nav {
        display: block;
        height: 75px;
        z-index: 9999;
        margin-left: 70px;
        margin-top: 5px;
        cursor: pointer;
    }

/*Different mobile logo and nav for about page*/

     .mobile-logo2 {
        display: block;
        height: 175px;
        z-index: 9999;
        margin-top: -37px;
    }

    .mobile-nav2 {
        display: block;
        height: 40px;
        z-index: 9999;
        margin-left: 70px;
        margin-top: 30px;
        cursor: pointer;
    }


    .logo {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .hero {
        height: 70vh;
        margin-top: -200px;
    }
    .hero-content {
        top: 75px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        top: -100px
    }

    .hero-content p {
        font-size: 1rem;
    }

    .container1,
    .container2 {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        width: 100%;
        margin: 40px auto;
    }

    .about,
    .services,
    .offer,
    .services-section {
        width: 100%;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .about h2,
    .services p {
        text-align: center;
    }

    .about img { 
        margin-right: 0;
    }

    .contact-section {
        max-width: 100%;
        margin: 0;
    }

    .services-section h2 {
        font-size: 32px;
        text-align: center;
    }

    .service-list {
        width: 100%;
        text-align: left;
    }

    .container3 {
        flex-direction: column;
        gap: 25px;
    }

    .portfolio-slide.active {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .portfolio-container h1 {
        font-size: 36px;
    }

    .portfolio-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .boxes {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .box,
    .box2 {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 220px;
    }

    .box h1,
    .box2 h1 {
        font-size: 55px;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 25px;
    }

    /*PORTFOLIO PAGE*/

    .portfolio-logo {
        display: contents;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        

    .portfolio-logo img {
        height: 200px
    }

    .title {
        display: flex;
        flex-direction: column;
        margin: 30px auto;
    }

     .portfolio-show {
        width: 95%;
        flex-direction: column;
        align-items: center;
    }

    .portfolio-box,
    .portfolio-box1,
    .portfolio-box3 {
        width: 100%;
        max-width: 400px;
        min-height: auto;
        padding-bottom: 20px;
    }

    .portfolio-box img,
    .portfolio-box1 img,
    .portfolio-box3 img {
        height: 180px;
    }

    .portfolio-box h2,
    .portfolio-box1 h2,
    .portfolio-box3 h2 {
        text-align: center;
    }

    .portfolio-box p,
    .portfolio-box1 p,
    .portfolio-box3 p {
        text-align: center;
    }

    /*ABOUT PAGE MOBILE*/

    .about-container {
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
        padding: 0 20px;
        text-align: center;
    }

    .about-title-img {
        margin-left: 0;
    }

    .about-title-img h1 {
        font-size: 42px;
    }

    .about-title-img img {
        width: 280px;
        height: 280px;
        margin-top: 30px;
    }

    .about-me {
        width: 100%;
        margin-top: 40px;
    }

    .about-me h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .about-me p {
        font-size: 18px;
        line-height: 1.8;
    }

    .about-support {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-top: 60px;
    }

    .about-box,
    .about-box2,
    .about-box3 {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 220px;
    }

    .about-box h3,
    .about-box2 h3,
    .about-box3 h3 {
        font-size: 32px;
        margin: 20px;
    }

    .about-box p,
    .about-box2 p,
    .about-box3 p {
        font-size: 18px;
        line-height: 1.6;
        padding: 0 20px 25px;
    }

    .about-contact {
        height: auto;
        padding: 60px 20px;
        text-align: center;
    }

    .about-contact h2 {
        margin-top: 0;
        font-size: 36px;
        line-height: 1.3;
    }

.about-btn {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 300px;
    height: 65px;

    margin: 30px auto;

    background-color: #FFD700;
    color: #111;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.about-btn:hover {
    background: white;
    color: #111;
}

    /*CONTACT PAGE */ 
     .contact-title {
        width: 100%;
        margin-bottom: 0;
        padding: 0 20px;
    }

    .contact-title h1 {
        width: 100%;
        font-size: 36px;
        margin-top: 60px;
    }

    .contact-title p {
        width: 100%;
        font-size: 18px;
        line-height: 1.7;
        margin-top: 25px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        margin-top: 60px;
        gap: 30px;
        padding: 0 20px;
    }

    .contact-details {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 40px 20px;
    }

    .contact-details h3 {
        font-size: 28px;
        margin-top: 0;
        margin-bottom: 40px;
    }

    .contact-details p {
        margin-left: 0;
        text-align: center;
        font-size: 16px;
        margin-bottom: 30px;
    }

    .contact-section-contact {
        width: 100%;
        max-width: 500px;
        padding: 40px 20px;
    }

    .contact-section-contact h2 {
        font-size: 28px;
    }

    .contact-form-contact {
        width: 100%;
    }
}