@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #000000;
    --accent: #FFC107;
    --text: #333333;
    --light: #ffffff;
    --gray: #f5f5f5;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    font-size: 16px;
    color: var(--primary);
    background: #fff;
    padding-top: 77px;
}

h1,h2,h3,h4,h5,h6{
    font-weight: 600;
}
p{
    margin-bottom: 15px;
}

.container{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}
.max-w-900{
    max-width: 900px;
    margin: auto;
    font-size: 18px;
    margin-bottom: 25px;
}

.site-main .hero-section .wp-block-group__inner-container{
    padding: 0px;
}

.site-main .wp-block-group__inner-container{
    padding: 0 20px;
}
.site-main .wp-block-group__inner-container .container{ 
    padding: 0 20px;
}
.entry-content > [class*="wp-block-"]:not(:last-child){
    margin: 0;
}

.site-header{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background-color: hsla(0,0%,100%,.7) !important;
    left: 0;
    right: 0;
    backdrop-filter: blur(4px); /* Small blur effect */
    -webkit-backdrop-filter: blur(4px); /* For Safari support */
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .main-navigation .main-nav ul li a{
    background-color: #dfa138 !important;
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--light) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    line-height: 1;
}

header .main-navigation .main-nav ul li a:hover{
    background-color: var(--accent) !important;
    color: var(--light) !important;
}

.inside-header{
    padding: 10px 20px;
}

.site-logo img {
    width: 180px;
    height: 57px;
    object-fit: contain;
}

/***** Banner ******/
.hero-section {
    padding: 60px 0;
    background-image: radial-gradient(#97979733 1px,transparent 0);
    background-size: 16px 16px;

}

.hero-section h1 {
    font-size: 60px;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}
.hero-section .wp-block-image{
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.hero-section p {
    font-size: 24px;
    opacity: 0.9;
}

.cta-button a{
    background-color: #dfa138;
    border-radius: 10px;
    padding: 15px 20px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    line-height: 1;
    font-size: 16px;
}

/***** Zigzag Section ******/
.zigzag {
    padding: 60px 0;
    background: var(--light);
}

.zigzag:nth-child(odd) {
    background: #fff;
}
.zigzag:nth-child(even) {
    background: #f9f9f9;
    color: var(--primary);
}

.zigzag .wp-block-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

.zigzag-row {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.reverse .zigzag-row {
    flex-direction: row-reverse;
}

.wp-block-list{
    margin: 0 0 20px;
}
.wp-block-list li{
    position: relative;
    margin-top: 0;
    margin-bottom: 8px;
    padding-left: 30px;
    list-style: none;
}
.wp-block-list li::before {
  content: "";
  background-image: url("../image/check-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 4px;
}

/****** Why Choose Us Section ******/
.why-choose-section{
    padding: 60px 0;
    background-image: radial-gradient(#97979733 1px,transparent 0);
    background-size: 16px 16px;
    background-color: #f9f9f9;
}

.why-choose-inner {
    background-color: #fff;
    text-align: center;
    padding: 20px;
    align-items: center;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.why-choose-inner h3{
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
}
.why-choose-inner p{
    margin-bottom: 0;
}
.why-choose-inner .wp-block-image{
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.inner-banner{
    background-color: #FBF4E4;
    background-image: url("../image/Banner2.jpg");
    text-align: center;
    padding: 50px 0;
    align-items: center;
    border-radius: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-banner h1{
    margin-bottom: 0;
    font-size: 60px;
}
.inner-banner h1+p{
    margin-bottom: 0px !important;
    margin-top: 10px !important;
}


.contact-wrapper{
    overflow: hidden;
}

/***** Footer ******/
.site-footer{
     display: flex;
     justify-content: space-between;
     flex-direction: row-reverse;
     align-items: center;
     padding: 20px;
     background-color: #fff;
     max-width: 1320px;
     margin: 0 auto;
     border-top:solid 1px #e5e5e5 ;
}
.inside-site-info{
    background-color: #fff !important;
    padding: 0;
}
.site-footer:not(.footer-bar-active) .copyright-bar{
    background-color: #fff !important;
    padding: 0;
    margin: 0;
    color: #000;
    font-size: 16px;
}
.footer-widgets-container{
    padding: 0;
}
#menu-footer-menu{
    list-style: none;
    display: flex;
    gap: 1rem;
}
#menu-footer-menu li a{
    font-size: 16px;
    color: #000;
    transition: all 0.3s ease-in-out;
}
#menu-footer-menu li a:hover{
    text-decoration: underline;
}

/******* Contact Section *******/
.form-wrapper {
    max-width: 800px;
    margin: 20px auto 50px;
    border-radius: 20px;
    box-shadow: 0 5px 24px rgba(0,0,0,.1);
    padding: 40px;
  }
.form-wrapper .form-inner label{
    display: flex;
}
.form-wrapper .form-inner label span:first-child{
    margin-top: 10px;
}
.form-wrapper .form-inner label span{
    min-width: 150px;
}

.form-wrapper .form-inner label span:has(input),
.form-wrapper .form-inner label span:has(textarea){
    width: calc(100% - 150px);
}
.form-wrapper .form-inner label span input,
.form-wrapper .form-inner label span textarea{
    width: 100%;
    border: 1px solid #dbdbdb;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 1rem;
    background-color: #fff;
}
.form-wrapper .form-inner label span textarea{
    max-height: 120px;
}
.form-wrapper .submit-btn{
    position: relative;
    left: 150px;
}
.form-wrapper .submit-btn input{
    background-color: #dfa138 !important;
  border-radius: 10px;
  padding: 15px 20px;
  color: var(--light) !important;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
  line-height: 1;
}


@media (max-width: 968px) {
    .zigzag-row {
        flex-direction: column;
        gap: 2rem;
    }

    .reverse .zigzag-row {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .slide {
        height: 300px;
    }
    .inner-banner h1{
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    .site-footer{
        flex-direction: column;
    }
    .site-footer:not(.footer-bar-active) .copyright-bar, #menu-footer-menu li a{
        font-size: 14px;
    }
    .inner-banner h1{
        font-size: 36px;
    }
}


@media screen and (max-width: 640px) {
    
    .form-wrapper{
        padding: 20px;
    }
    .form-wrapper .form-inner label{
        flex-direction: column;
    }
    .form-wrapper .form-inner label span:first-child{
        margin-top: 0;
        margin-bottom: 8px;
        font-size: 14px;
    }
    .form-wrapper .form-inner label span, 
    .form-wrapper .form-inner label span:has(input),
    .form-wrapper .form-inner label span:has(textarea){
        width: 100%;
    }
    .form-wrapper .form-inner label span input, .form-wrapper .form-inner label span textarea{
        padding: 8px;
        font-size: 14px;
    }
    .form-wrapper .submit-btn{
        position: relative;
        left: 0;
    }
}