/* Index Page Styles */

body,
ul,
li,
a,
button {
  margin: 0;
  padding: 0;
  text-decoration: 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;
}

.reduce {
  height: 17rem;
}

/* Logo Styling */
.logo img {
  height: 50px;
}

/* Hamburger Menu */
.menu-toggle {
  position: absolute;
  top: 10px;
  right: 5%;
  width: 5%;
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #ffffff;
  cursor: pointer;
  outline: none;
}

/* Navigation Styling */
.nav-lists {
  display: flex;
  gap: 20px;
  list-style-type: none;
  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 */

.index-hero-text {
  align-items: center;
  background-clip: text;
  color: transparent;
  display: flex;
  font-size: 30px !important;
  font-family: "Stylus BT", sans-serif;
  height: 100%;
  justify-content: center;
  position: relative;
  overflow: visible;
  white-space: normal;
  min-height: 150px;
  line-height: 1.1;
  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;
    outline: none;
  }

  .nav-lists {
    width: 100%;
    margin: 60px auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
  }
}

/* New hero section styles */

.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}
.hero-bg.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.55));
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.container,
.hero-wrapper,
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.index-hero-content {
  color: #fff;
  padding: 40px;
  border-radius: 24px;
  max-width: 650px;
  margin: auto;
}
.hero-content-container {
  padding: 10px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin: 30px 0;
}
.hero-btn-primary,
.hero-btn-secondary {
  padding: 16px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
}
.hero-btn-primary {
  background: #f51900;
  color: #fff;
}
.hero-btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}
.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}
.hero-stats {
  display: flex;
  gap: 30px;
}
@media (max-width: 768px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
  }
  .hero-image {
    display: none;
  }
  .hero-content {
    text-align: center;
  }
  .hero-section {
    min-height: 100svh;
    padding: 90px 0 40px;
  }
  .hero-buttons,
  .hero-stats {
    flex-direction: row;
    align-items: stretch;
  }
  .index-hero-content {
    border-radius: 18px;
    padding: 30px 22px;
  }
  .hero-btn-primary,
  .hero-btn-secondary {
    text-align: center;
  }
}

/* New hero section styles */

/* 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;
}

/* 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(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.serviceItem {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

/*.icon-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}*/

.serviceIcon {
  width:100%; 
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

.serviceItem:hover .serviceIcon {
  transform: scale(1.08);
}

.serviceItem:hover {
  background: #e30613;
  transform: translateY(-5px);
  border-color: white;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* 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: 100%;
    height: 100%;
  }
}

@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;
  }
  .prev-btn,
.next-btn { display: none
}
}

/* 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;
  }
}

/* About Page Styling */

/* Hero Section */

.about-hero {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #f8f9fb;
}

/* Background Grid */

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 45px 45px;
  opacity: 0.5;
  pointer-events: none;
}

/*=======================*/
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-about-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #111;
}

.hero-about-content h1 span {
  color: #f51900;
}

.hero-about-content p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: #666;
  max-width: 520px;
  margin-bottom: 45px;
}

/*=======================*/

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-btn-red {
  background: #f51900;
  color: #111;
  padding: 18px 35px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
}

.hero-btn-plain {
  border: 2px solid #111;
  color: #111;
  padding: 18px 35px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 5px;
  transition: 0.3s;
}

.hero-btn-plain:hover {
  background: #111;
  color: #fff;
}

.hero-btn-red:hover {
  background: none;
  color: #f51900;
  border: 2px solid #111;
}

/*=======================
        IMAGE
=======================*/

.about-hero-image {
  height: 650px;
  background: url("/Images/Abbey Que 1.jpg") center/cover no-repeat;
  border-radius: 80px 20px 80px 20px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}
.about-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.35));
}

/*
    EXPERIENCE CARD
*/

.experience-card {
  position: absolute;
  left: -12px;
  bottom: 40px;
  width: 180px;
  height: 180px;
  background: #111827;
  color: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.experience-card h2 {
  color: #f51900;
  font-size: 4rem;
  margin-bottom: 10px;
}

.experience-card span {
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}

/*=======================
    RESPONSIVE
=======================*/
/* ===============================
   LARGE TABLETS (1200px and below)
================================== */
@media (max-width: 1200px) {
  .about-wrapper {
    gap: 50px;
  }

  .hero-about-content h1 {
    font-size: 3.2rem;
  }

  .about-hero-image {
    height: 560px;
  }
}

/* ===============================
   TABLETS (992px and below)
================================== */
@media (max-width: 992px) {
  .about-hero {
    padding: 90px 0;
  }

  .about-wrapper {
    gap: 35px;
    grid-template-columns: 1fr 1fr;
  }

  .hero-about-content h1 {
    font-size: 2.7rem;
  }

  .hero-about-content p {
    font-size: 1rem;
    margin-bottom: 35px;
  }

  .hero-buttons {
    gap: 15px;
  }

  .hero-btn-red,
  .hero-btn-plain {
    padding: 15px 28px;
    font-size: 0.95rem;
  }

  .about-hero-image {
    height: 480px;
    border-radius: 60px 18px 60px 18px;
  }

  .experience-card {
    width: 145px;
    height: 145px;
    left: -8px;
    bottom: 30px;
  }

  .experience-card h2 {
    font-size: 3rem;
  }
}

/* ===============================
   MOBILE (768px and below)
================================== */

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0;
  }

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Put image behind content */
  .about-hero-image {
    order: -1;
    height: 420px;
    border-radius: 40px;
  }

  .hero-about-content {
    text-align: center;
  }

  .hero-about-content p {
    max-width: 100%;
    margin-inline: auto;
  }

  .hero-about-content h1 {
    font-size: 2.4rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-btn-red,
  .hero-btn-plain {
    padding: 16px 28px;
  }

  .experience-card {
    width: 130px;
    height: 130px;
    left: 15px;
    bottom: 15px;
  }

  .experience-card h2 {
    font-size: 2.5rem;
  }
}

/* ===============================
   SMALL MOBILE (576px and below)
================================== */

@media (max-width: 576px) {
  .about-hero {
    padding: 60px 0;
  }

  .hero-about-content h1 {
    font-size: 2rem;
  }

  .hero-about-content p {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-red,
  .hero-btn-plain {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .about-hero-image {
    height: 340px;
    border-radius: 30px;
  }

  .experience-card {
    width: 110px;
    height: 110px;
  }

  .experience-card h2 {
    font-size: 2rem;
  }

  .experience-card span {
    font-size: 0.8rem;
  }
}

/* Company Introduction */
.about-company {
  text-align: center;
  padding: 60px 20px;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.about-content img {
  width: 50%;
  border-radius: 10px;
  overflow: hidden;
}

.about-content .text {
  width: 50%;
  text-align: left;
}

.about-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 15px;
}

/* Company history */

.company-history {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.company-history .container {
  max-width: 900px;
  margin: auto;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

/* Timeline Container */
.timeline {
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}

/* Timeline Vertical Line */
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #c00;
  top: 0;
  transform: translateX(-50%);
}

/* Timeline Items */
.timeline-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

/* Year Indicator */
.year {
  background: #c00;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 30px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

/* History Content Box */
.history-content {
  width: 40%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

/* Alternating Layout */
.timeline-item:nth-child(odd) {
  flex-direction: row;
  justify-content: flex-start;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Responsive: Single Column Layout on Mobile */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .year {
    left: 20px;
    transform: none;
    font-size: 1.2rem;
    padding: 8px 16px;
    min-width: 60px;
  }

  .history-content {
    width: 100%;
    margin-left: 40px;
  }
}

/* Why Choose Us Section */
.why-choose {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature {
  width: 30%;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.feature img {
  width: 80px;
  margin-bottom: 15px;
}

.feature h3 {
  font-size: 1.5rem;
  color: #222;
}

.feature p {
  font-size: 1rem;
  color: #555;
}

.feature:hover {
  transform: translateY(-5px);
}

/* Meet the Team Section */
.team {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.member {
  position: relative;
  width: 250px;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.member:hover {
  transform: scale(1.05);
}

.member img {
  width: 100%;
  display: block;
}

.info {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 100%;
  padding: 10px;
  text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
  .about-content,
  .features,
  .team-grid {
    flex-direction: column;
  }

  .about-content img,
  .about-content .text {
    width: 100%;
  }

  .feature,
  .team-member {
    width: 100%;
  }
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }

  .history-content {
    width: 80%;
    margin: auto;
  }

  .year {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 10px;
  }

  .team-members {
    flex-direction: column;
    align-items: center;
  }
}

/* Services Page Styling */

/* Hero Section */
.service-hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url("/Images/servicesimage.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Left black overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(12, 18, 30, 0.95) 0%,
    rgba(12, 18, 30, 0.92) 28%,
    rgba(12, 18, 30, 0.75) 45%,
    rgba(12, 18, 30, 0.35) 60%,
    rgba(12, 18, 30, 0) 80%
  );
  z-index: 1;
}

/* Content */

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
  padding: 140px 0;
}

.hero-small {
  display: block;
  font-family: "Stylus BT", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 5px;
}

.hero-content h1 {
  font-size: 4.3rem;
  font-family: "Stylus BT", sans-serif;
  line-height: 0.9;
  color: #fff;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-line {
  width: 80px;
  height: 3px;
  background: #f31b1b;
  margin-bottom: 35px;
}

.hero-content p {
  color: #ddd;

  font-size: 1.25rem;

  line-height: 1.8;

  margin-bottom: 45px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  background: #f31b1b;
  color: #111;
  padding: 20px 40px;
  font-weight: 700;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #fb5050;
  color: #fff;
  transform: translateY(-4px);
}

/* Services Section */
.services {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2rem;
  color: #d71a1a;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.service-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.service-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 15px;
}

.service-item h3 {
  font-size: 1.5rem;
  color: #222;
}

.service-item p {
  font-size: 1rem;
  color: #555;
}

.service-item:hover {
  transform: translateY(-5px);
}

/* Projects Page Styles */

/* Container */
/* Container */
.project-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

/* Section Header */
.projects {
  text-align: center;
  padding: 60px 20px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-size: larger;
  color: #666;
  margin-bottom: 50px;
  max-width: 600px;
  line-height: 1.6;
}

/* Grid Layout */
  
  /* =========================================
   PROJECT GRID
========================================= */

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: 100%;
}


/* =========================================
   PROJECT CARD
========================================= */

.project-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.13);
}


/* =========================================
   MAIN PROJECT IMAGE
========================================= */

.project-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #eeeeee;
}

.project-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;

  transition:
    opacity 0.25s ease,
    transform 0.4s ease;
}

.project-card:hover .project-main-image {
  transform: scale(1.02);
}


/* =========================================
   GALLERY WRAPPER
========================================= */

.project-gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;

  padding: 10px 36px;

  background: #f5f5f3;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}


/* =========================================
   SWIPEABLE THUMBNAIL CONTAINER
========================================= */

.project-gallery {
  display: flex;
  gap: 8px;

  width: 100%;

  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;

  scrollbar-width: none;

  -webkit-overflow-scrolling: touch;

  touch-action: pan-x;
}

.project-gallery::-webkit-scrollbar {
  display: none;
}


/* =========================================
   THUMBNAILS
========================================= */

.gallery-thumb {
  flex: 0 0 64px;

  width: 64px;
  height: 50px;

  padding: 0;

  border: 2px solid transparent;
  border-radius: 6px;

  overflow: hidden;

  background: #ffffff;

  cursor: pointer;

  opacity: 0.65;

  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

.gallery-thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}


/* Active thumbnail */

.gallery-thumb.active {
  opacity: 1;
  border-color: #b08d57;
  box-shadow: 0 0 0 1px rgba(176, 141, 87, 0.15);
}


/* =========================================
   GALLERY ARROWS
========================================= */

.gallery-arrow {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: #222222;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.gallery-arrow:hover {
  background: #b08d57;
  transform: scale(1.08);
}

.gallery-prev {
  left: 7px;
}

.gallery-next {
  right: 7px;
}


/* =========================================
   PROJECT INFORMATION
========================================= */

.project-info {
  padding: 20px;
}

.project-info h3 {
  margin: 0 0 9px;

  color: #222222;

  font-size: 20px;
  font-weight: 600;

  line-height: 1.3;
}

.project-info p {
  margin: 0 0 18px;

  color: #777777;

  font-size: 14px;

  line-height: 1.6;
}


/* =========================================
   VIEW DETAILS BUTTON
========================================= */

.project-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 130px;

  padding: 10px 18px;

  border-radius: 5px;

  background: #222222;
  color: #ffffff;

  text-decoration: none;

  font-size: 14px;
  font-weight: 500;

  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.project-btn:hover {
  background: #b08d57;
  color: #ffffff;

  transform: translateY(-2px);
}


/* =========================================
   NO PROJECTS
========================================= */

.no-projects {
  grid-column: 1 / -1;

  text-align: center;

  padding: 50px 20px;

  color: #777777;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 650px) {

  .project-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .project-image {
    height: 230px;
  }

  .project-gallery-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .gallery-thumb {
    flex-basis: 62px;
    width: 62px;
    height: 48px;
  }

  .project-info {
    padding: 18px;
  }

}


/* Project detail Page Styling */

/* Hero Section */
.project-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-overlay h1 {
  font-size: 2.5rem;
  padding-left: 10px;
}

.hero-overlay p {
  font-size: 1.2rem;
}

/* Project Meta */
.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Project Details Style */
.project-details h2,
.project-details h3 {
  color: #c00;
}

.project-details {
  padding: 0 10px;
}

.project-details p {
  font-size: 1.1rem;
}

/* Milestones */
.project-milestones {
  list-style: none;
  padding: 0;
}

.project-milestones li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* Testimonials */
.testimonial {
  background: #fff;
  padding: 20px;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-size: 1.2rem;
  font-style: italic;
}

/* CTA */
.cta {
  text-align: center;
  background: #c00;
  color: white;
  padding: 30px;
  border-radius: 8px;
}

.cta .pD-btn {
  background: white;
  color: #c00;
  padding: 10px 20px;
  text-decoration: none;
  font-size: 1.2rem;
  display: inline-block;
  margin-top: 10px;
  border-radius: 5px;
}

/* ==========================
   PROJECT GALLERY
========================== */
.projectdetail-gallery{

margin-top:80px;

}

.gallery-header{

display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:30px;

}

.gallery-header h2{

font-size:2rem;
font-weight:700;

}

.gallery-header p{

color:#888;

}

.gallery-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:22px;

}

.gallery-item{

position:relative;
overflow:hidden;
border-radius:18px;
cursor:pointer;
box-shadow:0 10px 35px rgba(0,0,0,.08);

}

.gallery-item img{

width:100%;
height:300px;
object-fit:cover;
transition:.5s;

}

.gallery-item:hover img{

transform:scale(1.08);

}

.gallery-overlay{

position:absolute;
inset:0;
display:flex;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.45);
opacity:0;
transition:.35s;

}

.gallery-item:hover .gallery-overlay{

opacity:1;

}

.gallery-overlay span{

background:white;
padding:12px 28px;
border-radius:40px;
font-weight:600;

}

.project-description h1,
.project-description h2,
.project-description h3 {
  margin: 1rem 0;
}

.project-description p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.project-description ul {
  padding-left: 20px;
}

.project-description img {
  max-width: 100%;
  height: auto;
}

.lightbox{

position:fixed;
inset:0;
background:rgba(0,0,0,.94);
display:flex;
justify-content:center;
align-items:center;
flex-direction:column;
opacity:0;
visibility:hidden;
transition:.35s;
z-index:9999;

}

.lightbox.active{

opacity:1;
visibility:visible;

}

#lightbox-image{

max-width:90%;
max-height:78vh;
border-radius:12px;
box-shadow:0 20px 60px rgba(0,0,0,.5);

}

.close-btn,
.prev-btn,
.next-btn{

position:absolute;
background:rgba(255,255,255,.15);
border:none;
color:white;
width:55px;
height:55px;
border-radius:50%;
cursor:pointer;
font-size:28px;
backdrop-filter:blur(10px);

}

.close-btn{

top:30px;
right:30px;

}

.prev-btn{

left:30px;
top:50%;
transform:translateY(-50%);

}

.next-btn{

right:30px;
top:50%;
transform:translateY(-50%);

}

.image-counter{

color:white;
margin-top:20px;
font-size:18px;

}

.thumbnail-strip{

display:flex;
gap:10px;
margin-top:30px;
overflow-x:auto;
padding:15px;
max-width:90%;

}

.thumbnail-strip img{

width:80px;
height:60px;
object-fit:cover;
cursor:pointer;
border-radius:8px;
opacity:.5;
transition:.3s;
border:2px solid transparent;

}

.thumbnail-strip img.active{

opacity:1;
border-color:white;

}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-image {
    height: 220px;
  }
}

/* Contact Page Styling */

/* Contact Section */
.contact-hero {
  position: relative;
  padding: 0 10px;
  height: 500px;
  display: flex;
  align-items: center;
  background: url("/Images/contact-hero.jpg") center/cover;
}

.contact-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.88),
    rgba(15, 23, 42, 0.45)
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 650px;
}

.contact-hero-content h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-family: "Stylus BT", sans-serif;
}

.contact-hero-content h1 span {
  color: #f40000;
}

.contact-hero-content p {
  margin: 35px 0;
  line-height: 1.9;
  color: #ddd;
}

.contact-hero-content .hero-divider {
  width: 90px;
  height: 4px;
  background: #f40000;
  margin-bottom: 40px;
}

.scroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #f40000;
  text-decoration: none;
  font-weight: 700;
}

/* Contact Form and Info Layout */
.contact-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 330px;
}

.form-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

input:focus,
textarea:focus {
  outline: 2px solid #c00;
  border-color: #c00;
}

textarea {
  resize: none;
}
.contact-btn {
  background: #c00;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease-in-out;
}

.contact-btn:hover {
  background: #900;
}

/* Contact Info */
.contact-info {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex: 1;
  min-width: 350px;
  text-align: left;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    max-width: 100%;
  }
}

/* Login Page Style */
.login-body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #faf8f8, rgb(243, 243, 243));
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
}

.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

.login-card {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 420px;
  animation: fadeIn 0.6s ease;
}

.login-header {
  font-size: 1.8rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
  text-align: center;
}

.login-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.login-form input {
  padding: 0.8rem 1rem;
  border: 1px solid #cbc9c9;
  border-radius: 10px;
  font-size: 0.95rem;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.login-form input:focus {
  outline: none;
  box-shadow: 0 0 0 3px #facbcb;
}

.forgot-password {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-top: -0.5rem;
}

.forgot-password a {
  color: black;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-password a:hover {
  color: red;
}

.login-button {
  background: rgb(246, 65, 65);
  color: #fff;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-button:hover {
  background: red;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile tweaks */
@media (max-width: 480px) {
  .login-card {
    padding: 1.5rem;
  }

  .login-header {
    font-size: 1.5rem;
  }
}

/* Auth Container */
.auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.auth-box {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 420px;
  text-align: center;
}

.auth-header {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.auth-subtext {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.auth-form .form-group {
  margin-bottom: 1.2rem;
}

.auth-input {
  width: 100%;
  padding: 0.85rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.auth-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

.auth-btn {
  width: 100%;
  padding: 0.9rem;
  background: rgb(246, 65, 65);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.auth-btn:hover {
  background: red;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.auth-links {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

.auth-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.auth-links a:hover {
  text-decoration: underline;
}
