* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden !important;
}

/* Navbar Styles */
.navbar {
  transition: all 0.5s ease;
  padding: 20px 0;
  background: transparent;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar.scrolled .navbar-brand,
.navbar.scrolled .nav-link {
  color: #000 !important;
}
.navbar.simple {
  background-color: rgba(255, 255, 255, 0.98) !important;
  padding: 10px 0;
}

.navbar.simple .navbar-brand,
.navbar.simple .nav-link {
  color: #000 !important;
}

.navbar-brand {
  font-size: 40px;
  font-weight: 700;
  color: #fff !important;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 15px;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
  letter-spacing: 1px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar.scrolled .nav-link::after {
  background: #000;
}
.navbar.active .nav-link::after {
  background: #000;
}

.nav-link:hover::after {
  width: 80%;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280,0,0,1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("assest/images/hero.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px 0;
}

/* Animated background particles */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.02) 2px,
    rgba(255, 255, 255, 0.02) 4px
  );
  animation: slideBackground 20s linear infinite;
}

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

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

.hero-content {
  color: #fff;
  z-index: 2;
  max-width: 900px;
}

.hero-title {
  font-size: 45px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 800px;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 36px;
  }
  .navbar-nav {
    background-color: white;
  }
  .nav-link {
    color: black !important;
  }
  .navbar-brand {
    font-size: 24px;
  }

  .contact-form {
    padding: 30px;
  }

  .hero-section {
    padding: 100px 0 60px 0;
  }
}

/* Scroll Progress Bar */
.progress-bar-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}

.progress-bar {
  height: 100%;
  background: #fff;
  width: 0%;
  transition: width 0.1s ease;
}

/* Typing Animation */
.typed-cursor {
  opacity: 1;
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* Services Section */
.services-section {
  background: #fff;
}

.service-card {
  padding: 60px 40px;
  background: #fff;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  border: none;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
} */

/* .service-card:hover::before {
  opacity: 1;
} */

.service-card.dark {
  background: #1a1a1a;
  color: #fff;
}

.service-card.light {
  background: #f5f5f5;
  color: #000;
}

/* .service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10;
} */
.service-card.dark:hover {
  background: #f5f5f5;
  color: #000;
  /* border: 1px solid black; */
}
.service-card.light:hover {
  background: #1a1a1a;
  color: #fff;
  /* border: 1px solid white; */
}

.service-card h3 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 25px;
  line-height: 1.3;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.service-card:hover h3 {
  transform: translateY(-10px);
}

.service-card p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.9;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  max-width: 400px;
}

.service-card.dark p {
  color: rgba(255, 255, 255, 0.9);
}

.service-card.light p {
  color: rgba(0, 0, 0, 0.8);
}

.service-card.light:hover p {
  color: rgba(255, 255, 255, 0.9);
}
.service-card.dark:hover p {
  color: rgba(0, 0, 0, 0.8);
}

/* Add decorative line */
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transition: width 0.5s ease;
}

.service-card:hover::after {
  width: 80%;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  padding: 20px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 19px;
  min-width: 200px;
  justify-content: space-between;
  transition: all 0.3s ease;
}

/* Divider */
.custom-btn .btn-divider {
  width: 3px;
  height: 30px;
  opacity: 0.4;
}

/* Arrow */
.custom-btn .btn-arrow i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Hover animation */
.custom-btn:hover .btn-arrow i {
  transform: translateX(5px);
}

/* Light button */
.light-btn {
  background: #ffffff;
  color: #111;
}

.light-btn .btn-divider {
  background: #999;
}

.light-btn:hover {
  background: #f2f2f2;
}

/* Dark button */
.dark-btn {
  background: #111;
  color: #fff;
}

.dark-btn .btn-divider {
  background: #fff;
}

.dark-btn:hover {
  background: #222;
}

.home-carousel-section {
  padding: 100px 0;
  overflow: hidden;
}

.home-carousel-section .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  padding: 0 40px;
}

.home-carousel-section .section-title {
  font-size: 46px;
  font-weight: 400;
  color: #000;
  margin: 0;
}

.home-carousel-section .carousel-controls {
  display: flex;
  gap: 20px;
}

.home-carousel-section .carousel-arrow {
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
  font-size: 30px;
  font-weight: bold;
  color: #000;
}

.home-carousel-section .carousel-arrow:active {
  transform: scale(0.95);
}
/* 
.home-carousel-section .carousel-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
} */

.home-carousel-section .carousel-container {
  position: relative;
  padding: 0 40px;
}

/* Slick Carousel Customization */
.home-carousel-section .slick-slider {
  position: relative;
}

.home-carousel-section .slick-list {
  overflow: visible;
  margin: 0 -15px;
}

.home-carousel-section .slick-slide {
  padding: 0 15px;
  transition: all 0.3s ease;
}

.home-carousel-section .slick-track {
  display: flex !important;
  align-items: stretch;
}

.home-carousel-section .carousel-card {
  width: 100%;
  height: 550px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.home-carousel-section .carousel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
  transition: all 0.5s ease;
}

.home-carousel-section .carousel-card:hover::before {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

.home-carousel-section .carousel-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.home-carousel-section .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.home-carousel-section .carousel-card:hover .card-image {
  transform: scale(1.1);
}

.home-carousel-section .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  color: #fff;
  z-index: 2;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.home-carousel-section .carousel-card:hover .card-content {
  transform: translateY(-10px);
}

.home-carousel-section .card-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.2;
}

.home-carousel-section .card-description {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
  font-weight: 400;
}

/* Card specific colors/themes */
.home-carousel-section .card-energy {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
}

.home-carousel-section .card-healthcare {
  background: linear-gradient(135deg, #0a5f5f 0%, #0d7f7f 100%);
}

.home-carousel-section .card-financial {
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.home-carousel-section .card-media {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
}

/* Hide default slick arrows */
.home-carousel-section .slick-prev,
.home-carousel-section .slick-next {
  display: none !important;
}

/* Responsive */
@media (max-width: 1200px) {
  .home-carousel-section .section-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .home-carousel-section .section-title {
    font-size: 36px;
  }

  .home-carousel-section .carousel-card {
    height: 450px;
  }

  .home-carousel-section .card-title {
    font-size: 24px;
  }

  .home-carousel-section .card-description {
    font-size: 14px;
  }

  .home-carousel-section .section-header {
    padding: 0 20px;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
  }

  .home-carousel-section .carousel-container {
    padding: 0 20px;
  }

  .home-carousel-section .slick-list {
    margin: 0 -10px;
  }

  .home-carousel-section .slick-slide {
    padding: 0 10px;
  }
}

@media (max-width: 576px) {
  .home-carousel-section .section-title {
    font-size: 28px;
  }

  .home-carousel-section .carousel-card {
    height: 400px;
  }

  .home-carousel-section .card-content {
    padding: 30px;
  }
}
.expertise-section {
  background: #fff;
}

/* LEFT CONTENT */
.expertise-section .content-area {
  display: flex;
  align-items: center;
  justify-content: end;
}

.expertise-section .content-inner {
  padding: 120px 70px;
  max-width: 720px;
}

.expertise-section .section-title {
  font-size: 52px;
  font-weight: 400;
  margin-bottom: 28px;
  color: #000;
}

.expertise-section .section-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 36px;
}

.expertise-section .expertise-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.expertise-section .expertise-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #111;
}

.expertise-section .expertise-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: #000;
  position: absolute;
  left: 0;
  top: 8px;
}

/* RIGHT IMAGE */
.expertise-section .image-area {
  min-height: 100%;
  background-image: url("https://images.unsplash.com/photo-1753613648109-791ed9c85b82?q=80&w=1600&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .expertise-section .content-inner {
    padding: 70px 40px;
  }

  .expertise-section .section-title {
    font-size: 40px;
  }

  .expertise-section .image-area {
    min-height: 400px;
  }
}

@media (max-width: 576px) {
  .expertise-section .content-inner {
    padding: 50px 24px;
  }

  .expertise-section .section-title {
    font-size: 32px;
  }

  .expertise-section .section-desc {
    font-size: 16px;
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background: #1a1a1a;
  color: #fff;
}

.contact-section .contact-info {
  padding-right: 40px;
}

.contact-section .contact-brand a {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.contact-section .contact-tagline {
  font-size: 35px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-weight: 300;
}

.contact-section .contact-details {
  margin-bottom: 40px;
}

.contact-section .contact-phone,
.contact-section .contact-email {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-section .contact-address {
  margin-top: 20px;
}

.contact-section .contact-address p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 5px;
  font-weight: 400;
}

.contact-section .social-links {
  display: flex;
  gap: 15px;
}

.contact-section .social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-section .social-icon:hover {
  background: #fff;
  color: #1a1a1a;
  border-color: #fff;
  transform: translateY(-3px);
}

.contact-section .contact-form {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-section .form-group {
  margin-bottom: 20px;
}

.contact-section .form-input {
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.contact-section .form-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  font-weight: 500;
}

.contact-section .form-input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.contact-section .form-input:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.contact-section textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-section .submit-btn {
  width: 100%;
  padding: 18px 50px;
  background: #fff;
  color: #000;
  border: none;
  font-weight: 600;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
}

.contact-section .submit-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .contact-section .contact-tagline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
  }
  .contact-section .contact-form {
    padding: 0px;
  }
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-copyright {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .contact-section .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

/* Responsive */

.services-header {
  padding: 200px 0 100px 0;
}
.services-header h2 {
  font-size: 40px;
  font-weight: 400;
}

.service-cards-section {
  position: relative;
}

.service-cards-section .card-wrapper {
  position: sticky;
  top: 10vh;
  height: 80vh;
  margin-bottom: 2vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-cards-section .card {
  position: relative;
  width: 90%;
  max-width: 1200px;
  height: 100%;
  border-radius: 30px;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.178);
  transition: transform 0.3s ease;
}

.service-cards-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}

/* Card specific styles */
.service-cards-section .card-1 {
  /* background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); */
  background-color: #1a1a1a;
}

.service-cards-section .card-2 {
  /* background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%); */
  background-color: #ffffff;
}

.service-cards-section .card-3 {
  /* background: linear-gradient(135deg, #b2dfdb 0%, #80cbc4 100%); */
  background-color: #1a1a1a;
}

.service-cards-section .card-4 {
  /* background: linear-gradient(135deg, #c5cae9 0%, #9fa8da 100%); */
  background-color: #ffffff;
}

.service-cards-section .card-5 {
  /* background: linear-gradient(135deg, #ffccbc 0%, #ffab91 100%); */
  background-color: #1a1a1a;
}

.service-cards-section .card-6 {
  /* background: linear-gradient(135deg, #ffccbc 0%, #ffab91 100%); */
  background-color: #ffffff;
}

.service-cards-section .card-7 {
  /* background: linear-gradient(135deg, #ffccbc 0%, #ffab91 100%); */
  background-color: #1a1a1a;
}

/* Card Content */
.service-cards-section .card-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.service-cards-section .card-number {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.service-cards-section .card-number-black {
  color: rgba(0, 0, 0, 0.5);
}

.service-cards-section .card-number-white {
  color: #ffffff;
}

.service-cards-section .card-title {
  font-size: 44px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #1a1a1a;
  line-height: 1.2;
}

.service-cards-section .card-title-black {
  color: rgb(0, 0, 0);
}

.service-cards-section .card-title-white {
  color: #ffffff;
}

.service-cards-section .card-description {
  font-size: 20px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 40px;
  opacity: 0.9;
}

.service-cards-section .card-description-black {
  color: rgba(0, 0, 0, 0.5);
}

.service-cards-section .card-description-white {
  color: #ffffff;
}

.service-cards-section .card-button {
  display: inline-block;
  padding: 16px 40px;
  background: #d84315;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.service-cards-section .card-button:hover {
  background: #bf360c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(216, 67, 21, 0.4);
}

/* Progress indicator */
.service-cards-section .progress-indicator {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-cards-section .progress-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.service-cards-section .progress-dot.active {
  background: #fff;
  transform: scale(1.5);
}

.service-cards-section .progress-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-cards-section .progress-dot.active::after {
  opacity: 1;
}

/* End spacer */
.service-cards-section .end-spacer {
  height: 40vh;
}

/* Responsive */
@media (max-width: 1200px) {
  .service-cards-section .card {
    padding: 50px 60px;
  }

  .service-cards-section .card-title {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .service-cards-section .card-wrapper {
    height: 70vh;
  }

  .service-cards-section .card {
    padding: 40px;
    border-radius: 20px;
  }

  .service-cards-section .card-title {
    font-size: 36px;
  }

  .service-cards-section .card-description {
    font-size: 16px;
  }

  .service-cards-section .progress-indicator {
    right: 20px;
  }
}

@media (max-width: 480px) {
  .service-cards-section .card {
    padding: 30px;
  }

  .service-cards-section .card-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .service-cards-section .card-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .service-cards-section.card-button {
    padding: 12px 30px;
    font-size: 14px;
  }
}
.sector-header {
  padding: 200px 0 50px 0;
}
.sector-header h2 {
  font-size: 48px;
  font-weight: 200;
}
/* SECTION BASE */
.industry-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  padding: 80px;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

/* BACKGROUND IMAGES */
.energy {
  background-image: url("assest/images/sectore1.avif");
}

.healthcare {
  background-image: url("assest/images/sectore2.jpeg");
}
.financial-services {
  background-image: url("assest/images/sectore3.avif");
}
.media-telecommunications {
  background-image: url("assest/images/sectore4.avif");
}
.government-public {
  background-image: url("assest/images/sectore5.avif");
}
.arts-culture {
  background-image: url("assest/images/sectore7.avif");
}

/* OVERLAY */
.industry-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.35) 50%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
}

/* CONTENT */
.industry-section .content {
  position: relative;
  max-width: 600px;
  z-index: 2;
  animation: fadeUp 1.2s ease both;
}

.industry-section .content h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 20px;
}

.industry-section .content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
}
.industry-section .content-p .p-big {
  font-size: 30px;
  line-height: 1.7;
  opacity: 0.95;
  color: #000000;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .industry-section {
    padding: 40px 20px;
    background-attachment: scroll;
  }

  .industry-section .content h2 {
    font-size: 32px;
  }

  .industry-section .content p {
    font-size: 16px;
  }
}

.leadership-section {
  background: #ffffff;
}
.leadership-section .leadership-item {
  align-items: stretch; /* equal height columns */
}

.section-title {
  font-size: 36px;
  font-weight: lighter;
  color: #000;
  margin-bottom: 20px;
}

.leadership-img {
  width: 100%;
  height: 100%;
  border-radius: 2px;
  object-fit: cover;
}

.leadership-section .name {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 4px;
}

.leadership-section .designation {
  font-size: 18px;
  color: #666;
  margin-bottom: 10px;
}

.linkedin-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px;
}

.linkedin-icon:hover {
  background: #666;
  color: #fff;
}

.bio p {
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}
.about-header {
  padding: 200px 0 50px 0;
}
.about-header h2 {
  font-size: 45px;
  font-weight: lighter;
}
.about-content {
  background-color: #1a1a1a;
  padding: 90px 0;
}
.about-content p {
  color: #ffffff;
  font-size: 20px;
}
.about-operations {
  padding: 90px 0;
}
.about-operations h2 {
  font-size: 45px;
  font-weight: lighter;
}
.about-operations p {
  font-size: 20px;
}

.contact-map-section {
  position: relative;
}

/* MAP */
.contact-map-section .map-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* INFO BAR */
.contact-map-section .contact-info-bar {
  background: #ffffff;
  padding: 50px 0;
  box-shadow: 0 -8px 20px rgba(0, 0, 0, 0.08);
}

.contact-map-section .info-item {
  padding: 10px 20px;
}

.contact-map-section .label {
  display: block;
  font-size: 16px;
  font-weight: lighter;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.contact-map-section .value {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/* MOBILE */
@media (max-width: 767px) {
  .contact-map-section .map-wrapper img {
    height: 320px;
  }

  .contact-map-section .info-item {
    margin-bottom: 20px;
  }
}

@media (max-width: 551px) {
  .about-header {
    padding: 100px 0 50px 0;
  }
  .sector-header {
    padding: 100px 0 50px 0;
  }
  .services-header {
    padding: 100px 0 50px 0;
  }
}
@media (max-width: 768px) {
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translate3d(0, 20px, 0) !important;
  }
}
[data-aos] {
  will-change: transform, opacity;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 30px;
  height: 52px;
  background: #333;
  color: #ffffff;
  border-radius: 15px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
