/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Variables */
:root {
  --primary-color: #ffa323;
  --secondary-color: #f41f31;
  --white-color: #fff;
  --black-color: #0a0a0a;
  --bg-gray-color: #f5f5f5;

  /*Text color variable*/
  --text-primary: #ffa323;
  --text-secondary: #f41f31;
  --text-white: #fff;
  --text-black: #0a0a0a;
  --text-color: #545454;
  --text-gray: #aba8b0;
  --text-gray-light: #484848;

  /*Font Family*/
  --primary-font: "Poppins", sans-serif;
  --secondary-font: "Nunito Sans", sans-serif;
}

a {
  text-decoration: none;
}
a:hover,
a:focus {
  color: var(--text-primary);
}
ul {
  margin: 0;
  padding: 0;
}
/* Custon CSS */
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--primary-font);
  font-size: 100%;
  font-weight: 400;
}

::-webkit-scrollbar {
  width: 0.425rem;
}
::-webkit-scrollbar-track {
  background: var(--white-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}
h1 {
  font-size: 3.5714rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text-white);
  text-transform: capitalize;
}
h2 {
  font-size: 2.8571rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-black);
  text-transform: capitalize;
}
h3 {
  font-size: 1.8571rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-black);
  text-transform: capitalize;
}
h4 {
  font-size: 1.7143rem;
  font-weight: 600;
  line-height: 2.5rem;
  color: var(--text-gray);
  max-width: 75%;
}
p {
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 400;
  line-height: 1.75rem;
  letter-spacing: 0.0625rem;
  margin-bottom: 0;
  font-family: var(--secondary-font);
}
span {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--secondary-font);
  color: var(--text-primary);
  margin-bottom: 1.0714rem;
  position: relative;
}
span:after {
  position: absolute;
  left: 0;
  bottom: -0.1429rem;
  content: "";
  background-color: var(--secondary-color);
  width: 2rem;
  height: 0.1429rem;
}
.main-btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.8571rem;
  font-weight: 400;
  border-radius: 0.3571rem;
  padding: 0.7143rem 1.4286rem;
  text-align: center;
  border: -0.1429rem solid transparent;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.main-btn:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.style-1 {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.style-1:after {
  top: -0.1429rem;
  left: -0.1429rem;
  width: calc(100% + 0.2857rem);
  height: 0;
  background: var(--primary-color);
  border-radius: 0.3571rem;
}
.main-btn:hover:after {
  visibility: visible;
  opacity: 1;
}
.style-1:hover::after {
  height: calc(100% + 0.2857rem);
}
.wrapper {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

/*header css */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.header-top .container {
  border-bottom: 0.0714rem dashed var(--text-gray-light);
  padding: 1rem 0;
}
.header-top .contact-item {
  display: flex;
  align-items: center;
  margin-right: 0.625rem;
}
.header-top .contact-item i {
  font-size: 1.2857rem;
  color: var(--text-primary);
  margin-right: 0.5714rem;
}
.header-top .contact-item p,
.header-top .contact-item a {
  color: var(--text-white);
}
.navigation-wrap .navbar-brand img {
  width: 9rem;
}
.navigation-wrap .navbar-brand {
  color: var(--secondary-color);
}
.navigation-wrap .nav-item {
  padding: 0 0.625rem;
  transition: all 200ms linear;
  list-style: none;
}
.navigation-wrap li {
  list-style: none;
}
.navbar-togler:focus {
  outline: unset;
  border: unset;
  box-shadow: none;
}
.navigation-wrap .nav-link {
  font-size: 1rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text-white);
  letter-spacing: 0.0625rem;
}
.navigation-wrap .nav-link:hover {
  color: var(--text-primary);
}

/* Change navbar styling on scroll */
.navigation-wrap.scroll-on {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--black-color);
  box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.09);
  transition: all 0.15s ease-in-out 0s;
}

/* Top banner */
.top-banner {
  width: 100%;
  background: url(../photo-1431324155629-1a6deb1dec8d.avif) no-repeat
    center;
  background-size: cover;
  padding: 17.8571rem 0 9.375rem;
}

/* About us */
.about-section p {
  text-align: justify;
}
/*Services Section */
.service-section {
  width: 100%;
  height: 100%;
  /* background: url("../images/back22.png"); */
  background-size: cover;
  text-align: center;
  background-color: rgb(249, 246, 240);
}
.service-section span::after {
  left: 36.5%;
  transform: translateX(-50%);
}
.service-section .service-cards {
  margin-top: 6.4286rem;
}
.service-section .card {
  padding: 5.3571rem 0.3571rem 0.7143rem;
  border-radius: 0.3571rem;
  border: 0;
  -webkit-box-shadow: 0 0 1.0714rem rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1.0714rem rgba(0, 0, 0, 0.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-section .card img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg-gray-colo);
  border-radius: 50%;
  padding: 1.0714rem;
  width: 10.7143rem;
  height: 10.7142rem;
}
.service-section .card:hover {
  background: var(--secondary-color);
}
.service-section .card:hover h3,
.service-section .card:hover p {
  color: var(--text-white);
}
/* features */
.feature-section {
  height: 100%;
  width: 100%;
  /* background: url("../images/back33.png"); */
  background-size: cover;
}
.feature-section span::after {
  left: 9%;
  transform: translateX(-50%);
}
/*.feature-section h2{
    color: var(--text-b);
}*/
.feature-section .card {
  box-shadow: 0 0 1.0714rem rgba(0, 0, 0, 0.1);
  border: 0;
  border-radius: 0;
}
.feature-section .card .feature-img {
  overflow: hidden;
}
.feature-section .card .feature-img img {
  object-fit: cover;
  -webkit-transition: 0.8s;
  transition: 0.8s;
  overflow: hidden;
}
.feature-section .card .price {
  font-size: 1.4286rem;
  font-weight: 500;
  margin-top: 0.7143rem;
  color: var(--text-black);
}
.feature-section .card .price del {
  color: var(--text-gray);
  margin-left: 0.5rem;
}
.feature-section .card:hover h3 {
  color: var(--text-secondary);
}
.feature-section .card:hover img {
  -webkit-transform: scale(1.15) rotate(5deg);
  transform: scale(1.15) rotate(5deg);
}
/*DELIVERY sECTION*/
.delivery-section {
  width: 100%;
  height: 100%;
  background: url("./images/back33.png");
  background-size: cover;
  background-color: rgb(249, 246, 240);
}
/*Download app section */
.app-section {
  width: 100%;
  height: 100%;
  /* background: url(""); */
  background-repeat: no-repeat;
  background-size: cover;
  background-color: rgb(253, 253, 238);
}
.app-section h2,
.app-section p {
  color: var((--text-black));
}
.app-section h4:hover {
  color: var(--text-primary);
}
.download-app-btn img {
  max-width: 11.8571rem;
  width: 100%;
}
/*Newsletter Section*/
.newsletter {
  width: 100%;
  height: 100%;
  background-image: url("../images/nee.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.newsletter span::after {
  left: 23.5%;
  transform: translateX(-50%);
}
.newsletter .form-group {
  position: relative;
  box-shadow: 0 0 1.0714rem rgba(0, 0, 0, 0.1);
}
.newsletter .form-group input {
  width: 100%;
  height: 4.2857rem;
  border-radius: 0.3571rem;
  background: var(--white-color);
  color: var(--text-gray);
  padding: 1.4286rem 0.7143rem;
  border: none;
}
.newsletter .form-group input:focus {
  border: 0;
  outline: none;
  box-shadow: none;
}
.newsletter .form-group button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  border: none;
  padding: 0.3571rem 1.4286rem;
  border-radius: 0 0.3571rem 0.3571rem 0;
  background: var(--secondary-color);
  align-items: center;
  justify-content: cent;
}
.newsletter .form-group button i {
  color: var(--text-white);
  font-size: 1.5714rem;
  line-height: 0.7;
}
/* Footer section */
.footer {
  background: var(--black-color);
}
.footer .footer-link {
  font-size: 1rem;
  color: var(--text-white);
  padding: 0 1.875rem;
}
.footer a {
  font-size: 1.5rem;
  color: var(--text-white);
  padding: 0 1rem;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(
    0,
    0,
    0,
    0.6
  ); /* Darker background with transparency */
  padding-top: 60px;
}

/* Modal Content */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 30px;
  border-radius: 12px; /* Rounded corners for a soft look */
  width: 90%; /* Responsive width */
  max-width: 450px; /* Max width of modal */
  text-align: center;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Soft shadow around modal */
  transition: all 0.3s ease; /* Smooth transition for the modal */
}

/* Modal Text */
.modal-content p {
  font-size: 18px;
  color: #333; /* Dark gray text for readability */
  font-family: "Arial", sans-serif;
  margin-bottom: 20px;
  line-height: 1.6; /* Better spacing between lines */
}

/* The Close Button */
.close {
  color: #aaa;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #000; /* Darker color on hover */
  text-decoration: none;
  transform: scale(1.2); /* Slightly scale the close button on hover */
}

/* Center Modal Content and Adjust on Small Screens */
@media only screen and (max-width: 600px) {
  .modal-content {
    width: 90%; /* Make the modal content width 90% on smaller screens */
    padding: 20px; /* Less padding on small screens */
  }

  .close {
    font-size: 26px; /* Slightly smaller close button on mobile */
  }
}
