/* Hero Section */
.hero {
  height: calc(100vh - 70px); /* Full viewport height */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: radial-gradient(circle, rgba(18, 25, 57, 1) 0%, rgba(18, 50, 97, 1) 60%, rgba(4, 25, 60, 1) 100%); */
  background-image: url(../images/banner2.jpg);
  background-position: bottom center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Hero Container */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  min-height: 80vh;
  justify-content: center;
  text-align: center;
  position: relative;
  max-width: 800px;
}

/* Hero Heading */
.hero-heading {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  display: flex;
  opacity: 1; /* Ensure visibility */
  justify-content: center;
  gap: 0px 15px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.hero-heading span {
  display: inline-block;
  transform: translateY(20px); /* Starting position for fade-up animation */
  opacity: 0; /* Initially hidden for animation effect */
}

/* Hero Subheading */
/* Subheading (Paragraph) */
.hero-subheading {
  font-size: 1.2rem;
  color: #ececec;
  margin-top: 10px;
  line-height: 1.5;
  opacity: 1; /* Ensure visibility for typing animation */
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  animation: bounce 4s infinite;
}

.scroll-indicator span {
  display: inline-block;
  animation: bounce 1.5s infinite;
  color: #2e2e2e;
}

/* Animation for scroll indicator bouncing */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 3rem;
  }
}
/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: #1e1e1e;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle, var(--primary-color) 0%, rgb(13 13 13) 60%, rgb(0 0 0) 100%);
}

.service-card:hover {
  scale: 1.1;
}

.services-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-section .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.services-section .section-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.7;
}

.services-container {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
.services-container.mobile {
  display: none;
}
.service-card {
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease, box-shadow 0.3s ease;
  max-width: 260px;
  width: 100%;
  border: 1px solid #525252;
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 100px;
  margin-bottom: 15px;
}

.service-title {
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.service-description {
  font-size: 16px;
  opacity: 0.8;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-card {
    max-width: 280px;
    padding: 40px 20px;
  }
  .services-container {
    display: none;
  }
  .services-container.mobile {
    display: flex;
  }
}
/* About Section Styling */
.about-section {
  background-color: #000000; /* Dark background */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  /* border-bottom: 1px solid #343434; */
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section .section-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 1.5px;
}

.about-section .section-description {
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.7;
}
.about-section img.office-image {
  width: 100%;
  border-radius: 20px;
}

.about-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #f2f2f2;
}

.about-section ul {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.about-section ul li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #bbb;
}

ul.values {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  justify-content: center;
}

ul.values li {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: relative;
  width: 130px;
  height: 130px;
  transition: all 0.8s;
}

ul.values li img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.values .value-label {
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #00000085;
  border-radius: 50%;
  border: 1px solid #727272;
  font-size: 18px;
  font-weight: 600;
}

/* Team Section Styling */
.team-section {
  padding: 80px 20px;
  background-color: #111;
  color: #fff;
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(241 245 249 / 0.05)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  background-position: center;
  background-attachment: fixed;
}
.team-title {
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #fff;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.team-card {
  background-color: #222;
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  text-align: center;
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.team-info {
  padding: 20px;
}

.team-name {
  font-size: 1.5em;
  margin: 0 0 5px;
  color: #fff;
}

.team-role {
  font-size: 1em;
  color: #aaa;
}

/* Small screen adjustments */
@media screen and (max-width: 768px) {
  .team-members {
    flex-direction: column;
    align-items: center;
  }
  .about-section img.office-image {
    border-radius: 12px;
  }
  ul.values {
    gap: 20px;
    flex-wrap: wrap;
  }
  ul.values li {
    width: 120px;
    height: 120px;
  }
  .values .value-label {
    font-size: 16px;
  }
}

/* portfolio section style start  */
.portfolio-section {
  padding: 80px 0;
  background-color: #1e1e1e;
}
.portfolio-section h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  font-size: 2.5em;
  margin-bottom: 30px;
  color: #fff;
}
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.portfolio-item {
  width: calc(33.333% - 20px);
  max-width: 300px;
  position: relative;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.portfolio-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
}
/* Center items */
.hidden {
  display: none;
}

.fade-in {
  opacity: 1;
  transform: translateY(0); /* Optional: for smooth transition effect */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-item {
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .portfolio-item {
    width: 100%;
  }
}

.portfolio-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  background-color: transparent;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.filter-btn:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Light transparent overlay */
  color: var(--primary-color); /* Accent color for hover effect */
  transform: translateY(-2px); /* Subtle lift */
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: #ffffff;
  transform: translateY(0); /* Ensure no lift when active */
}

.filter-btn:focus {
  outline: none;
  box-shadow: 0 0 5px #ff7b00;
}

/* portfolio section style end */

/* contact section style start */
.contact-section {
  padding: 80px 0;
  background-color: #121212;
  color: #fff;
  font-family: "Arial", sans-serif;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Contact form styling */
section#contact {
  padding: 80px 0;
  background-color: #111;
  color: #fff;
  text-align: center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' width='32' height='32' fill='none' stroke='rgb(241 245 249 / 0.08)'%3e%3cpath d='M0 .5H31.5V32'/%3e%3c/svg%3e");
  background-position: center;
  background-attachment: fixed;
}
.contact-form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form .row {
  width: 100%;
  max-width: 500px;
  background: #111111;
  padding: 30px 20px;
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
}

.input-field {
  width: 100%;
  padding: 15px;
  margin: 10px 0;
  border: 2px solid #313131;
  background-color: transparent;
  color: #fff;
  font-size: 16px;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease;
}

.input-field::placeholder {
  color: #707070;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.input-field:focus {
  border-color: var(--primary-color);
}

.input-field:focus::placeholder {
  opacity: 0;
}

.contact-form select option {
  color: #000000;
}

/* Button styling */
.submit-btn {
  width: 100%;
  padding: 15px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #e43f0d;
}
div#status-message {
  margin: 15px 0 0;
}
#popup-form #status-message {
  color: #000000;
  text-align: center;
}
/* Responsive styling */
@media (max-width: 768px) {
  .contact-form .row {
    flex-direction: column;
  }
  .contact-form .row {
    max-width: 100%;
  }
}

/* contact section style end */
