* {
  box-sizing: border-box;
}
:root {
  --main-color: rgb(255, 3, 3);
}
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  height: 100%;
  width: 100%;
  padding-top: 90px;
  margin: 0;
  background-color: #efeff02d;
  overflow-x: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

a {
  text-decoration: none;
}
/* Navbar */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  transition: background-color 0.3s ease;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 8%;
}

.logo img {
  height: 40px;
  width: 130px;
}

/* Navigation Links */
.menu-items {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

/* Style the links */
.topnav a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
}

.topnav a:hover {
  color: rgb(255, 0, 0);
}

/* Active Link */
.topnav a.active {
  background-color: #04aa6d;
  color: white;
}

/* Mobile Styles */
.icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
}

/* banner slider */
.carousel {
  /* width: 100%; */
  margin-top: 3px;
  height: 85vh;
  position: relative;
}
.carousel [data-carousel-slides] {
  padding: 0;
  margin: 0;
  list-style: none;
}
.carousel [data-carousel-dots] {
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 2;
  position: absolute;
  left: 50%;
  bottom: 2vh;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
}
.carousel [data-carousel-dots] [data-carousel-dot] {
  background-color: rgb(3, 0, 0);
  height: 0.78rem;
  width: 0.78rem;
  border-radius: 0.78rem;
  cursor: pointer;
  transition: 0.5s;
  opacity: 0.5;
}
.carousel [data-carousel-dots] [data-active] {
  opacity: 1;
}
.slide {
  position: absolute;
  margin: 0;
  inset: 0;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 200ms;
  transition-timing-function: ease-in-out;
  transition-delay: 200ms;
}
.slide[data-active] {
  opacity: 1;
  z-index: 1;
  transition-delay: 0ms;
}
.slide > img {
  display: block;
  width: 100%;
  height: 100%;
  object-position: center;
}
.carousel-button {
  position: absolute;
  background: none;
  border: none;
  outline: none;
  font-size: 4rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0 0.5rem;
  border-radius: 0.25rem;
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.5s;
}
.carousel-button:hover,
.carousel-button:focus {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.carousel-button[data-carousel-btn="prev"] {
  left: 1rem;
}

.carousel-button[data-carousel-btn="next"] {
  right: 1rem;
}

/* common_title */
.common_title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 10px;
  color: #222;
  text-transform: capitalize;
  text-align: center;
  position: relative;
}
.common_title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--main-color);
  margin: 10px auto 0;
}

/*Hero Section */
main {
  margin-left: 8%;
  margin-right: 8%;
  overflow-x: hidden;
  margin-top: 50px;
}
.hero-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40%, 50%));
  width: 100%;
  height: auto;
}
.heading-container {
  display: flex;
  flex-direction: column;
}
.main-heading {
  font-size: 4rem;
  margin: 0 0 40px 0;
}
.colorfull {
  color: red;
}
.text-description {
  font-size: 1.1rem;
  margin-top: -1.1rem;
  text-align: justify;
  margin-right: 25px;
}
.image-container {
  justify-content: center;
  place-content: centers;
}
.hero-img {
  width: 550px;
  height: 410px;
}

/* offer section */
.offers {
  margin: 50px 8% 0 8%;
  background: transparent;
}
.offers-heading {
  font-size: 1.6rem;
  color: var(--main-color);
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 15px 0 5px 45px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #ff0000;
}
input:checked + .slider:before {
  transform: translateX(20px);
}
.pricing-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 20px 0 75px 0;
}

.card {
  background: linear-gradient(135deg, #fdfdfd 0%, #ffffff 100%) !important;
  width: 25%;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  border-top: 4px solid #ff0000;
  border-bottom: 4px solid #ff0000;

  /* Flexbox for positioning */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Pushes button to bottom */
  height: 100%; /* Ensures equal height */
}
.graphic-card-hight {
  height: 330px;
}
.web-card-hight {
  height: 525px;
}
.card:hover {
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}
.card h3 {
  font-size: 25px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 10px;
}
.card .price {
  font-size: 22px;
  font-weight: bold;
  color: #fffefe;
  background: rgb(255, 0, 0);
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 15px;
}
ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: 10px;
  flex-grow: 1; /* Makes the list take up remaining space */
}
li {
  margin: 12px 0;
  color: #000000;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.card-ul li::before {
  content: "✔";
  color: rgba(255, 0, 0);
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
}
.read-more {
  background: white;
  color: black;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  margin-top: auto;
}
.read-more:hover {
  background: #fa0000;
  color: white;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal-content {
  background: rgb(255, 255, 255);
  padding: 20px;
  border-radius: 12px;
  width: 900px;
  text-align: left;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.modal-content h2 {
  color: #f32828;
  font-size: 28px;
  margin-bottom: 10px;
}
.modal-content h3 {
  color: #1d1d1d;
  margin-bottom: 10px;
}

.modal-content p,
.modal-content ul {
  color: #0e0303;
}

.modal-content ul {
  padding-left: 20px;
}

.modal-content li {
  margin-bottom: 8px;
}

.close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #000000;
  cursor: pointer;
}

.modal-footer {
  margin-top: 20px;
  text-align: center;
  font-weight: bold;
  color: #380523;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Services Section */
.services {
  margin: 2% 8%;
  padding: 0 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 1fr));
  gap: 2rem;
}

.services-text {
  display: flex;
  align-items: center;
}

.services-text-detail {
  max-width: 100%;
}

.services-heading {
  font-size: 1.6rem;
  color: var(--main-color);
  margin: 0 0 8px 0;
}

.services-sub-heading {
  font-size: 2.5rem;
  margin: 1rem 0;
}

.services-heading-detail {
  font-size: 1.1rem;
  text-align: justify;
  margin: 0;
}

.services-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: var(--main-color);
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.services-btn:hover {
  background-color: #e64a19;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Ensures 3 cards in a row */
  gap: 1.5rem;
}

.services-list-items {
  background-color: transparent;
  width: 205px;
  border: 1px red dotted;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-list-items:hover {
  background-color: rgba(241, 0, 0, 0.404);
  color: white;
  border: none;
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.services-list-items span {
  font-size: 30px;
}

.services-list-heading {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-list-items {
    background-color: rgba(241, 0, 0, 0.404);
    color: white;
  }
}
/* End Services Section */

/* Choose-Us Section */
.choose-us-image {
  width: 490px;
}
.choose-us {
  margin: 3% 8% 0 8%;
}
.choose-us-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35%, 45%));
}
.choose-us-items {
  width: 100%;
}
.choose-us-img {
  width: 500px;
  height: 440px;
}
/* .choose-us-text {
  margin-top: 20%;
} */
.choose-us-heading {
  font-size: 1.6rem;
  color: var(--main-color);
}
.choose-us-title {
  font-size: 3.2rem;
  margin: 0;
}
.choose-us-description {
  font-size: 1.1rem;
  margin-top: -1rem;
  margin-right: 9rem;
}
.choose-us-list-div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(48%, 50%));
  margin-top: 1rem;
}
.choose-us-items-list {
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 10px;
}

/* Additional Benefits Section */
.choose-us-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(302px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
  width: 100%; /* Increased width */
  margin-left: auto;
  margin-right: auto;
}

.choose-us-benefit-item {
  background: linear-gradient(135deg, #c90404, #fc0101);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-us-benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(255, 46, 99, 0.3);
}
/* End Choose-Us Section */

/* Growth Section */
.growth {
  margin: 2% 8% 0 8%;
}
.growth-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.growth-text {
  width: 100%;
}
.growth-text-detail {
  width: 100%;
  margin-top: 6rem;
}
.growth-heading {
  font-size: 1.6rem;
}
.growth-sub-heading {
  font-size: 3rem;
  margin-top: 1rem;
}
.growth-heading-detail {
  font-size: 1.1rem;
  margin-top: -1rem;
  /* margin-right: 15rem; */
  text-align: justify;
  margin-bottom: 2.8rem;
}
.growth-image {
  width: 490px;
}
.growth-img {
  width: 400px;
  height: 400px;
  margin-left: 70px;
}
/* End Growth Section */

/* Client Logo Section */
.client {
  margin: 4% 8% 8% 8%;
}
.text-center {
  text-align: center;
  font-size: 1.8rem;
}
.marqee_slide {
  margin-top: 50px;
}
.marqee_slide h2 {
  margin-bottom: 50px;
}
.marquee {
  width: 100%;
  display: flex;
  block-size: var(--marquee-item-height);
  position: relative;
  overflow-x: hidden;
  mask-image: linear-gradient(
    to right,
    hsl(0 0% 0% / 0),
    hsl(0 0% 0% / 1) 20%,
    hsl(0 0% 0% / 1) 80%,
    hsl(0 0% 0% / 0)
  );
}
.marquee--8 {
  --marquee-item-width: 150px;
  --marquee-item-height: 150px;
  --marquee-duration: 36s;
  --marquee-items: 8;
}
.marquee__item {
  height: 150px;
  width: 150px;
  --marquee-item-offset: max(
    calc(var(--marquee-item-width) * var(--marquee-items)),
    calc(100% + var(--marquee-item-width))
  );
  --marquee-delay: calc(
    var(--marquee-duration) / var(--marquee-items) *
      (var(--marquee-items) - var(--marquee-item-index)) * -1
  );
  position: absolute;
  inset-inline-start: var(--marquee-item-offset);
  transform: translateX(-50%);
  animation: go linear var(--marquee-duration) var(--marquee-delay, 0s) infinite;
}
.marquee__item:nth-child(4n) {
  border-top-right-radius: 1rem;
}
.marquee__item:nth-child(4n + 1) {
  border-bottom-right-radius: 1rem;
}
.marquee__item:nth-child(4n + 2) {
  border-bottom-left-radius: 1rem;
}
.marquee__item:nth-child(4n + 3) {
  border-top-left-radius: 1rem;
}
.marquee--8 .marquee__item:nth-of-type(1) {
  --marquee-item-index: 1;
}
.marquee--8 .marquee__item:nth-of-type(2) {
  --marquee-item-index: 2;
}
.marquee--8 .marquee__item:nth-of-type(3) {
  --marquee-item-index: 3;
}
.marquee--8 .marquee__item:nth-of-type(4) {
  --marquee-item-index: 4;
}
.marquee--8 .marquee__item:nth-of-type(5) {
  --marquee-item-index: 5;
}
.marquee--8 .marquee__item:nth-of-type(6) {
  --marquee-item-index: 6;
}
.marquee--8 .marquee__item:nth-of-type(7) {
  --marquee-item-index: 7;
}
.marquee--8 .marquee__item:nth-of-type(8) {
  --marquee-item-index: 8;
}
@keyframes go {
  to {
    inset-inline-start: calc(var(--marquee-item-width) * -1);
  }
}
@media (max-width: 767px) {
  .client-marquee {
    margin: 10px 0 30px;
  }
}
/* Client Logo Section */

/* Section Styling */
.contact-section {
  padding: 0 20px 10px 20px;
  /* background: url("background.jpg") no-repeat center center/cover; */
  position: relative;
}

/* Contact Container */
.contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}

/* Google Map Styling */
.map-container {
  flex: 1;
  min-width: 300px;
  height: 250px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  height: 250px;
  background: black;
  padding: 20px;
  text-align: left;
}

/* .contact-title {
  padding: 0 50px 0 50px;
} */
.contact-title h3 {
  font-family: "Poppins";
  font-weight: 600;
  word-spacing: 0;
  color: #fff;
  margin: 0;
}
/* .contact-description {
  padding: 0 50px 5px 50px;
} */
.contact-description p {
  margin: 10px 0;
  color: #fff;
}
/* .contact-detail {
  padding: 0 0 0 50px;
} */
.contact-detail p {
  /* margin-top: 0; */
  color: #ffffff;
  display: flex;
  /* align-items: center;
  margin: 10px 0; */
}
.contact-detail i {
  margin-right: 10px;
  font-size: 16px;
  color: #ff0000;
}

/* Social Media Icons */
.social-container {
  margin-top: 40px;
}

.social-icons i {
  font-size: 24px;
  margin: 10px;
  cursor: pointer;
  transition: color 0.3s;
}

.social-icons i:hover {
  color: #f4b400;
}

/* Footer Section */
.footer {
  margin: 2% 8% 0 8%;
  overflow-y: hidden;
  overflow-x: hidden;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 25%));
}
.footer-main-heading {
  font-size: 1.4rem;
  justify-content: center;
}
.footer-main-heading::after {
  content: "";
  display: flex;
  height: 0.2rem;
  width: 4rem;
  position: absolute;
  justify-content: start;
  background-color: var(--main-color);
}
.footer-angle {
  color: var(--main-color);
  margin-bottom: 10px;
}
.footer-coloum-one-description {
  font-size: 1.1rem;
  text-align: start;
  margin-right: 0.6rem;
}

.footer-one-menu {
  list-style: none;
  text-align: start;
  display: flex;
  flex-direction: column;
}

.footer-one-menu a {
  color: #34444b;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-bottom: 10px;
  text-align: start;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.7rem;
}
.footer-icon {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-top: 0.7rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 50%;
}
.footer-line {
  color: var(--main-color);
  width: 98%;
}
.footer-underline-menu-items a {
  color: #34444b;
  padding: 1rem;
  text-align: center;
}
.footer-underline-menu {
  justify-content: space-between;
  display: flex;
  margin-bottom: 10px;
}
.footer-credit a {
  color: var(--main-color);
  font-weight: 600;
}
/* End Footer Section */
