@import url('https://fonts.googleapis.com/css2?family=Average&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Style+Script&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #AA8819;
    --secondary-color: #414040;
    --tertiary-color: #ffffff;
    --fourth-color: #000000;
}

body {
    --font-script: "Style Script", cursive;
    --font-average: "Average", serif;
    --font-poppins: "Poppins", sans-serif;
    --font-volk: "Vollkorn", serif;
}

.container {
    max-width: 1350px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}

ul,
p {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    display: inline-block;
    text-decoration: none;
}

.section-padding {
    padding: 100px 0;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary-color);
    color: var(--tertiary-color);
    font-family: var(--font-average);
    font-size: 20px;
    border-radius: 50px;
    margin-left: 45px;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.title1 {
    font-family: var(--font-script);
    font-size: 120px;
    color: var(--tertiary-color);
    margin-bottom: 16px;
}

.title2 {
    font-family: var(--font-volk);
    font-size: 64px;
    color: var(--fourth-color);
    margin-bottom: 8px;
}

.sub-title {
    font-family: var(--font-volk);
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 56px;
}

/* Header Section */

.nav-item {
    padding: 0 15px;
}

.nav-link {
    color: var(--fourth-color);
    font-size: 20px;
    font-family: var(--font-average);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover {
    color: var(--primary-color);
}

.icons {
    padding: 0 8px;
}

.mobile-menu {
    display: none;
    max-width: 20px;
}

/* Banner Section */

.banner-section {
    padding: 205px 0;
    text-align: center;
    background: url(../assets/services-banner.png) no-repeat center/cover;
}

/* Desc Section */

.desc-sec {
    padding: 100px 0 0;
}

.desc-sec p {
    font-family: var(--font-volk);
    font-size: 40px;
    text-align: center;
    margin: 0 auto;
}

/* Why Us Section */

.why-us-section .row {
    row-gap: 60px;
}


.why-us-content div {
    margin-bottom: 16px;
}

.why-us-content img {
    margin-right: 20px;
}

.why-us-content span {
    font-family: var(--font-volk);
    font-size: 32px;
    color: var(--fourth-color);
}

.why-us-content p {
    font-family: var(--font-poppins);
    font-size: 20px;
    color: var(--secondary-color);
}


/* Service Section */

.service-section {
    padding: 0 0 100px;
}

.service-section .row {
    --bs-gutter-y: 24px;
}

.services1,
.services2,
.services3,
.services4 {
    overflow: hidden;
}

.service-section img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.services1:hover img,
.services2:hover img,
.services3:hover img,
.services4:hover img {
    transform: scale(1.05);
}

/* Testimonial Section */

.testimonial-section {
    position: relative;
}

.testimonial-section .review {
    max-width: 500px;
    text-align: center;
    font-family: var(--font-volk);
    font-size: 40px;
}

.review::after {
    content: "";
    height: 1px;
    width: 200px;
    background-color: var(--primary-color);
    display: block;
    margin: 25px auto 25px;
}

.testimonial-image {
    position: absolute;
    right: 0;
    top: 0;
    max-width: 540px;
    width: 100%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

.testimonial-image img:hover {
    transform: scale(1.03);
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-controls button {
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.user-info {
    text-align: center;
}

.user-info img {
    width: 60px;
    border-radius: 10px;
}

/* Bottom Banner Section */

.bottom-banner {
    background: url(../assets/bottom-banner.png) no-repeat center/cover;
    padding: 50px 0;
    text-align: center;
}

.bottom-banner p {
    font-family: var(--font-volk);
    font-size: 70px;
    color: var(--tertiary-color);
}

.bottom-banner .btn-primary {
    background-color: var(--tertiary-color);
    color: var(--fourth-color);
    margin-left: 0;
}

.bottom-banner .btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
}


/* Footer Section */

.footer-section {
    background-color: var(--secondary-color);
}

.footer-section .row {
    margin-bottom: 80px;
}

.ftr-hdr {
    margin-bottom: 48px;
    font-family: var(--font-volk);
    font-size: 40px;
    color: var(--tertiary-color);
}

.footer-section span {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
    cursor: pointer;
}

.ft-links {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}

.ft-links:hover {
    text-decoration: underline;
}

.subscribe-box {
    display: flex;
    max-width: 400px;
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.subscribe-box input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 20px;
    background: transparent;
    color: white;
}

.subscribe-box input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-box input[type="submit"] {
    border: none;
    padding: 0 20px;
    background: var(--tertiary-color);
    color: var(--fourth-color);
    cursor: pointer;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-box input[type="submit"]:hover {
    background: rgba(255, 255, 255, 0.3);
}

.social-icons img {
    cursor: pointer;
    margin-left: 16px;
}

.footer-btm {
    margin-bottom: 80px;
}

.ft-copyright,
.ft-copyright a {
    color: var(--tertiary-color);
    font-family: var(--font-poppins);
    font-size: 16px;
}




/* Media Queries */

@media screen and (max-width:992px) {

    /* Header Section */

    .mobile-menu {
        display: flex;
        position: relative;
        z-index: 1002
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--tertiary-color);
        z-index: 1001;
        transition: right 0.5s ease-in-out;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navbar-collapse ul {
        list-style: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .nav-items {
        margin: 15px 0;
    }

    .menu {
        position: relative;
        z-index: 1002;
        cursor: pointer;
    }

    .navbar .btn-primary {
        margin-left: 0;
    }

    /* When the active class is present, slide the menu to 0 */
    .navbar-collapse.active {
        right: 0;
    }

    .icon-group {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width:768px) {

    .section-padding {
        padding: 50px 0;
    }

    .sub-title {
        margin-bottom: 20px;
    }

    /* Desc Section */

    .desc-sec {
        padding: 50px 0 0;
    }

    /* Why Us Section */

    .why-us-section .row {
        row-gap: 35px;
    }

    .why-us-content img {
        margin-right: 16px;
    }

    .why-us-content span {
        font-size: 24px;
    }

    .why-us-content p {
        text-align: center;
        font-size: 16px;
    }

    /* Service Section */

    .service-section {
        padding: 0 0 50px;
    }

    /* Testimonial Section */

    .testimonial-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .testimonial-section p {
        margin: 0 auto;
    }

    .testimonial-image {
        position: static;
        max-width: 100%;
        margin-top: 30px;
    }

    .testimonial-content {
        text-align: center;
        max-width: 100%;
    }

    .testimonial-section .review {
        font-size: 28px;
    }

    .testimonial-controls {
        justify-content: center;
        gap: 20px;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 50px;
    }

    /* Footer Section */

    .footer-section .row {
        row-gap: 40px;
        margin-bottom: 50px;
    }

    .ftr-hdr {
        font-size: 28px;
        text-align: center;
    }

    .first-col,
    .second-col,
    .third-col {
        text-align: center;
    }

    .first-col div {
        justify-content: center;
    }

    .footer-btm {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .subscribe-box {
        width: 100%;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .ft-copyright {
        text-align: center;
    }
}

@media screen and (max-width:576px) {

    .title2 {
        font-size: 40px;
    }

    .sub-title {
        font-size: 20px;
    }

    /* Header Section */

    .navbar-brand img {
        max-width: 70px;
    }

    /* Desc Section */

    .desc-sec p {
        font-size: 24px;
    }

    /* Why Us Section */

    .why-us-section .row {
        row-gap: 30px;
    }


    /* Testimonial Section */

    .testimonial-section .review {
        font-size: 22px;
        line-height: 1.4;
    }

    .user-info img {
        width: 50px;
    }

    .user-info h4 {
        font-size: 16px;
    }

    .testimonial-controls button {
        width: 40px;
        height: 40px;
    }

    /* Bottom Banner */

    .bottom-banner p {
        font-size: 36px;
        margin-bottom: 20px;
    }

    /* Footer Section */

    .ftr-hdr {
        font-size: 24px;
    }

    .footer-section span,
    .ft-links,
    .ft-copyright {
        font-size: 14px;
    }

    .subscribe-box input[type="email"] {
        padding: 10px 15px;
    }

    .subscribe-box input[type="submit"] {
        padding: 0 15px;
        font-size: 14px;
    }

    .social-icons img {
        margin-left: 10px;
        width: 20px;
    }
}


@media screen and (max-width:375px) {

    .title1 {
        font-size: 36px;
    }

    .title2 {
        font-size: 32px;
    }

    /* Testimonial Section */

    .testimonial-section .review {
        font-size: 18px;
    }

    .review::after {
        width: 120px;
    }

    /* Footer Section */

    .ftr-hdr {
        font-size: 20px;
    }

    .subscribe-box {
        flex-direction: column;
        border-radius: 10px;
    }

    .subscribe-box input[type="submit"] {
        width: 100%;
        padding: 10px;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
}