@import url('https://fonts.googleapis.com/css2?family=Epunda+Slab:ital,wght@0,300..900;1,300..900&family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&family=Vend+Sans:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --first-color: #D4AF37;
    --second-color: #BDB76B;
    --third-color: #FDFBD4;
    --fourth-color: #CE8946;
    --fifth-color: #825E34;
    --white: #fff;
    --light-gray: #F5F5F5;
    --primary-font: "Space Grotesk", sans-serif;
    --dark-color: #0C1529;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--primary-font);
}

.header {
    min-height: 65px;
    background-color: var(--fifth-color);
    justify-content: center;
    align-items: center;
    display: flex;
    padding: 12px 0px;
    color: var(--light-gray);
}

.header i {
    font-size: 20px;
    color: var(--soft-gray);
}

.header a {
    color: var(--light-gray);
    text-decoration: none;
}

.animated-btn {
    padding: 5px 50px;
    border-radius: 10px;

    position: relative;
    z-index: 1;
    overflow: hidden;
}

.animated-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 2px;
    background: linear-gradient(90deg,
            transparent,
            #00f7ff,
            transparent);
    background-size: 200% 200%;
    animation: borderRun 2s linear infinite;
    z-index: -1;
}

/* Inner background */
.animated-btn::after {
    content: "";
    position: absolute;
    inset: 2px;
    background-color: var(--first-color);
    border-radius: 28px;
    z-index: -1;
}

/* Animation */
@keyframes borderRun {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

nav {
    padding: 20px 0px;
}

nav .navbar-nav a {
    font-size: 17px;
    font-weight: 500;
    color: var(--dark-color);
}

nav .navbar-nav a:hover {
    color: var(--soft-gray);
}

.dropdown-menu li a:hover {
    background-color: var(--fifth-color);
    color: var(--white);
}

#selected {
    color: var(--soft-gray);
}

nav .btn {
    padding: 8px 50px;
    color: var(--white);
    font-weight: 500;
    border-radius: 20px;
    background-color: var(--fifth-color);
}

nav .btn:hover {
    background-color: var(--fourth-color);
    color: var(--white);
}

nav .navbar-nav .nav-item {
    margin: 0px 15px;
}

.cta {
    color: var(--white);
    font-weight: 500;
    border-radius: 20px;
    background-color: var(--soft-gray);
    text-decoration: none;
}

.cta:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

h1 {
    font-size: clamp(25px, 4vw, 35px);
    font-weight: 800;
}

h2 {
    font-size: clamp(20px, 4vw, 25px);
    font-weight: 700;
}

h3 {
    font-size: clamp(18px, 4vw, 20px);
    font-weight: 600;
}

h4 {
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 600;
}

p {
    font-size: 15px;
}

ul li {
    font-size: 15px;
}

.navbar-toggler {
    color: var(--fourth-color);
}

/*----------------sidenavrbar----------*/
/* Top bar */
.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* 👈 key line */
    padding: 10px 16px;

}

.logo {
    height: 55px;
}

.menu-icon {
    font-size: 26px;
    color: #fff;
    cursor: pointer;
}

/* Side nav */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--fifth-color);
    overflow-x: hidden;
    transition: 0.4s;
    padding-top: 60px;
    z-index: 1000;
}

.sidenav a {
    padding: 8px 32px;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    display: block;
}

.menu-icon {
    color: var(--fourth-color);
}

.sidenav a:hover {
    color: #f1f1f1;
}

.closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

.mobdrpmenu {
    display: none;
    list-style-type: none;
}

.sidesocialicon a {
    font-size: 25px;
    margin: 0px -10px;
}

.herobanner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.herobanner .heroitem {
    background-color: rgba(130, 94, 52, .6);
    min-height: 650px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;

}

.herobanner .heroitem h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.herobanner .heroimg {
    bottom: 0;
    left: 55%;
    position: absolute;
}

.herobanner img {
    height: 500px;
}

.herobanner .herobtn button {
    background-color: var(--fifth-color);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    color: var(--white);
    font-size: 14px;
}

.herobanner .herobtn a {
    text-decoration: none;
}

.herobanner p {
    line-height: 1.9;
}

.herobanner .herobtn button:hover {
    background-color: var(--fourth-color);
}

.sixspecialization {
    margin: 20px 0px;
    background-color: rgba(235, 170, 95, 0.2);

}

.sixspecialization img {
    height: 40px;
    padding: 3px;
    filter: brightness(0) invert(1);

}

.sixspecialization .imgbox {
    border-radius: 50%;
    background-color: var(--first-color);
    width: auto;
    padding: 8px;
}

.sixspecialization p {
    font-weight: 600;
    margin-bottom: -7px;
    line-height: 1.1;
    font-size: 17px;
    white-space: pre-line;
}

.sixspecialization .innerbox {
    min-height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.sixspecialization .textbox {
    padding: 10px;
}

.homeabout {
    padding: 50px 0px;
}

.homeabout ul {
    list-style-type: none;
}

.homeabout ul li {
    position: relative;
}

.homeabout ul li::before {
    content: "✪";
    font-size: 20px;
    margin-right: 10px;
    color: var(--first-color);
}

.homeabout p {
    line-height: 1.8;
}

.animatedbtn {
    padding: 7px 20px;
    background-color: var(--fifth-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    border-radius: 5px;

}

.animatedbtn span {
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.animatedbtn span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    right: -20px;
    transition: 0.5s;
}

.animatedbtn:hover span {
    padding-right: 25px;
}

.animatedbtn:hover span:after {
    opacity: 1;
    right: 0;
}

.homeabout .imgbox {
    position: relative;
}

.homeabout .img2 {
    position: absolute;
    height: 150px;
    width: 300px;
    bottom: -15%;
    right: 10%;
    border: 2px solid var(--white);
    border-radius: 10px;
}

.homewrap2 {
    padding: 50px 0px;
}

.homewrap2 p {
    line-height: 2.0;
}

.homewrap2 img {
    height: 500px;
    width: 400px;
}

.homewrap2 .homewrapitem {
    padding: 20px 20px;

    background-color: rgba(235, 170, 95, 0.2);
}

.servicewrapper h2 {
    text-align: center;
    margin-bottom: 20px;
}

.servicewrapper .innerbox {
    padding: 15px;
    min-height: 340px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 10px;
}

.servicewrapper p {
    line-height: 1.7;
}

.servicewrapper ul li {
    line-height: 1.9;
}

.servicewrapper .imgbox {
    height: 340px;
    width: 100%;
    border-radius: 8px;
    background-position: center;
    background-size: cover;
}

.wrapper3 {
    padding: 40px 0px;
}

.wrapper3 .innerbox {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 200px;
    width: 100%;
    border-radius: 5px;
}

.wrapper3 .inneritem {
    background-color: rgba(130, 94, 52, .6);
    min-height: 200px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    border-radius: 5px;
    color: var(--white);
}

.wrapper3 .btn {
    background-color: var(--fifth-color);
    color: var(--white);
}

.wrapper4 h2 {
    text-align: center;
    margin-bottom: 20px;
}

.wrapper4 .innerbox {
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border-radius: 10px;
    min-height: 190px;
    border-left: 2px solid var(--fifth-color);
    border-right: 2px solid var(--fifth-color);
    justify-content: center;
    align-items: center;
    display: flex;
}

.wrapper5 {
    padding: 40px 0px;
}

.wrapper5 .innerbox {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    background-attachment: fixed;
}

.wrapper5 .inneritem {
    padding: 30px 0px;
    min-height: 300px;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: flex;
    background-color: rgba(130, 94, 52, .6);
    color: var(--white);
}

.wrapper5 h2 {
    margin-bottom: 20px;
}

.wrapper5 p {
    line-height: 1.9;
}

.wrapper5 .btn {
    background-color: var(--fifth-color);
    color: var(--white);
    font-size: 15px;
    z-index: 1;
    position: relative;

    &:after {
        content: '';
        background: var(--fourth-color);
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        clip-path: circle(0% at 50% 50%);
        transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
        z-index: -1;
    }

    &:hover {
        &:after {
            clip-path: circle(100% at 50% 50%);
            transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;

        }
    }

}

.wrapper6 p {
    line-height: 1.9;
}

.wrapper6 ul li {
    line-height: 1.9;
}

.wrapper6 .imgbox {
    min-height: 350px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}

.wrapper6 .innerbox {
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    border-radius: 10px;
}

.wrapper7 {
    padding: 50px 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wrapper7 h2 {
    line-height: 1.5;
    margin-bottom: 10px;
}

.wrapper7 p {
    line-height: 1.9;
}

.wrapper7 a {
    background-color: var(--fifth-color);
    color: var(--white);
    font-size: 15px;
    z-index: 1;
    position: relative;

    &:after {
        content: '';
        background: var(--fourth-color);
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        clip-path: circle(0% at 50% 50%);
        transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 0.8s;
        z-index: -1;

    }

    &:hover {
        &:after {
            clip-path: circle(100% at 50% 50%);
            transition: all cubic-bezier(0, 0.96, 0.58, 1.1) 2s;
        }
    }

}

.wrapper7 img {
    height: 500px;
    width: 500px;
    border-radius: 5px;
}

.testimonial {
    padding: 50px 0px;
}

.testimonial .item {
    margin: 20px;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
    min-height: 220px;
    border-left: 1px solid var(--first-color);
    border-right: 1px solid var(--first-color);
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.testimonial h4 {
    color: var(--dark-color);
}

.testimonial .area {
    color: var(--soft-gray);
}

.wrapper8 {
    color: var(--light-gray);
    padding: 30px 0px;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.wrapper8 h2 {
    text-align: center;
    padding-bottom: 20px;
}

.wrapper8 .innerbox {
    padding: 50px 20px 20px 20px;
    border-radius: 6px;
    position: relative;
    border: 1px solid var(--light-gray);

}

.wrapper8 h4 {
    position: absolute;
    top: -17px;
    left: 10px;
    background-color: var(--third-color);
    z-index: 1;
    color: var(--dark-color);
    border: 1px solid var(--light-gray);
    padding: 6px;
    border-radius: 7px;
}

.wrapper9 {
    padding: 30px 0px;
}

.wrapper9 .container {
    padding: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wrapper9 h2 {
    color: var(--light-gray);
}

.wrapper9 .innerbox {
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.wrapper9 ul li {
    color: var(--light-gray);
    margin: 10px 0px;
}

.wrapper9 ul li a {
    color: var(--light-gray);
    text-decoration: none;
}

.wrapper9 p {
    color: var(--light-gray);

}

.wrapper10 .innerbox {
    text-align: center;
    padding: 20px;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.3);
}

.wrapper10 {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.wrapper10 h2 {
    padding-bottom: 10px;
}

.wrapper10 .btn {
    background-color: var(--dark-color);
    color: var(--white);
    font-size: 15px;
}

.wrapper10 .btn:hover {
    background-color: var(--fifth-color);
}

.faqwrapper {
    padding: 30px 0px;
}

.faqwrapper h2 {
    text-align: center;
    padding-bottom: 10px;
}

.faqwrapper .accordion-item {
    margin-bottom: 10px;
}

.faqwrapper button {
    background-color: var(--fifth-color);
    color: var(--white);
}

.accordion-button:not(.collapsed) {
    background-color: var(--fifth-color);
    color: var(--white);
}

.accordion-button:focus {
    box-shadow: none;
}

footer {
    color: var(--white);
    background-color: var(--fifth-color);
    padding: 30px 0px;
    border-top: 3px solid var(--dark-color);
}

footer img {
    padding-bottom: 15px;
}

footer h4 {
    position: relative;
}

footer h4::after {
    position: absolute;
    content: '';
    height: 2px;
    width: 100px;
    background-color: var(--white);
    left: 0;
    bottom: -5px;
    border-radius: 50%;
}

footer ul {
    list-style-type: none;
    margin: 25px 0px;
}

footer ul li {
    margin-top: 15px;
}

footer a {
    text-decoration: none;
    color: var(--white);
}

footer a:hover {
    color: var(--dark-color);
}

footer #socialicon:hover {
    background-color: var(--dark-color);
    color: var(--white);
}

footer .socialicon a {
    font-size: 20px;
    padding: 4px;
    border: 1px solid var(--white);
    border-radius: 10px;
    margin: 0px 5px;
}

.innertitlesection {

    color: var(--white);
    background-size: cover;

}

.innertitlesection .innerbox {
    min-height: 250px;
    justify-content: center;
    text-align: center;
    align-items: center;
    display: flex;

    background-color: rgba(109, 81, 50, 0.7);
}

.innertitlesection a {
    color: var(--white);
    text-decoration: none;
}
.aboutwrapper{
   padding: 50px; 
   justify-content: center;
   text-align: center;
}
.aboutwrapper .innerbox {
    padding: 20px 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    min-height: 200px;
    border-radius: 6px;
    border-top: 2px solid var(--fourth-color);
}

.aboutwrapper2 {
    padding: 30px 0px 0px 0px;
}

.aboutwrapper2 h2 {
    padding-bottom: 15px;
    text-align: center;
}

.aboutwrapper2 .innerbox {
    padding: 12px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    min-height: 200px;
    border-radius: 6px;
    border-top: 2px solid var(--fourth-color);
}

#innerboxstyle {
    padding: 15px;
    min-height: 220px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

#innerboxstyle2 {
    position: relative;
    padding: 15px;
    min-height: 500px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

#innerboxstyle2 .btn {
    position: absolute;
    bottom: 15px;

}

.contactwrapper {
    padding: 20px 0px;
    color: var(--white);
}

.contactwrapper .innerbox {
    padding: 20px 0px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contactwrapper .innerbox h2 {
    color: var(--white);
    text-align: center;
}

.conactwrapper2 {
    padding: 30px 0px;
    justify-content: center;
    text-align: center;
}

.conactwrapper2 i {
    font-size: 30px;
    width: 50px;
    height: 50px;
    padding: 7px;
    border-radius: 50%;
}

.conactwrapper2 .innerbox {
    padding: 25px;
    text-align: center;
    align-items: center;
    display: flex;
    border-top: 2px solid var(--fourth-color);
    border-bottom: 2px solid var(--fourth-color);
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    min-height: 350px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.conactwrapper2 .innerbox:hover {
    background-color: var(--light-gray);
}

.form {
    padding: 25px;
    border-radius: 10px;
}

.form label {
    color: var(--white);
}

.form .btn {
    background-color: var(--fifth-color);
    color: var(--white);
    margin-top: 15px;
    padding: 8px 50px;
}

.abtwrapper {
    padding: 30px 0px;
}

.abtwrapper .innerbox {
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border-radius: 10px;
}

.abtwrapper h3 {
    color: var(--fifth-color);
    padding: 15px 0px;
}

.abtwrapper p {
    line-height: 1.9;
}

.abtwrapper .innerbox2 {
    min-height: 470px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 10px;
    border-radius: 10px;
}

.loginwrapper {
    min-height: 500px;
    justify-content: center;
    align-items: center;
    display: flex;
    background-color: var(--third-color);
}

.password-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.toggle-text {
    cursor: pointer;
    color: #0d6efd;
    font-size: 0.9rem;
    margin-top: 5px;
    text-align: right;
}

.toggle-text:hover {
    text-decoration: underline;
}

.carpenterbtn {
    padding: 6px 12px;
    background-color: var(--fifth-color);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    border-radius: 8px;
}

.wrapper11 h2 {
    text-align: center;
    padding-bottom: 25px;
}

.wrapper11 .innerbox {
    border-radius: 6px;
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.wrapper11 .innerbox h3 {
    padding-bottom: 4px;
}
.blogbox{
    padding: 50px 0px;
}
.blogbox .imgbox{
    height:250px;
    width: 100%;

    overflow: hidden;
    margin-top: 10px;
}
.blogbox .imgbox img{
    height: 100%;
    width: 100%;

}
.blogbox .bloxexecept h2{
    font-size: clamp(18px, 4vw, 23px);
    margin: 10px 0px;
}
.blogbox .bloxexecept h2 a{
    text-decoration: none;
    color: var(--dark-color);
     transition: 1s;
}
.blogbox button{
    background-color: var(--fifth-color);
}
.blogbox .fa-calendar{
    color: var(--fifth-color);
}
.blogbox .innerbox{
    border-radius: 10px;
    padding: 10px;
    transition: 1s;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blogbox .innerbox:hover{
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    
}
.blogbox .innerbox:hover h2 a{
    color: var(--fifth-color);
}
.blogwrapper{
    padding: 50px 0px;
}
.blogwrapper .featureimage{
    height: 400px;
    width: 800px;
    margin-bottom: 15px;
}
@media (max-width:1200px){
    .blogwrapper .featureimage{
        height: 100%;
        width: 100%;
    }
    .blogwrapper .featureimage img{
    height: 100%;
    width: 100%;
}
}
.blogwrapper .featureimage img{
    height: 100%;
    width: 100%;
}
.blogwrapper ul li{
    line-height: 2.0;
}
.blogwrapper .recentpost h2{
   background-color: var(--fifth-color);
    padding: 10px 5px 10px 10px;
    color: var(--white);
}
.recentpost a{
    text-decoration: none;
    color: var(--dark-color);
}
.recentpost .recentpostitem{
    background-color: var(--light-gray);
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.recentpost .recentpostitem i{
    color: var(--fifth-color);
}
.recentpost .recentpostitem:hover a{
    color: var(--fourth-color);
}
.blogwrapper #intruction{
    background-color: var(--third-color);
    padding: 10px;
    border-radius: 6px;
}
#blogwrapdiv{
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    background-color: var(--light-gray);
}