/* General Reset */
body,
ul,
li,
a,
button {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
}

/* Header Styling */
header {
  background-color: #222121;
  padding: 10px;
}

.nav-container {
  display: flex;
  padding: 0 5px;
  height: 3.5rem;
  min-width: 10vh;
  overflow: hidden;
  transition: height 1s ease-in-out;
  justify-content: space-between;
  position: relative;
}

.collapse {
  height: 17rem;
}

/* Logo Styling */
.logo img {
  height: 50px;
}

/* Hamburger Menu */
.menu-toggle {
  position: absolute;
  top: 10px;
  right: -40%;
  width: 90%;
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
}

/* Navigation Styling */
.nav-lists {
  display: flex;
  gap: 20px;
  margin: auto;
}

.nav-item a {
  color: rgb(254, 253, 253);
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-item a:hover {
  color: #fd0404;
}

/* Hero section design */

.hero-section {
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: bgFade 15s infinite;
}

.bg1 {
  background-image: url("../Images/soluyi1.jpg");
  animation-delay: 0s;
}
.bg2 {
  background-image: url("../Images/soluyi2.jpg");
  animation-delay: 5s;
}
.bg3 {
  background-image: url("../Images/soluyi1.jpg");
  animation-delay: 10s;
}

@keyframes bgFade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  43.33% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.hero-text {
  align-items: center;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  font-size: 60px;
  font-family: "Stylus BT", sans-serif;
  height: 100%;
  justify-content: center;
  position: absolute;
  overflow: visible;
  white-space: normal;
  width: 100%;
  animation: colorChange 5s linear infinite;
}

@keyframes colorChange {
  0% {
    color: red;
  }
  25% {
    color: black;
  }
  50% {
    color: white;
  }
  75% {
    color: red;
  }
  100% {
    color: white;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-lists {
    width: 100%;
    margin: 90px auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
  }
  .hero-text {
    font-size: 55px;
    text-align: center;
  }
}

@media (max-width: 320px) {
  .hero-text {
    font-size: 20px;
    padding: 0 5px;
  }
}

/* Brief Introduction on Arshcon and Form */
/* Section Styling */
.introduction {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

/* Responsive Container */
.container {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.heading {
  font-size: 2rem;
  font-weight: bold;
  color: #e30613;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Introduction Text */
.text-container {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  line-height: 1.6;
}

.intro-text {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Highlighted Company Name */
.highlight {
  font-weight: bold;
  color: #e30613; /* Red Accent */
}

/* Responsive Design */
@media (max-width: 768px) {
  .heading {
    font-size: 1.8rem;
  }

  .intro-text {
    font-size: 1rem;
  }

  .text-container {
    padding: 15px;
  }
}
/* Services Section Design */

.ourServices {
  background-color: #fff;
  color: black;
  padding: 20px;
  text-align: center;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Section Title */
.serviceTitle {
  font-family: "Stylus BT", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #e30613;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Services Grid */
.servicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 0;
}

/* Service Item */
.serviceItem {
  background: rgba(2, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out, background 0.3s, box-shadow 0.3s;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

/* Hover Effect */
.serviceItem:hover {
  background: #e30613; /* Red on Hover */
  transform: translateY(-5px);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Icon Container */
.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

/* Service Icons */
.serviceIcon {
  width: 70px;
  height: 70px;
  /* filter: invert(100%) brightness(200%); Makes icons white */
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Icon */
.serviceItem:hover .serviceIcon {
  transform: scale(1.2);
}

/* Service Name */
.service-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Service Description */
.serviceItem p {
  font-size: 1rem;
  color: black;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
  .serviceTitle {
    font-size: 2rem;
  }

  .servicesGrid {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
  }

  .serviceItem {
    padding: 20px;
  }

  .service-name {
    font-size: 1.1rem;
  }

  .serviceIcon {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .servicesGrid {
    grid-template-columns: repeat(1, minmax(200px, 1fr));
  }
}

/* Featured Projects Section */

.feature-project {
  background-color: #000;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.title {
  font-family: "Stylus BT", sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #e30613;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.projectsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-content: center;
  padding: 0;
}

/* Project Card */
.projectCard {
  background: rgba(255, 255, 255, 0.1); /* Slightly transparent */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, background 0.3s, box-shadow 0.3s;
  position: relative;
  border: 2px solid transparent;
}

/* Hover Effect */
.projectCard:hover {
  background: #e30613; /* Red on Hover */
  transform: translateY(-5px);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Project Image */
.projectImage {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.projectImage img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
  transition: transform 0.3s ease-in-out;
}

/* Hover Effect on Image */
.projectCard:hover img {
  transform: scale(1.1);
}

/* Project Content */
.projectContent {
  padding: 20px;
  text-align: left;
}

/* Project Name */
.project-name {
  font-family: "Stylus BT", sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Description */
.description {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.5;
}

/* View Project Button */
.viewProjectBtn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #fff;
  color: #e30613;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}

.viewProjectBtn:hover {
  background: #e30613;
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .projectsGrid {
    grid-template-columns: repeat(1, minmax(250px, 1fr));
  }
}

/* Lightbox Styling */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  display: block;
  margin: auto;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

/* Animation Effects */
[data-aos] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonial Design Section */

/* Testimonials Section */
.testimonials {
  background-color: #f8f8f8;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-family: "Stylus BT", sans-serif;
  font-size: 2rem;
  color: #d71a1a;
  margin-bottom: 20px;
}

.testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
}

.testimonial-card {
  display: none;
  background: #fff;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.5s ease-in-out;
}

.testimonial-card.active {
  display: block;
}

.testimonial-text {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.client-name {
  font-family: "Stylus BT", sans-serif;
  font-weight: bold;
  color: #000;
}

/* Slider Controls */
.slider-controls {
  margin-top: 15px;
}

.prev-btn,
.next-btn {
  background-color: #d71a1a;
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  background-color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
}

/* Footer Section */
.footer {
  background-color: #111;
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-title {
  font-family: "Stylus BT", sans-serif;
  font-size: 1.5rem;
  color: #d71a1a; /* Red theme color */
  margin-bottom: 10px;
}

.footer p,
.footer a {
  font-size: 1rem;
  color: #bbb;
  text-decoration: none;
}

.footer a:hover {
  color: #d71a1a;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #d71a1a;
}

/* Social Media Icons */
.socials a {
  color: white;
  font-size: 1.5rem;
  margin-right: 10px;
  transition: 0.3s;
}

.socials a:hover {
  color: #d71a1a;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid #444;
  margin-top: 20px;
}

.footer-bottom p {
  color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
