body {
    box-sizing: border-box;
}
body, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: "Nunito", sans-serif;
}
a {
    text-decoration: none;
}
p {
    font-family: "Nunito", sans-serif;
}

h1 {
    font-family: "Oswald", sans-serif;
}
img {
    max-width: 100%;
}

.golden_text {
    color: #ab7f58;
}
.primary_btn {
    background: transparent;
    color: #212529;
    border: 1px solid #212529;
    border-radius: 10px;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all .5s ease;
    display: inline-block;
}
.primary_btn:hover {
    background: #ab7f58;
    border-color: #ab7f58;
    color: #fff;
}
.section_padding {
    padding-top: 80px;
    padding-bottom: 80px;
}
.section_title {
    font-size: 40px;
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}
.section_title:after {
    content: "";
    display: block;
    width: 100px;
    height: 2px;
    background-color: #ab7f58;
    margin-top: 10px;
}
.section_divider {
    width: 100%;
    border-bottom: 1px solid #8b8787;
}
table {
    width: 100%;
    border-collapse: collapse;
}

/* Header css */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 15px 0;
    transition: all 0.3s ease;
}
header.scrolled {
  background-color: #171717;
  color: white;
  padding: 5px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
header .header_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.logo_section .logo {
    max-width: 160px;
    transition: all .5s ease;
}
.logo_section .sticky_logo {
    display: none;
    max-width: 80px;
    transition: all .5s ease;
}
.scrolled .logo_section .logo {
    display: none;
}
.scrolled .logo_section .sticky_logo {
    display: block;
}
.header_menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
}
.header_menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    transition: all .5s ease;
}
.header_menu ul li a:hover,
.header_menu ul li.active a,
.inner_page_header .header_menu ul li.active a,
.inner_page_header .header_menu ul li a:hover {
    color: #ab7f58;
    border-bottom: 1px solid;
}
header.inner_page_header {
    /* position: static; */
    padding: 5px 0;
}
header.inner_page_header.scrolled {
    /* position: fixed; */
    background: #fff;
}
.inner_page_header .logo_section .logo {
    max-width: 80px;
}
.inner_page_header .header_menu ul li a {
    color: #171717;
}
#nav-button {
    display: none;
}
#nav-button {
  width: 32px;
  height: 27px;
  position: relative;
  z-index: 99;
  margin-right: 20px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#nav-button span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
.inner_page_header #nav-button span {
    background: #171717;
}
#nav-button span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-button span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-button span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

header.open #nav-button span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

header.open #nav-button span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

header.open #nav-button span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
  left: 8px;
}

/* Footer css */
footer {
    background-color: #171717;
    padding: 80px 0 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../images/footer-bg.jpg);
    background-attachment: fixed;
    position: relative;
}
footer:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: #171717;
    z-index: 0;
    opacity: .71;
}
footer .footer_content {
    z-index: 1;
    position: relative;
}
.footer_log_desc {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
}
.footer_log_desc .footer_logo {
    max-width: 160px;
}
.footer_log_desc p {
    font-size: 16px;
    max-width: 86%;
}
footer .footer_title {
    font-size: 24px;
    color: #a9805b;
    font-family: "Oswald", sans-serif;
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
footer ul li a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
}
footer ul li a:hover {
    color: #a9805b;
}
footer ul li img {
    max-width: 28px;
}
footer .social_media_content {
    align-items: center;
    gap: 4px;
    padding-top: 15px;
    border-top: 1px dashed rgba(242, 242, 242, 0.11);
}
footer .social_media_content a img {
    max-width: 22px;
}
footer .social_media_content a {
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all .5s ease;
}
footer .social_media_content a:hover {
    background: #a9805b;
}
footer .copyright_text {
    color: #fff;
    font-size: 15px;
    text-align: center;
    margin: 0;
    border-top: 1px solid rgba(242, 242, 242, 0.11);
    padding-top: 15px;
    margin-top: 30px;
}

/* Banner Css */
.snow-container {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
    background: radial-gradient(circle at center, #121010, #292929);
    /* background: radial-gradient(circle at center, #0a0a0a, #000); */
    display: flex;
    align-items: center;
}
.snow-container canvas {
    position: absolute;
    top: 0;
    left: 0;
}
.banner_section .content {
    /* margin-bottom: 50px; */
    margin-top: 100px;
    position: relative;
}
.banner_section .snow-container:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url(../images/logo-white.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: 52%;
    /* opacity: .2; */
    -webkit-animation: zoomeffect 7s infinite;
   -moz-animation: zoomeffect 7s infinite;
   animation: zoomeffect 7s infinite;
}
.banner_section h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 100px;
    max-width: 780px;
}
.banner_section h1 span {
    font-size: 100px;
    font-family: "Oswald", sans-serif;
}
.banner_section .since_text {
    text-transform: uppercase;
    border-bottom: 1px solid;
    display: inline-block;
}
.banner_section p {
    color: #a1a1a1;
    font-size: 20px;
}

/* Home page css */
.aboutus_section .about_ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.aboutus_section .about_ul li {
    padding: 15px 30px;
    /* background: rgb(169 128 91 / 30%); */
    border-radius: 10px;
    margin-bottom: 24px;
    /* color: #ddd; */
    font-size: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.aboutus_section .about_ul li span {
    color: #a9805b;
    padding-right: 30px;
    position: relative;
}
.aboutus_section .about_ul li span:after {
    width: 1px;
    height: 100%;
    content: "";
    display: inline-block;
    background-color: #a9805b;
    position: absolute;
    top: 0;
    right: 15px;
}
.infrastructure_section .image-box {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
}
.infrastructure_section .image-box img {
    width: 100%;
  max-height: 415px;
  object-fit: cover;
}
/* .infrastructure_section .image-box::after {
    content: "";
    position: absolute;
    top: -3px;
    right: -3px;
    width: 100px;
    height: 100px;
    background: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.infrastructure_section .image-box.left::after {
    top: -3px;
    left: -3px;
    right: auto;
    clip-path: polygon(0 0, 0 100%, 100% 0);
} */
.weserve_section .serve_cards {
    padding-top: 30px;
}
.weserve_section .serve_cards .card {
    background: #f8f7f5;
    border-radius: 14px;
    border: 1px solid #ebe9e4;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    height: 100%;
    transition: border .2s;
}
.weserve_section .serve_cards .card:hover {
    border-color: #a9805b;
}
.weserve_section .serve_cards .card-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0;
}
.weserve_section .serve_cards .card-img {
    width: 140px;
    height: 140px;
    position: relative;
    /* border-radius: 50%; */
    overflow: hidden;
}
.weserve_section .serve_cards .card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product_section,
.infrastructure_section {
    background: #f0eeea;
} 
.product_section .table-wrap {
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #ddd;
    background: #fff;
}
.product_section .table-wrap thead tr {
    background: #ab7f58;
}
.product_section .table-wrap th {
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    text-align: left;
}
.product_section .table-wrap tbody tr {
    border-bottom: 1px solid #f0eeea;
}
.product_section .table-wrap td {
    padding: 15px 20px;
    font-size: 14px;
    color: #333;
}
.product_section .table-wrap td:first-child {
    font-weight: 700;
    color: #0f1f17;
}
.product_section .table-wrap .comp-pill {
    display: inline-block;
    background: #f5f4f0;
    color: #444;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 6px;
}
.product_section .table-wrap .mesh-pill {
    display: inline-block;
   background: rgb(171 127 88 / 20%);
    color: #ab7f58;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}
.inner_page_banner {
    margin-top: 90px;
    background-color: #171717;
    padding: 20px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: rgba(0, 0, 0, 0);
    background-image: url(../images/footer-bg.jpg);
    background-attachment: fixed;
    position: relative;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner_page_banner:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    background: #171717;
    z-index: 0;
    opacity: .71;
}
.inner_page_banner .inner_banner_content {
    z-index: 1;
    position: relative;
}
.inner_page_banner .inner_page_banner_title {
    text-align: center;
    color: #fff;
    margin: 0;
}
.aboutus_ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.aboutus_ul li {
    font-weight: 600;
    background: rgb(171 127 88 / 20%);
    padding: 5px 15px;
    border-radius: 12px;
}
.contact_info .section_title {
    font-size: 28px;
    margin-bottom: 15px;
}
.contact_info .info_heading {
    font-weight: 700;
    margin-bottom: 4px;
}
.contact_info .contact_info_block {
    display: flex;
    gap: 10px;
}
.contact_info_content p {
    margin-bottom: 5px;
}
.contact_info .contact_info_block .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: #a9805b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact_info .contact_info_block .icon img {
    max-width: 28px;
}
.contact_form h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
}
.contact_form input:not([type="radio"]),
.contact_form textarea {
    border: 1px solid #bbbbbb;
    border-radius: 8px;
    width: 100%;
    margin-bottom: 15px;
    padding: 0 15px;
    background: transparent;
    height: 42px;
}
.contact_form input[type="radio"] {
  accent-color: #a9805b;
}
.contact_form textarea {
    height: 100px;
    padding: 15px;
}
.contact_form input:focus,
.contact_form textarea:focus {
    outline: none;
    border-color: #a9805b;
}
.contact_form button {
    background: #a9805b;
    border: 1px solid #a9805b;
    color: #fff;
    border-radius: 10px;
    padding: 8px 20px;
    text-transform: capitalize;
    transition: all .5s ease;
}
.contact_form button:hover {
    background: transparent;
    border-color: #a9805b;
    color: #a9805b;
}
.vision_section .vision_wrap {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 10px;
}
.vision_section .vision_wrap .vision_block {
    padding: 30px;
    border-right: 1px solid #ddd;
}
.vision_section .vision_wrap .vision_block:last-child {
    border-right: 0;
}
.vision_section .vision_wrap .vision_block .icon {
    width: 60px;
    height: 60px;
    background: #a9805b;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vision_section .vision_wrap .vision_block .icon img {
    max-width: 30px;
}
.vision_section .vision_wrap .vision_block h5 {
    font-weight: 700;
    color: #a7815e;
    margin: 20px 0 10px;
}
.vision_section .vision_wrap .vision_block p {
    color: #4d4d4d;
    margin: 0;
}
.partner_section .partner_wrap .partner_block {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 15px;
    height: 100%;
}
.partner_section .partner_wrap .partner_block .partner_icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: rgb(169 128 91 / 20%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner_section .partner_wrap .partner_block .partner_icon img {
    max-width: 28px;
}
.partner_section .partner_wrap .partner_block .partner_content h6 {
    font-weight: 700;
}
.partner_section .partner_wrap .partner_block .partner_content p {
    font-size: 16px;
    color: #575757;
    margin: 0;
}
.product_gallery .item img {
    border-radius: 12px;
}


@-webkit-keyframes zoomeffect{
		0%{
			background-position:center;
		  transform:scale(1,1);
		}
		50%{
			background-position:center;
		  transform:scale(1.2,1.2);
		}
		100%{
			background-position:center;
		  transform:scale(1,1);
		}
}
@keyframes zoomeffect{
		0%{
			background-position:center;
		  transform:scale(1,1);
		}
		50%{
			background-position:center;
		  transform:scale(1.2,1.2);
		}
		100%{
			background-position:center;
		  transform:scale(1,1);
		}
}