@font-face {
  font-family: "MyFont";
  src: url("../fonts/SFPRODISPLAYMEDIUM.OTF") format("opentype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "MyFontBold";
  src: url("../fonts/SFPRODISPLAYBOLD.OTF") format("opentype");
  font-weight: 900;
  font-style: normal;
}

:root {
  --main-color: #e99e24;
	--main-hover: #cc9233;
  --black: #1d1d1d;
  --white: #fff;
  --off-white: #f1f1f1;
  --gray: #7d7d7d;

  /* Fonts */

  --big-font: 80px;
  --h-one: 40px;
  --h-two: 30px;
  --h-three: 25px;
  --p-tag: 16px;
  --medium-font: 14px;
  --regular-font: 18px;
  --bold-font: 20px;
  --small-font: 12px;

  /* Transaction */
  --transaction: 0.3s linear;
  --transaction-in: 0.3s ease-in;
  --transaction-in-out: 0.3s ease-in-out;
  --transaction-out: 0.3s ease-out;
}
*,html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "MyFont", sans-serif;
  font-weight: 900;
  font-style: normal;
  box-sizing: border-box;
  background: var(--white);
  transition: var(--transaction);
}
ul,
a {
  text-decoration: none !important;
  list-style: none;
  font-family: "MyFont", sans-serif;
  font-weight: 100 !important;
  font-style: normal;
}
.p-100 {
  padding: 100px 0;
}
.p-50 {
  padding: 50px 0;
}
.p-30 {
  padding: 30px 0;
}
.pb-100 {
  padding-bottom: 100px;
}
.pb-50 {
  padding-bottom: 50px;
}
.pb {
  padding-bottom: 30px;
}
a {
  cursor: pointer;
  color: var(--black) !important;
}
ul {
  margin: 0 !important;
  padding: 0 !important;
}
img {
  width: 100%;
  display: block;
  transition: var(--transaction);
}
h1 {
  font-family: "MyFontbold", sans-serif;
  font-size: var(--h-one);
  text-transform: capitalize;
}
h2 {
  font-family: "MyFontbold", sans-serif;
  font-size: var(--h-two);
  text-transform: capitalize;
}
h3 {
  font-family: "MyFontbold", sans-serif;
  font-size: var(--h-three);
  text-transform: capitalize;
}
p {
  font-family: "MyFont" sans-serif;
  color: var(--gray);
  font-size: 16px;
}

/* Navbar */
header {
  background-color: var(--white);
  padding: 10px 0;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9 !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .logo {
  width: 120px;
  display: block;
}
header .nav-items {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 50px;
}
header .nav-items .nav-link {
  position: relative;
  text-align: center;
  color: var(--gray) !important;
  letter-spacing: 0.5px
}
header .nav-items .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--gray) !important;
  display: block;
  transition: var(--transaction);
  transform-origin: left;
}
header .nav-items .nav-link:hover::after {
  width: 100%;
}
.btn {
  border: none;
  outline: none;
  padding: 5px 20px !important;
  font-family: "MyFont" sans-serif !important;
  font-weight: 600 !important;
  background: var(--main-color) !important;
  color: var(--off-white) !important;
  transition: var(--transaction);
}
.btn:hover{
	background: var(--main-hover) !important;
}
.menu-toggle {
  display: none;
  cursor: pointer;
  transition: var(--transaction);
}
.menu-toggle .toggle,
.menu-toggle .close {
  display: none;
  cursor: pointer;
  z-index: 2;
  color: var(--black);
}
.menu-toggle .close {
  font-weight: 500;
}

section {
  padding: 50px 0;
  scroll-margin-top: 100px;
}

/* Banner Base */
.banner {
  width: 100%;
  min-height: 80vh;
  position: relative;
  background: url("../images/banner.jpg") center/cover no-repeat;
  padding: 100px 0;
  display: flex;
  align-items: center;
}

.banner .banner-text-content {
  position: relative;
  height: 100%;
}

.text-content h1 {
  font-size: var(--big-font);
  line-height: 1.2;
}

.text-content p {
  font-size: var(--regular-font);
  margin-top: 15px;
}

.mail-box {
  margin: 40px 0;
  background: var(--white);
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.mail h3 {
  padding-bottom: 15px;
  font-size: var(--p-tag) !important;
font-weight: 600;
}

.mail {
  max-width: 600px;
  width: 100%;
  background: var(--white);
  padding: 40px 20px;
  border-radius: 6px;
  margin: 40px 0 20px 0;
  box-sizing: border-box;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.emailbox{
	border: none;
	border-bottom: 1px solid var(--main-color);
	padding: 5px;
	background: transparent;
	outline: none;
}
.submit{
	padding: 10px 20px;
	background: var(--main-color);
	border: none;
	outline: none;
	border-radius: 6px;
	color: var(--white);
}
/* banner end */


.img-container {
  text-align: center;
  width: 100%;
}

.img-container img {
  max-width: 100%;
  height: auto;
}

/* Service Section */
.heading {
  margin-bottom: 50px;
}
.heading h3 {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  display: inline-block;
  font-size: var(--medium-font);
  padding: 10px 15px;
  border-radius: 6px;
  color: var(--main-color) !important;
}

.service-box {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 50px !important;
  padding: 20px;
  border-radius: 6px;
  height: 350px;
}
.service-box .service-name h3 {
  font-size: var(--medium-font) !important;
  text-align: end;
}
.service-box .service-img {
  width: 75px;
  display: block;
  margin-bottom: 10px;
}
.service-details h3 {
  font-size: 20px !important;
  font-weight: 900 !important;
}

/* client slide */

.heading p {
  font-weight: 600;
  font-size: var(--h-three) !important;
  text-transform: uppercase;
  position: relative;
  padding-left: 63px;
}
.heading p {
  position: relative;
}
.heading p::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 4%;
  top: 20px;
  left: 0px;
  background-color: var(--off-white);
}
.heading p::before {
  position: absolute;
  content: "";
  height: 1px;
  max-width: 45%;
  width: 100%;
  top: 20px;
  right: 0px;
  background-color: var(--off-white);
}

/* Client swiper */

.mySwiper {
  width: 100%;
  padding: 20px 0;
  overflow: hidden;
}
.line-one {
  color: #ccc;
}

.mySwiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.mySwiper .swiper-slide img {
  max-height: 60px;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease-in-out;
}

.mySwiper .swiper-slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
/* Client swiper  END*/

/* Footer */

footer {
  background: var(--off-white);
  padding: 80px 0 0px 0;
}
footer .logo {
  width: 120px;
  display: block;
  padding-bottom: 10px;
}
footer .social-items {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
}
.quick-links h3 {
  padding-bottom: 10px;
}
.quick-links .list-items .item-list {
  padding-bottom: 10px;
  padding-left: 5px;
}
.quick-links .list-items .item-list .item-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-weight: 300 !important;
  font-family: "MyFont" sans-serif !important;
  color: #7d7d7d !important;
  transition: var(--transaction);
  font-size: var(--medium-font);
}
.quick-links .list-items .item-list .item-link:hover {
  color: var(--black) !important;
}
.quick-links .list-items .item-list .item-link i {
  font-size: var(--medium-font);
  margin-top: 5px;
  color: var(--main-color);
}
.subscribe .input-bx input[type="email"] {
  outline: none;
  padding: 5px 8px;
  border: 1px solid var(--white);
  border-radius: 6px;
  display: inline-block;
}
.subscribe .submit-btn input[type="submit"] {
  border: none;
  outline: none;
  background: var(--main-color);
  padding: 5px 15px;
  border-radius: 6px;
  color: var(--off-white);
  font-weight: 600;
  max-width: 80%;
  width: auto;
}

/* Call To Action */
.call-to-cation {
  padding: 50px 20px;
  background: linear-gradient(
    90deg,
    rgba(233, 158, 36, 0.08),
    rgba(247, 168, 74, 0.04)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 6px;
}
.cta-call a {
  padding: 10px 15px;
  border-radius: 6px;
  background: var(--main-color);
  color: var(--off-white) !important;
  font-weight: 400;
}

/* Call To Action End */

/* Testimonial */
.testimonial {
  background: var(--white);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid var(--main-color);
  margin-bottom: 50px;
}
.clientSwiper .swiper-pagination-bullet-active {
  background: var(--main-color) !important;
}
.testimonial .stars-box i {
  font-size: var(--small-font) !important;
  color: var(--main-color);
  margin-bottom: 20px;
}
.testimonial h3 {
  font-size: var(--medium-font);
}
/* Testimonial END*/

/*What app  */

.whats-app {
  position: relative;
  transition: var(--transaction-in-out);
  z-index: 1;
}
.whats-app a {
  position: fixed;
  right: 0;
  bottom: 40%;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    rgba(225, 225, 225, 0.15),
    rgba(225, 225, 225, 0.15)
  );
  backdrop-filter: blur(10px);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.whats-app a img {
  padding: 10px;
}

/* Whats app END */

/* About US */
.about-box {
  padding: 80px 50px 50px 50px;
}
.counter-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 0;
  background: #fff;
}
.counter-box {
  text-align: center;
}
.counter-box h2 {
  font-size: 40px;
  color: var(--main-color); /* your brand color */
  margin-bottom: 10px;
}
.counter-box p {
  font-size: var(--medium-font);
  color: var(--gray);
}
/* About Us End */

/* Portfolio */
.portfolio-img {
  background: var(--off-white);
  padding: 10px;
  filter: grayscale(1);
  transition: var(--transaction-out);
  overflow: hidden;
  border: 1px solid transparent;
}
.portfolio-img:hover {
  filter: grayscale(0);
  border: 1px solid var(--main-color);
}
.portfolio-img:hover img {
  transform: scale(1.01);
}
/* Portfolio */

/* Contact Us */
.contact-form {
  width: 100%; 
  background: linear-gradient(rgba(225,225,225,0.15), rgba(225,225,225,0.15));
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  padding: 40px 40px 40px 40px;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  margin: 0 auto;
}

.contact-form .input-box {
  display: flex;
  gap: 20px;  /* reduced gap for better balance */
  width: 100%;
}

.contact-form .input {
  flex: 1;
}

.contact-form .wpcf7 input,
.contact-form .wpcf7 select {
  width: 100%;
  padding: 12px 15px;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
  background: #fff;
  font-size: 14px;
}

.contact-form .wpcf7 select {
  appearance: none;
/*   background: url("data:image/svg+xml;utf8,<svg fill='gray' height='20' viewBox='0 0 24 24' width='20'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 10px center; */
  background-size: 16px;
  cursor: pointer;
}
/* Style the dropdown options */
.contact-form select option:checked,
.contact-form select option:hover,
.contact-form select:focus option:checked {
  background-color: #E99E24 !important;
  color: #fff !important;
}

.contact-form .submit-button input[type="submit"] {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: #E99E24;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}


/* Contact Us End */


/*======================
    404 page
=======================*/

.page_404 {
  width: 100%;
  padding: 40px 0;
  background: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  
}
.error-img{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.error-img img{
  max-width: 400px;
  width: 100%;
  display: block;
}
.btn.error-btn{
  margin-top: 25px;
  background: #E99E24;
  padding: 10px 25px;
  border-radius: 50px;
  color: #fff;
  border: none;
  outline: none;
  cursor: pointer;
}


