@media (max-width: 1500px) {
  :root {
    --big-font: 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --big-font: 50px;
    --h-one: 32px;
    --h-two: 24px;
    --h-three: 20px;
    --p-tag: 15px;
    --medium-font: 13px;
    --small-font: 11px;
  }
}

/* ✅ Small screens (Mobiles, up to 767px) */
@media (max-width: 767px) {
  :root {
    --big-font: 40px;
    --h-one: 26px;
    --h-two: 20px;
    --h-three: 18px;
    --p-tag: 14px;
    --medium-font: 12px;
    --small-font: 10px;
  }
}


@media (max-width: 991px) {
  .menu-toggle {
    display: block;
  }
  .menu-toggle .toggle {
    display: block;
  }
  .menu-toggle .toggle.hide {
    display: none;
  }
  .menu-toggle .view {
    display: block;
  }
  .menu-toggle span.remove {
    display: none;
  }
  .menu-toggle .close.open {
    display: block;
  }
  .nav-bar .nav-items {
    position: absolute;
    flex-direction: column;
    top: 0;
    right: 0;
    background: #fff;
    width: 100%;
    gap: 30px;
    margin-top: 61px !important;
    /* display: none; */
    padding: 50px 0 !important;
    transform: translateY(-500px);
    transition: 0.3s linear;
    transform-origin: top;
  }
  .nav-bar .nav-items.open {
    transform: translateY(0);
  }
  .btn.btn-nav {
    display: none;
  }
  .mail-box {
    padding: 25px;
  }
  .mail-box button {
    padding: 10px 0;
  }
  /* CTA */
  .call-to-cation {
    flex-direction: column;
    text-align: center;
    row-gap: 20px;
  }
}


@media (max-width: 776px) {
  section {
    padding: 20px 0;
  }
  header {
    box-shadow: 0px 0px 3px #000;
    z-index: 99;
  }
  header .logo {
    width: 100px;
  }
  .img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 50px;
  }
  /* .img-container img {
    width: 50%;
    text-align: center;
  } */
  .banner-box {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
  }
  .banner-text-content {
    text-align: center;
  }

  .service-box {
    height: auto;
  }
  .heading p::after,
  .heading p::before {
    width: 0;
  }
  .swiper::after,
  .swiper::before {
    width: 20px;
  }

  /* whats app*/
  .whats-app a {
    width: 40px;
    height: 40px;
  }

  /* About */
  .about-box {
    padding: 0;
  }

  
  /* Swiper */
  .mySwiper .swiper-slide img {
    filter: grayscale(0%);
  }
  /* Portfolio */
  .portfolio-img {
    filter: grayscale(0);
  }
	
}
/* Responsive Form */
@media (max-width: 776px){
.contact-form .input-box {
  display: block;
	}
.mail {
    padding: 30px 15px;
  }

  .mail .input-box {
    flex-direction: column;
    padding: 15px;
	background: transparent; 
	
  }

  .mail .input-box input[type="submit"] {
    width: 100%;
  }

  .mail .input-box input[type="email"],
  .mail .input-box input[type="text"] {
    width: 100%;
	background: var(--off-white);
	  text-align:center;
	  border-radius: 6px;
	  margin-bottom: 0;
  }
}

@media (max-width: 1400px) {
  .heading p::before {
    max-width: 40%;
  }
}
@media (max-width: 1370px) {
  .heading p::before {
    max-width: 35%;
  }
}
@media (max-width: 1200px) {
  .heading p::before {
    max-width: 25%;
  }
}
@media (max-width: 991px) {
  .heading p::before {
    max-width: 15%;
  }
}

@media (max-width: 776px) {
  .heading p {
    padding-left: 0;
    text-align: center;
    position: relative;
  }
  .heading p::before {
    width: 0;
  }
  .heading p::after {
    width: 100px;
    background: #7d7d7d !important;
    top: 100%;
    bottom: 0;
    left: 45%;
    margin-top: 10px;
  }
}
@media (max-width: 380px) {
  .heading p {
    padding-left: 0;
    text-align: center;
    position: relative;
  }
  .heading p::before {
    width: 0;
  }
  .heading p::after {
    width: 100px;
    background: #7d7d7d !important;
    top: 100%;
    bottom: 0;
    left: 35%;
    margin-top: 10px;
  }
}

/* Banner Screen */
/* Large screens (desktops) */
@media (min-width: 1200px) {
  .text-content h1 {
    font-size: 70px;
  }
  .mail-box {
    max-width: 500px;
  }
}

/* Laptops */
@media (max-width: 1199px) and (min-width: 992px) {
  .text-content h1 {
    font-size: 60px;
  }
  .mail-box {
    padding: 25px;
  }
}

/* Tablets */
@media (max-width: 991px) and (min-width: 768px) {
  .banner {
    padding: 70px 0;
    text-align: center;
  }
  .text-content h1 {
    font-size: 45px;
  }
  .mail-box {
    padding: 20px;
  }
  .mail-box .input-field {
    flex-direction: column;
  }
  .mail-box input, 
  .mail-box button {
    width: 100%;
    margin: 5px 0;
  }
}

/* Mobiles */
@media (max-width: 767px) {
  .banner {
    padding: 50px 20px;
    min-height: auto;
    text-align: center;
  }
  .text-content h1 {
    font-size: 32px;
  }
  .text-content p {
    font-size: 14px;
  }
  .mail-box {
    padding: 20px;
  }
  .mail-box h3 {
    font-size: 18px;
  }
  .mail-box .input-field {
    flex-direction: column;
  }
  .mail-box input, 
  .mail-box button {
    width: 100%;
    margin: 5px 0;
  }
	.input-block{
	display: block;
	justify-content: center;
	padding: 20px 10px;	
	}
	.input-block input[type="email"]{
	 margin-bottom: 10px;
	padding: 0 !important;	
	}
	.input-block input[type="email"]::placeholder{
   text-align: center;
    }
}

