/* Body Background */

body {
    font-family: "Inter", sans-serif;

    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
@media (max-width: 767px) {

    body {
        background-image: url("../images/background-m.png");
        background-attachment: scroll;
    }

}
/* Navbar */

#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 10px 0;
}

#navbar .container {

    max-width: 1400px;
}

#navbar .navbar-brand {
    margin-right: 40px;
}

#navbar .navbar-brand img {
    height: 90px;
    width: auto;
}

#navbar .nav-link {
    color: #F8FAFC;
    color: #F8FAFC;
    font-size: 16px;
    font-weight: 500;
    margin-left: 15px;
    padding: 10px 15px;
    position: relative;
}
#navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: 0.3s;
}

#navbar .nav-link:hover {
    color: #D4AF37;
}

#navbar .nav-link:hover::after {
    width: calc(100% - 30px);
}

.navbar-toggler {
    border-color: #F8FAFC;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    filter: brightness(0) invert(1);
}


/* navbar button */
#navbar .btn-primary {
    background: #D4AF37;
}

#navbar .btn-primary:hover {
    background: #BF9B30;
}

@media (max-width: 576px) {

    #navbar .navbar-brand img {
        height: 65px;
    }

}
@media (max-width: 991px) {

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 10px;
    }

}
/* Hero Section */

#hero {
    position: relative;
    min-height: 100vh;
    background-image: url("../images/hero-img.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (max-width: 991px) {

    #hero {
        background-position: 84% center;
    }

}
@media (max-width: 767px) {

    #hero {
        background-image: url("../images/hero-m.png");
        min-height: 65vh;
    }

}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.75) 35%,
            rgba(0, 0, 0, 0.15) 60%,
            rgba(0, 0, 0, 0) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.05) 60%,
            rgba(0, 0, 0, 0.15) 85%,
            #000 100%
        );
}

#hero .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {

    #hero .container {
        padding-top: 50px;
    }

}

#hero h1 {
    font-family: "Great Vibes", cursive;
    font-size: 70px;
    font-weight: 400;
    line-height: 1.2;
    color: white;
}

#hero p {
    color: #CBD5E1;
    font-size: 20px;
    max-width: 600px;
    margin: 25px 0;
}

#hero .btn {
    padding: 14px 28px;
    border-radius: 50px;
}

@media (max-width: 991px) {

    #hero h1 {
        font-size: 56px;
    }

}

@media (max-width: 767px) {

    #hero h1 {
        font-family: "Great Vibes", cursive;
        font-size: 42px;
    }

    #hero p {
        font-size: 18px;
    }

}
/* About Us Section */

#about-us {
    background: #000;
    background-position-x: k;
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    z-index: 3;
}

#about-us .about-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

#about-us .section-tag {
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

#about-us h2 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}

#about-us p {
    color: #BDBDBD;
    font-size: 16px;
    line-height: 1.9;
}

/* About Us Section-Animation Class*/
.about-image {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}
.about-content {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.about-image.show,
.about-content.show {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 767px) {

    #about-us .row {
        flex-direction: column-reverse;
    }

    #about-us h2 {
        font-size: 34px;
    }
     #about-us .about-content {
        margin-bottom: 30px;
    }

}
/* Our History Section */

#our-history {
    background: #000;
    padding: 60px 0 120px;
    overflow: hidden;
}

#our-history .history-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

#our-history .section-tag {
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

#our-history h2 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}

#our-history p {
    color: #BDBDBD;
    font-size: 18px;
    line-height: 1.9;
}
/* Our History Section-animation */
.history-content {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.history-image {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.history-content.show,
.history-image.show {
    opacity: 1;
    transform: translateX(0);
}
@media (max-width: 767px) {

    #our-history h2 {
        font-size: 34px;
    }

    #our-history p {
        font-size: 16px;
    }

}
/*Our Offices*/
#our-offices .section-tag {
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}
#our-offices h2 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}
#our-offices .col-lg-6 {
    position: relative;
}

.office-card {
    position: relative;
    height: 500px;
    overflow: hidden;

    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease;
}

.office-card.show {
    opacity: 1;
    transform: translateY(0);
}

.office-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-content {
    position: absolute;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 50px;

    color: #fff;
    background: rgba(0, 0, 0, 0.35);

    z-index: 2;

    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);

    transition: all 0.3s ease;
}

.office-content.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.office-content h3 {
    margin: 15px 0;
}

.office-content p {
    color: #ddd;
}

@media (max-width: 991px) {

    .office-card {
        height: 400px;
    }

    .office-content {
        padding: 30px;
    }

}

@media (max-width: 767px) {

    #our-offices .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    #our-offices h2 {
        font-size: 16px;
    }

    .office-card {
        height: 300px;
    }

    .office-content {
        padding: 20px;
    }

    .office-content h3 {
        font-size: 28px;
    }

    .office-content p {
        font-size: 14px;
    }

}
/* Our Designs Section */

#our-designs .section-tag {
    color: #D4AF37;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

#our-designs h2 {
    color: #fff;
    font-size: 52px;
    margin: 20px 0;
}

#our-designs h5 {
    color: #fff;
}

@media (max-width: 767px) {

    #our-designs h2 {
        font-size: 34px;
    }

}
#our-designs .card {
    height: 350px;
}

#our-designs .card-img {
    height: 100%;
    object-fit: cover;
}

#our-designs .card-img-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,0)
    );
}

@media (max-width: 767px) {

    #our-designs .card {
        height: 220px;
    }

}
/* Our Designs Section Animation */

#our-designs .card {
    opacity: 0;
    transform: translateY(80px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

#our-designs .card.show {
    opacity: 1;
    transform: translateY(0);
}

/*footer section*/
#footer {

    color: white;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.30),
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.8),
            #000 100%
        );
}