/*---------------------------- Common Style ---------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  color: #ffa500;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.9rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.9rem;
  }
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #ffa500, rgba(255, 165, 0, 0.3));
  margin: 15px 0;
  border-radius: 1px;
}

.card-title {
  color: #ffa500;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 480px) {
  .card-title {
    font-size: 1.5rem;
  }
}

.card-description {
  color: #e0e0e0;
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
  flex-grow: 1;
  width: 100%;

  display: -webkit-box;       /* for webkit browsers */
  display: box;               /* legacy spec */
  -webkit-box-orient: vertical;
  box-orient: vertical;       /* legacy spec */

  -webkit-line-clamp: 4;      /* Chrome, Safari, Edge */
  line-clamp: 4;              /* standard property (future-proof) */

  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.5em * 4); /* safeguard (line-height * number of lines) */
}

.badge {
  background: rgba(255, 165, 0, 0.15);
  color: #ffa500;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 165, 0, 0.3);
  transition: all 0.3s ease;
}

.badge:hover {
  background: rgba(255, 165, 0, 0.25);
  color: #ff8c00;
  transform: translateY(-2px);
  border-color: rgba(255, 165, 0, 0.5);
}

.more-btn {
  all: unset;
  background-color: #dc3545;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 20px;
}

.more-btn:hover {
  background-color: #c82333;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.see-btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 300;
  cursor: pointer;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  margin-top: 2rem;
  animation: zoomIn 0.5s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
  border-radius: 11px;
}

.see-btn:hover {
  background-color: #fff !important;
  color: #000 !important;
}

.see-btn i {
  font-weight: 300;
  font-size: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

.see-btn:hover i {
  transform: translateX(3px);
  color: #000;
}

/*---------------------------- End Common Style ---------------------------------*/

/*---------------------------- Start Hero Style ---------------------------------*/
.hero {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("/assests/images/construction-field.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
}

.hero .sub-hero {
  max-width: 1444px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  gap: 2rem;
  color: #ffffff;
  padding: clamp(1rem, 5vw, 3rem);
  margin-top: 7rem;
  flex-direction: column;
}

@media (min-width: 768px) {
  .hero .sub-hero {
    margin-top: 5rem;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1444px;
    gap: 4rem;
  }
}

/* Start Left Section */
.hero .hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: auto;
  width: 100%;
}

@media (min-width: 768px) {
  .hero .hero-left {
    width: 50%;
  }
}

.hero .hero-left .p1 {
  font-family: "Edu NSW ACT Hand Pre", cursive;
  font-size: 0.75rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}

.hero .hero-left .p1 i {
  font-size: 1rem;
  color: #f9ad4a;
}

.hero .hero-left .h1 {
  font-family: "Roboto";
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: normal;
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero .hero-left .p2 {
  font-family: "Montserrat";
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  animation: slideInLeft 0.6s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

/* End Left Section */

/* Start Right Section */
.hero .hero-right {
  margin-top: auto;
}

.hero .hero-right img {
  width: 100%;
  border-radius: 0.5rem;
  opacity: 0;
  animation: zoomFloat 1s ease-out forwards, floatLoop 3s ease-in-out 4s infinite;
  filter: brightness(90%);
}


@media (min-width: 1024px) {
  .hero .hero-right img {
    width: 500px;
  }
}

/* End Right Section */

/* Keyframes */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes zoomFloat {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(7rem);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(7rem);
  }
}

@keyframes floatLoop {

  0%,
  100% {
    transform: scale(1) translateY(7rem);
  }

  50% {
    transform: scale(1) translateY(5rem);
  }
}

/*---------------------------- End Hero Style ---------------------------------*/

/*---------------------------- Start Service Banner Style ---------------------------------*/
.services-banner {
  display: flex;
  max-width: 1444px;
  width: full;
  margin: auto;
  margin-top: 120px;
  height: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.services-banner .service-section {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.services-banner .service-section.dark {
  background-color: #1a2332;
  color: #ffffff;
}

.services-banner .service-section.orange {
  background-color: #ffa726;
  color: #1a2332;
}

.services-banner .icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.services-banner .icon-circle {
  width: 80px;
  height: 80px;
  border: 2px dotted rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 3rem;
}

.services-banner .orange .icon-circle {
  border-color: rgba(26, 35, 50, 0.3);
}

.services-banner .title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
  color: #ffa726;
}

.services-banner .orange .title {
  color: #1a2332;
}

.services-banner .description {
  font-size: 16px;
  line-height: 1.4;
  opacity: 0.9;
  max-height: 100px;
}

@media (max-width: 768px) {
  .services-banner {
    flex-direction: column;
    height: auto;
  }

  .services-banner .service-section {
    padding: 30px 20px;
  }

  .services-banner .icon-container {
    width: 60px;
    height: 60px;
  }

  .services-banner .icon-circle {
    width: 60px;
    height: 60px;
  }

  .services-banner .icon {
    width: 30px;
    height: 30px;
  }

  .services-banner .title {
    font-size: 20px;
  }

  .services-banner .description {
    font-size: 14px;
  }
}

/*---------------------------- End Service Banner Style ---------------------------------*/

/*---------------------------- Start About Us Style ---------------------------------*/
.about-us {
  display: flex;
  min-height: 500px;
  max-width: 1400px;
  background-color: #f8f9fa;
  margin: 100px auto;
  gap: 100px;
}

@media (max-width: 768px) {
  .about-us {
    gap: 0;
  }
}

.about-us .left-section {
  flex: 1;
  position: relative;
  gap: 10px;
  padding: 20px;
}

.about-us .left-section .image-container {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.about-us .left-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  box-shadow: rgb(85, 91, 255) 0px 0px 0px 3px, rgb(31, 193, 27) 0px 0px 0px 6px, rgb(255, 217, 19) 0px 0px 0px 9px, rgb(255, 156, 85) 0px 0px 0px 12px, rgb(255, 85, 85) 0px 0px 0px 15px;
}

.about-us .left-section .image-container:hover img {
  transform: scale(1.05);
}

.about-us .left-section .main-image {
  height: 100%;
  padding: 30px;
  width: 100%;
}

@media (min-width: 768px) {
  .about-us .left-section .main-image {
    padding: 100px;
  }
}

.about-us .left-section .small-image-bottom {
  transform: translateX();
  padding: 30px;
}

@media (min-width: 768px) {
  .about-us .left-section .small-image-bottom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(0);
  }
}

.about-us .right-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-us .right-section .section-tag {
  color: #dc3545;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-us .right-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-us .right-section p {
  color: #666;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

.about-us .right-section .certification {
  display: flex;
  align-items: center;
  margin: 25px 0;
}

.about-us .right-section .certification .cert-icon {
  color: #dc3545;
  font-size: 1.3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
}

.about-us .right-section .certification span {
  color: #333;
  font-weight: 600;
  font-size: 16px;
}

.customize-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-us {
    flex-direction: column;
  }

  .about-us .left-section {
    height: 300px;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }


  .about-us .right-section h2 {
    font-size: 2rem;
  }
}

/*---------------------------- End About Us Style ---------------------------------*/

/*---------------------------- Start Stat Banner Style ---------------------------------*/
.stats-banner {
  display: flex;
  max-width: 1444px;
  margin: 0 auto;
  margin-top: 50px;
  height: 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  overflow: hidden;
}

.stats-banner .stat-section {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.stats-banner .stat-section.dark {
  background-color: #1a2332;
  color: #ffffff;
}

.stats-banner .stat-section.orange {
  background-color: #ffa726;
  color: #1a2332;
}

.stats-banner .icon-container {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-banner .icon {
  font-size: 32px;
  color: #ffa726;
}

.stats-banner .orange .icon {
  color: #1a2332;
}

.stats-banner .content {
  flex: 1;
}

.stats-banner .number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #ffa726;
  line-height: 1;
}

.stats-banner .orange .number {
  color: #1a2332;
}

.stats-banner .label {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .stats-banner {
    flex-direction: column;
    height: auto;
  }

  .stats-banner .stat-section {
    padding: 25px 20px;
    gap: 20px;
  }

  .stats-banner .icon {
    font-size: 28px;
  }

  .stats-banner .number {
    font-size: 36px;
  }

  .stats-banner .label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .stats-banner .stat-section {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .stats-banner .number {
    font-size: 32px;
  }
}

/*---------------------------- End Stat Banner Style ---------------------------------*/

/*---------------------------- Stat Logo Carousel Style ---------------------------------*/
.logo-carousel-section {
  background-color: #f0f0f0;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.logo-carousel-section .logo-carousel {
  display: flex;
  animation: scroll 30s linear infinite;
  width: calc(200px * 20);
  margin-top: 20px;
  /* Adjust based on number of logos */
}

.logo-carousel-section .logo-item {
  flex: 0 0 200px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 30px;
}

.logo-carousel-section .logo {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
  /* filter: grayscale(100%); */
  /* opacity: 0.7; */
  transition: all 0.3s ease;
}

.logo-carousel-section .logo:hover {
  /* filter: grayscale(0%); */
  opacity: 1;
  transform: scale(1.1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
/* .logo-carousel-section:hover .logo-carousel {
  animation-play-state: paused;
} */

@media (max-width: 768px) {
  .logo-carousel-section .logo-carousel {
    animation-duration: 25s;
  }

  .logo-carousel-section .logo-item {
    flex: 0 0 150px;
    margin: 0 10px;
    height: 150px;
  }

  .logo-carousel-section .logo {
    max-width: 150px;
    max-height: 80px;
  }

  .logo-carousel-section .text-logo {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .logo-carousel-section .logo-carousel {
    margin-top: 0;
  }
}

/*---------------------------- End Logo Carousel Style ---------------------------------*/

/*---------------------------- Stat Why Choose Us Style ---------------------------------*/
.why-choose-us {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;

}

.why-choose-us .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.why-choose-us .service-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-choose-us .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-choose-us .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff8c42, #ffa726);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.why-choose-us .service-card:hover::before {
  transform: scaleX(1);
}

.why-choose-us .service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.why-choose-us .service-card:hover .service-icon {
  transform: scale(1.1);
}

.why-choose-us .service-icon i {
  font-size: 2.2rem;
  color: #ff8c42;
}

.why-choose-us .service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c2c;
  margin-bottom: 20px;
}

.why-choose-us .service-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .why-choose-us .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-choose-us {
    padding: 60px 15px;
  }

  .why-choose-us .service-card {
    padding: 30px 15px;
  }
}

@media (max-width: 480px) {
  .why-choose-us .service-title {
    font-size: 1.3rem;
  }

  .why-choose-us .service-description {
    font-size: 0.9rem;
  }
}

/*---------------------------- End Why Choose Us Style ---------------------------------*/

/*---------------------------- Testimonials Style ---------------------------------*/
.testimonial-container {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 20px;
  color: white;
}

.testimonial-container .testimonial-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.testimonial-container .section-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.testimonial-container .title-main {
  display: block;
  color: white;
  font-weight: 900;
}

.testimonial-container .title-secondary {
  display: block;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  letter-spacing: 0.1em;
}

.testimonial-container .quote-marks {
  font-size: 8rem;
  color: #f97316;
  font-family: Georgia, serif;
  line-height: 1;
  margin-top: 20px;
  opacity: 0.8;
}

.testimonials-slider {
  max-width: 800px;
  width: 100%;
  position: relative;
}

.testimonial-container .testimonial-content {
  text-align: center;
  padding: 0 40px;
}

.testimonial-container .testimonial-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.testimonial-container .testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-container .testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-container .testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.testimonial-container .profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonial-container .profile-image:hover {
  border-color: #f97316;
  transform: scale(1.05);
}

.testimonial-container .profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.testimonial-container .profile-image:hover img {
  transform: scale(1.1);
}

.testimonial-container .author-info {
  text-align: left;
}

.testimonial-container .testimonial-name {
  font-size: 1.4rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.testimonial-container .testimonial-role {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.testimonial-container .testimonial-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.testimonial-container .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
  backdrop-filter: blur(10px);
}

.testimonial-container .nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.testimonial-container .testimonial-actions {
  text-align: center;
  margin-top: 50px;
}

.testimonial-container .client-testimonials-btn {
  background: linear-gradient(45deg, #f97316, #ea580c);
  border: none;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.testimonial-container .client-testimonials-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.testimonial-container .client-testimonials-btn:hover::before {
  left: 100%;
}

.testimonial-container .client-testimonials-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.4);
  background: linear-gradient(45deg, #ea580c, #dc2626);
}

.testimonial-container .client-testimonials-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.testimonial-container .client-testimonials-btn svg {
  transition: transform 0.3s ease;
}

.testimonial-container .client-testimonials-btn:hover svg {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .testimonial-container .section-title {
    font-size: 2.5rem;
  }

  .testimonial-container .quote-marks {
    font-size: 5rem;
  }

  .testimonial-container .testimonial-text {
    font-size: 1.1rem;
  }

  .testimonial-container .testimonial-content {
    padding: 0 20px;
  }

  .testimonial-container .testimonial-author {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-container .author-info {
    text-align: center;
  }

  .testimonial-container .profile-image {
    width: 70px;
    height: 70px;
  }

  .testimonial-container .client-testimonials-btn {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .testimonial-container .nav-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .testimonial-container .section-title {
    font-size: 2rem;
  }

  .testimonial-container .quote-marks {
    font-size: 4rem;
  }

  .testimonial-container {
    padding: 20px 10px;
  }
}

/*---------------------------- End Testimonials Style ---------------------------------*/

/*---------------------------- Start Our Services Style ---------------------------------*/
.services-section {
  padding: 80px 20px;
  max-width: 1400px;
  margin: 0 auto;
  background-color: transparent;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.services-section .service-card {
  position: relative;
  background: white;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 11px;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
}

.services-section .service-image {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
}

.services-section .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.services-section .service-card:hover .service-image img {
  transform: scale(1.05);
}

.services-section .service-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* Service Badges Styling */
.services-section .service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
}

.services-section .service-content {
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.services-section .service-info {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

/* Service Title and Icon Container */
.services-section .service-title-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.services-section .service-icon {
  width: 40px;
  height: 40px;
  background-color: #ffa500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: white;
  font-size: 25px;
}

.services-section i {
  transition: all 0.3s ease;
}

.services-section .service-card:hover .service-icon i {
  transform: rotate(180deg);
}

.services-section .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.5), rgba(22, 33, 62, 0.5));
  /* lower alpha */
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 30px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.services-section .service-card:hover .service-overlay {
  opacity: 1;
}

/* Overlay List Styling */
.services-section .overlay-list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.services-section .overlay-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  transition: all 0.3s ease;
}

.services-section .overlay-list li:before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 8px;
  color: #ffa500;
  font-size: 12px;
  transition: all 0.3s ease;
}

.services-section .overlay-list li:hover {
  color: #ffa500;
  transform: translateX(5px);
}

.services-section .overlay-list li:hover:before {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    gap: 25px;
  }

  .services-section .service-info {
    min-height: 180px;
  }
}

@media (max-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
  }

  .services-section .service-card {
    height: auto;
    min-height: 450px;
  }

  .services-section .service-image {
    height: 250px;
    flex-shrink: 0;
  }

  .services-section .service-info {
    min-height: 160px;
    padding: 25px;
  }

  .services-section .overlay-list li {
    font-size: 14px;
    padding: 6px 0 6px 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 60px 15px;
  }

  .services-section .service-card {
    height: auto;
    min-height: 400px;
  }

  .services-section .service-image {
    height: 200px;
    flex-shrink: 0;
  }

  .services-section .service-badge {
    font-size: 10px;
    padding: 4px 8px;
  }

  .services-section .service-info {
    min-height: 140px;
    padding: 20px;
  }

  .services-section .overlay-list li {
    font-size: 13px;
    padding: 5px 0 5px 18px;
  }
}

/*---------------------------- End Our Services Style ---------------------------------*/

/*---------------------------- Start Our Projects Style ---------------------------------*/
.projects-container {
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 60px 0px;
}

.projects-container .container {
  max-width: 1444px;
  margin: 0 auto;
}

.projects-container .slider-container {
  position: relative;
  width: 100%;
  height: 550px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

@media (max-width: 480px) {
  .projects-container .slider-container {
    height: 600px;
  }

  .projects-container .item {
    opacity: 0.3;
  }
}

.projects-container .slider {
  list-style-type: none;
  position: relative;
  width: 100%;
  height: 100%;
}

.projects-container .item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}

.projects-container .item:nth-child(1),
.projects-container .item:nth-child(2) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}

.projects-container .item:nth-child(3) {
  left: calc(50% + 220px);
}

.projects-container .item:nth-child(4) {
  left: calc(50% + 440px);
}

.projects-container .item:nth-child(5) {
  left: calc(50% + 660px);
}

.projects-container .item:nth-child(6) {
  left: calc(50% + 880px);
}

.projects-container .content {
  width: min(30vw, 400px);
  position: absolute;
  top: 50%;
  left: 3rem;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 10px;
}

.projects-container .item:nth-of-type(2) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}

.projects-container .project-date {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.projects-container .project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.projects-container .nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  user-select: none;
}

.projects-container .nav .btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.6);
  margin: 0 0.25rem;
  padding: 0.75rem;
  border-radius: 11px;
  cursor: pointer;
}

.projects-container .nav .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.projects-container .see-more-container {
  text-align: center;
  margin-top: 40px;
}

.projects-container .btn-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(-50%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (width > 650px) and (width < 900px) {
  .projects-container .content {
    width: min(50vw, 400px);
  }

  .projects-container .item {
    width: 160px;
    height: 270px;
  }

  .projects-container .item:nth-child(3) {
    left: calc(50% + 170px);
  }

  .projects-container .item:nth-child(4) {
    left: calc(50% + 340px);
  }

  .projects-container .item:nth-child(5) {
    left: calc(50% + 510px);
  }

  .projects-container .item:nth-child(6) {
    left: calc(50% + 680px);
  }
}

@media (width < 650px) {
  .projects-container .content {
    width: fit-content;
    left: 1rem;
    right: 1rem;
  }

  .projects-container .item {
    width: 130px;
    height: 220px;
  }

  .projects-container .item:nth-child(3) {
    left: calc(40% + 140px);
  }

  .projects-container .item:nth-child(4) {
    left: calc(40% + 280px);
  }

  .projects-container .item:nth-child(5) {
    left: calc(40% + 420px);
  }

  .projects-container .item:nth-child(6) {
    left: calc(40% + 560px);
  }
}

/*---------------------------- End Our Projects Style ---------------------------------*/