/* ===========================================
🌐 TECHCREW SOLUTIONS – Global Stylesheet
Built with ❤️ by a professional web developer
=========================================== */

/* ===============================
   🔧 CSS Variables (Theme Config)
=============================== */
:root {
  /* 🎨 Colors */
  --clr-primary: #00bcd4;
  --clr-primary-dark: #0097a7;
  --clr-accent: #ffc107;
  --clr-white: #ffffff;
  --clr-light: #f9f9f9;
  --clr-dark: #121212;
  --clr-bg: #1a1a1a;
  --clr-surface: #2a2a2a;
  --clr-border: #333;
  --clr-text-main: #e0e0e0;
  --clr-text-muted: #666;

  /* ✍️ Fonts */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Roboto", sans-serif;

  /* 📐 Spacing (rem) */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* 🧱 Layout */
  --max-width: 1200px;
  --container-padding: var(--space-md);

  /* ✨ Effects */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 6px 20px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ===============================
     🧼 Reset & Base Elements
  =============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius-sm);
}

ul {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--clr-primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

p {
  margin-bottom: var(--space-sm);
  color: var(--clr-text-muted);
}

/* ===============================
     📦 Layout Utilities
  =============================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.section {
  padding: var(--space-xl) 0;
}

.text-center {
  text-align: center;
}

.text-white {
  color: var(--clr-white);
}

.bg-primary {
  background-color: var(--clr-primary);
}

.bg-dark {
  background-color: var(--clr-dark);
}

.shadow {
  box-shadow: var(--shadow-md);
}

.rounded {
  border-radius: var(--radius-md);
}

/* ===============================
     🔘 Buttons
  =============================== */
.btn {
  display: inline-block;
  background-color: var(--clr-primary);
  color: var(--clr-white);
  padding: var(--space-sm) var(--space-md);
  font-weight: 300;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.btn:hover {
  background-color: var(--clr-primary-dark);
}

.btn-cta {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  border: 2px solid var(--clr-primary);
  background-color: transparent;
  color: var(--clr-primary);
  border-radius: 30px;
  transition: all var(--transition-fast);
}

.btn-cta:hover {
  background-color: var(--clr-primary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.4);
}

/* ===============================
     🚀 Hero Section
  =============================== */
.hero-section {
  position: relative;
  height: fit-content;
  padding-bottom: 3rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(18, 18, 18, 0.6),
    rgba(18, 18, 18, 0.9)
  );
  z-index: 1;
}

.hero-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.5s ease-in-out, transform 10s ease-in-out;
  will-change: opacity, transform;
}

.bg-slide.active {
  opacity: 1;
  transform: scale(1.1); /* Zoom effect */
}

.company-logo {
  position: absolute;
  top: 10%;
  z-index: 2;
}

.company-logo img {
  width: 130px;
}

.hero-content {
  position: relative;
  margin-top: 18%;
  z-index: 3;
}
.welcome-text {
  font-size: 2.8rem;
  font-family: var(--font-heading);
}

.vision-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto var(--space-md);
  color: var(--clr-text-main);
}

.highlight {
  display: block;
  color: var(--clr-primary);
}

/* ===============================
     ⬇ Scroll Indicator (Optional)
  =============================== */
.scroll-down {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 1.8s infinite;
  font-size: 2rem;
  color: var(--clr-primary);
  z-index: 3;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

/* ===============================
     📱 Responsive Design
  =============================== */
@media (max-width: 768px) {
  :root {
    --space-xl: 2rem;
    --space-lg: 1.5rem;
    --space-md: 1rem;
    --space-sm: 0.75rem;
  }

  h1 {
    font-size: 2rem;
  }

  .btn-cta {
    font-size: 0.95rem;
    padding: 0.6rem 1.5rem;
  }

  .vision-text {
    font-size: 1rem;
  }

  .navbar-nav {
    gap: 1rem;
  }

  .hero-content {
    top: 10%;
    padding: 0 var(--space-sm);
  }
}

/* ================================
   🔥 Fancy NavLink Hover Effects
================================ */
.custom-navbar {
  top: 30%;
  background-color: transparent;
  z-index: 4;
}

.navbar-nav .nav-link {
  position: relative;
  font-weight: 300;
  color: var(--clr-text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  padding-right: 2rem;
  padding-left: 2rem;
  transition: all 0.4s ease;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid var(--clr-primary);
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
  border-radius: var(--radius-md);
  z-index: -1;
}

.navbar-nav .nav-link:hover::before {
  opacity: 1;
  transform: scale(1);
  background-color: rgba(0, 188, 212, 0.1);
}

.navbar-nav .nav-link:hover {
  color: var(--clr-primary);
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.4);
  transform: translateY(-2px);
}
.nav-link.crazy-hover.active,
.nav-link.fancy-link.active {
  color: var(--clr-primary);
}

/* Dropdown Menu Styling */
.custom-dropdown {
  background-color: rgba(0, 0, 0, 0.85); /* semi-transparent background */
  border: 1px solid var(--main-color);
  border-radius: 8px;
  padding: 0.5rem 0;
  animation: fadeDown 0.3s ease-in-out;
}

/* Dropdown Item Styling */
.custom-dropdown .dropdown-item {
  color: #ffffff;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.custom-dropdown .dropdown-item:hover {
  background-color: var(--main-color);
  color: var(--clr-primary);
  padding-left: 28px;
}

/* Optional: Add a left-side animated bar or icon effect on hover */
.custom-dropdown .dropdown-item::before {
  content: "➜";
  position: absolute;
  left: 12px;
  opacity: 0;
  transition: all 0.3s ease;
  color: #fff;
}

.custom-dropdown .dropdown-item:hover::before {
  opacity: 1;
  left: 8px;
}

.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

@media (max-width: 1024px) {
  .custom-navbar {
    top: 28%;
  }
  .hero-content {
    margin-top: 25%;
  }
}

@media (max-width: 425px) {
  .company-logo img {
    width: 100px;
  }

  .hero-content {
    margin-top: 40%;
  }
}

@media (max-width: 320px) {
  .company-logo {
    top: 8%;
  }

  .hero-content {
    margin-top: 50%;
  }
  .welcome-text {
    font-size: 25px !important;
  }
}

/* Dropdown Animation */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .hero-section {
    padding: 2rem;
  }
  .navbar-nav {
    display: none;
  }
}
@media (max-width: 425px) {
  .hero-section {
    height: fit-content;
    padding: 2rem 0.5rem;
  }
  .welcome-text {
    font-size: 35px;
  }
}
@media (max-width: 375px) {
  .welcome-text {
    font-size: 30px;
  }
}

.our-services {
  background-color: var(--clr-light);
}

.our-services h2 {
  color: var(--clr-primary-dark);
}

.section-subtitle {
  color: var(--clr-text-muted);
  font-size: 1rem;
}

.service-card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.service-img img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-content h4 {
  color: var(--clr-dark);
  text-align: center;
}

.service-content p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-align: justify;
}

.btn-readmore {
  background: linear-gradient(
    to right,
    var(--clr-primary),
    var(--clr-primary-dark)
  );
  color: white;
  font-weight: 300;
  padding: 0.5rem 1.2rem;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  border: 1px solid var(--clr-primary-dark);
}

.btn-readmore:hover {
  background: linear-gradient(
    to right,
    var(--clr-primary-dark),
    var(--clr-primary)
  );
  color: #fff;
}

/*  Why us */

.why-us-section {
  background-color: var(--dark-color);
  color: var(--text-light);
}

.why-us-section .section-title {
  font-weight: 500;
  color: var(--text-light);
}

.why-us-section .section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

strong {
  letter-spacing: 2px;
  color: var(--clr-primary);
}
.why-us-section .feature-box {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 1.2rem;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.why-us-section .feature-box:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 255, 255, 0.08);
}

.why-us-section .feature-box .icon {
  color: var(--clr-primary-dark);
  margin-bottom: 10px;
}

.why-us-section .feature-box h5 {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.why-us-section .feature-box p {
  font-size: 0.95rem;
  color: var(--text-light);
  opacity: 0.85;
}

.why-us-section .image-wrapper img {
  border-radius: 1rem;
  object-fit: cover;
  width: 100%;
  max-height: 500px;
}

/*                our Project Sectiion                      */

.our-project {
  min-height: fit-content;
  overflow: hidden;
}

.project-backgrounds {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
  animation: projectSlideShow 10s infinite ease-in-out;
}

.project-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

.project-content {
  position: relative;
  z-index: 3;
}

/* Slideshow Animation */
@keyframes projectSlideShow {
  0% {
    background-image: url("../assets/images/project-bg.jpg");
  }
  33% {
    background-image: url("../assets/images/project-bg.jpg");
  }
  66% {
    background-image: url("../assets/images/conference.jpg");
  }
  100% {
    background-image: url("../assets/images/light.jpg");
  }
}

/* Our Clients Section */
.clients-section .section-title {
  color: var(--clr-dark);
}

.clients-section .client-logo {
  background-color: var(--clr-white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  text-align: center;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
}

.clients-section .client-logo img {
  max-width: 100%;
  background-position: center;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.clients-section .client-logo:hover img {
  filter: none;
  transform: scale(1.05);
}

/*           Contact us Section       */

.elevate-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a2533 100%);
  color: white;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.elevate-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../assets/images/show-crew.jpg) center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.section-content {
  position: relative;
  z-index: 1;
}

.elevate-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.elevate-section .section-subtitle {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: var(--clr-white);
}

.divider {
  width: 100px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 2rem auto;
}

.contact-btn {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border: 2px solid var(--clr-light);

  border-radius: 50px;
  font-weight: 300;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-btn:hover {
  background-color: var(--clr-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
  border-color: var(--clr-primary-dark);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
  .elevate-section .section-title {
    font-size: 2rem;
  }

  .elevate-section .section-subtitle {
    font-size: 1rem;
  }

  .contact-btn {
    width: 40%;
  }
}

/*       Footer section      */

.footer {
  background-color: var(--clr-dark);
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer p {
  color: var(--clr-text-main);
  line-height: 1.6;
}
.contact-info {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  flex-wrap: wrap;
}
.contact-info li {
  margin-bottom: 10px;
  color: var(--clr-text-main);
  font-size: 15px;
}

.contact-info i {
  color: var(--clr-primary);
  min-width: 20px;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}
.social-icons a {
  font-size: 20px;
  width: 40px;
  height: 40px;
  color: var(--clr-white);

  border-radius: 50%;
  transition: 0.4s ease;
}

/* Hover Brand Colors */
.social-icons a.facebook:hover {
  color: #1877f2;
}
.social-icons a.instagram:hover {
  color: #e4405f;
}
.social-icons a.linkedin:hover {
  color: #0a66c2;
}
.social-icons a.twitter:hover {
  color: #1da1f2;
}

/* Animations */
.animate-footer {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}
.animate-footer:nth-child(1) {
  animation-delay: 0.2s;
}
.animate-footer:nth-child(2) {
  animation-delay: 0.4s;
}
.animate-footer:nth-child(3) {
  animation-delay: 0.6s;
}
.animate-footer:nth-child(4) {
  animation-delay: 0.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
  .contact-info li {
    justify-content: center;
  }
}

.about-section {
  background-color: var(--clr-white);
  position: relative;
  overflow: hidden;
}

.text-content {
  text-align: justify;
  z-index: 2;
  position: relative;
}

.about-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-surface);
  position: relative;
  padding-bottom: 15px;
}

.about-section .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--clr-primary);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--clr-text-muted);
}

.features-list {
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: 0.3s ease;
  font-weight: 500;
  color: var(--clr-text-muted);
}

.feature-item:hover {
  transform: translateX(8px);
  color: var(--clr-primary);
}

.feature-icon {
  color: var(--clr-primary);
  font-size: 1.2rem;
  margin-right: 10px;
}

/* Right Column Background */
.state-col,
.experience-area {
  background: url(../assets/images/about-us3.jpg) center/cover no-repeat;
  border-radius: 10px;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.state-col {
  background: url(../assets/images/trust.jpg) center/cover no-repeat;
  height: 100%;
}

.state-col::before,
.experience-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clr-dark);
  opacity: 0.6;
  z-index: 1;
}

.experience-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 300px;
  text-align: center;
  z-index: 2;
}

.experience-number {
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-primary);
  line-height: 1;
}

.experience-label {
  font-size: 1.2rem;
  color: var(--clr-dark);
  font-weight: 600;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .experience-area {
    margin-top: 40px;
    min-height: 300px;
  }

  .experience-card {
    padding: 1.5rem;
  }

  .experience-number {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

@media (max-width: 425px) {
  .about-page.hero-content {
    margin-top: 30%;
  }
}

/* Expert Advice Section Styles */
.expert-section {
  background-color: var(--clr-white);
  position: relative;
}

.expert-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-dark);
}

.expert-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--clr-dark);
  margin-bottom: 1rem;
  text-align: justify;
}

.stat-card {
  background-color: var(--clr-light);
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: var(--clr-primary);
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: var(--clr-white);
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-primary);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--clr-dark);
  transition: color 0.3s ease;
}

/* Animation Effects */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out both;
}

.animate-up {
  animation: moveUp 0.8s ease forwards;
  opacity: 0;
}

.animate-up.delay-1 {
  animation-delay: 0.2s;
}
.animate-up.delay-2 {
  animation-delay: 0.4s;
}
.animate-up.delay-3 {
  animation-delay: 0.6s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes moveUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Fixes */
@media (max-width: 992px) {
  .section-title {
    font-size: 2rem;
  }
  .stat-number {
    font-size: 2rem;
  }
  .stat-label {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
  .expert-text {
    font-size: 1rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }
  .stat-label {
    font-size: 0.95rem;
  }
}

@media (max-width: 425px) {
  .state-col {
    padding: 20px;
  }
  .contact-btn {
    width: 70%;
  }
}
/* Team Intro Section */
.team-intro-section {
  background-color: var(--clr-white);
}

.team-intro-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-dark);
  margin-bottom: 0.5rem;
}

.team-intro-section .section-subtitle {
  max-width: 800px;
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* Team Highlight Card */
.team-highlight-card {
  background: var(--clr-white);
  border-left: 5px solid var(--clr-primary);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.team-highlight-card h4 {
  color: var(--clr-primary-dark);
}

.team-highlight-card p {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.3s;
}

.delay-2 {
  animation-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .team-highlight-card h4 {
    font-size: 1.2rem;
  }
}

/* CTA Banner Section */
.cta-banner-section {
  background: url("../assets/images/project-bg.jpg") center center/cover
    no-repeat;
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.cta-banner-section .subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  color: var(--clr-white);
  margin-bottom: 1rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.cta-button {
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 30px;
  background-color: var(--clr-primary);
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: var(--clr-primary-dark);
  color: var(--clr-white);
}

/* Simple CSS Animation */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.8s;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .cta-banner-section {
    height: 100vh;
  }

  .main-title {
    font-size: 2rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

/* Section Styling */
.team-section {
  padding: 80px 20px;
  background-color: var(--clr-white);
  text-align: center;
  animation: fadeIn 1.2s ease-in-out;
}

.team-section h2 {
  font-size: 2.5rem;
  color: var(--clr-dark);
  margin-bottom: 10px;
}

.team-section p {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto 20px;
}

/* Grid Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Team Card */
.team-card {
  background: var(--clr-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Team Info */
.team-info {
  padding: 10px 20px;
  background-color: var(--clr-white);
}

.team-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--clr-primary);
}

.team-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 10px;
}

.team-info p {
  font-size: 0.95rem;
  color: var(--clr-dark);
  line-height: 1.5;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Text */
@media (max-width: 768px) {
  .team-section h2 {
    font-size: 2rem;
  }

  .team-section p {
    font-size: 0.95rem;
  }

  .team-info h4 {
    font-size: 1.15rem;
  }

  .team-info p {
    font-size: 0.9rem;
  }
}

.contact-intro-section {
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.contact-intro-section h2,
.contact-intro-section p {
  color: var(--clr-dark);
}

.contact-intro-section .btn {
  background-color: var(--clr-primary);
  border: none;
  padding: 12px 30px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact-intro-section .btn:hover {
  background-color: var(--clr-primary-dark);
}

/* Info Section */
.contact-info-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--clr-white);
}

.contact-info-section i {
  color: var(--clr-primary);
}

.contact-info-section h5 {
  font-size: 1.25rem;
}

.contact-info-section p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--clr-white);
}

/* Map Section */
.map-container {
  height: 300px;
  padding: 30px;
  background-color: var(--clr-white);
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

.animate-fade-up {
  animation: fadeIn 1s ease-in-out forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: 0.4s;
}
.delay-2 {
  animation-delay: 0.8s;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 2rem;
  }
  .connect-section {
    height: auto;
    padding: 60px 0;
  }
}

.project-intro h2 {
  color: var(--clr-dark);
  font-size: 2rem;
}

@media (min-width: 992px) {
  .project-intro h2 {
    font-size: 2.5rem;
  }
}

/* Services Section */
.services-section {
  padding: var(--space-xxl) 0;
}

.services-section .section-title {
  font-size: var(--font-size-xxl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xl);
  position: relative;
}

.services-section .section-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--secondary);
}

.services-section .service-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: var(--space-xl);
  transition: all 0.3s ease;
  height: 100%;
}

.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.services-section .service-img {
  height: 200px;
  object-fit: cover;
}

.services-section .service-body {
  padding: var(--space-lg);
}

.services-section .service-title {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-md);
}

.services-section .service-btn {
  background-color: var(--secondary);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-md);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.services-section .service-btn:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

/* Feature List */
.services-section .feature-list {
  list-style: none;
  padding: 0;
}

.services-section .feature-item {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
}

.services-section .feature-icon {
  color: var(--secondary);
  margin-right: var(--space-sm);
}

/* Events Logistic Crew Section CSS */
.logistic-crew-section {
  background-color: var(--clr-light);
  position: relative;
  overflow: hidden;
}

.logistic-crew-section .section-title {
  font-size: 2rem;
  font-weight: 400;
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  position: relative;
}

.logistic-crew-section .section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
  border-radius: 2px;
}

.logistic-crew-section .feature-item {
  display: flex;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--clr-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.logistic-crew-section .feature-item:hover {
  transform: translateY(-5px);
}

.logistic-crew-section .lead{
  text-align: justify;
}

.logistic-crew-section .feature-icon {
  font-size: 1.8rem;
  color: var(--clr-primary);
  margin-right: 1.5rem;
  min-width: 50px;
}

.logistic-crew-section .feature-content h3 {
  font-size: 1.3rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.logistic-crew-section .feature-content p {
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.logistic-crew-section .image-container {
  position: relative;
  padding: 5px;
}

.logistic-crew-section .main-image {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.logistic-crew-section .main-image:hover {
  transform: scale(1.03);
}

.logistic-crew-section .decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(52, 152, 219, 0.1),
    rgba(46, 204, 113, 0.1)
  );
  z-index: 1;
}

.logistic-crew-section .circle-1 {
  width: 150px;
  height: 150px;
  top: -30px;
  right: -30px;
  animation: float 6s ease-in-out infinite;
}

.logistic-crew-section .circle-2 {
  width: 100px;
  height: 100px;
  bottom: -20px;
  left: -20px;
  animation: float 4s ease-in-out infinite reverse;
}




@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .logistic-crew-section  .section-title {
    font-size: 2rem;
  }

  .logistic-crew-section   .feature-item {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
    .logistic-crew-section  .image-container {
    margin-top: 2rem;
  }

  .logistic-crew-section  .section-title::after {
    left: 5%;
    transform: translateX(-50%);
  }
}

@media (max-width: 425px) {
  .logistic-crew-section  .section-title::after {
    left: 10%;
    transform: translateX(-50%);
  }
}
@media (max-width: 375px) {
    .logistic-crew-section  .section-title::after {
      left: 12%;
    }
  }
@media (max-width: 320px) {
    .logistic-crew-section  .section-title::after {
      left: 15%;
    }
  }

/* Stage & Production Crew Section CSS */
.stage-production-section {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    position: relative;
    overflow: hidden;
}

.stage-production-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.2;
}

.stage-production-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
}

.stage-production-section .section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    line-height: 1.4;
}

.stage-production-section .section-content p {
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
    line-height: 1.7;
}

.stage-production-section .image-composition {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.stage-production-section .main-image {
    position: relative;
    width: 75%;
    border: 3px solid var(--clr-primary);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 3;
    transition: all 0.4s ease;
}

.stage-production-section .floating-image {
    position: absolute;
    width: 55%;
    border: 2px solid var(--clr-accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    z-index: 2;
}

.stage-production-section .lighting-image {
    top: 0;
    right: 0;
    animation: float-vertical 6s ease-in-out infinite;
}

.stage-production-section .equipment-image {
    bottom: 0;
    left: 0;
    animation: float-horizontal 5s ease-in-out infinite;
}

.stage-production-section .main-image:hover,
.stage-production-section .floating-image:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.stage-production-section .decoration-element {
    position: absolute;
    background: linear-gradient(135deg, var(--clr-primary-dark), var(--clr-primary));
    opacity: 0.1;
    z-index: 1;
}

.stage-production-section .element-1 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -50px;
    right: -50px;
    animation: rotate 20s linear infinite;
}

.stage-production-section .element-2 {
    width: 150px;
    height: 150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -30px;
    left: -30px;
    animation: rotate 25s linear infinite reverse;
}

.stage-production-section .btn-accent {
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
    color: var(--clr-white);
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    transition: all 0.3s ease;
}

.stage-production-section .btn-accent:hover {
    background: linear-gradient(90deg,var(--clr-primary-dark), var(--clr-primary));
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.3);
}

/* Animations */
@keyframes float-vertical {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

@keyframes float-horizontal {
    0% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
    100% { transform: translateX(0); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments */
@media (max-width: 1199px) {
    .stage-production-section   .section-title {
        font-size: 2.4rem;
    }
    .stage-production-section    .section-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 991px) {
    .stage-production-section    .image-composition {
        min-height: 350px;
        margin-bottom: 3rem;
    }
    .stage-production-section    .main-image {
        width: 85%;
    }
    .stage-production-section    .floating-image {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .stage-production-section    .section-title {
        font-size: 2rem;
    }
    .stage-production-section    .section-subtitle {
        font-size: 1.2rem;
    }
    .stage-production-section    .image-composition {
        min-height: 300px;
        margin: 0;
    }
    .stage-production-section    .element-1 {
        width: 150px;
        height: 150px;
    }
    .stage-production-section    .element-2 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 425px) {
    .stage-production-section .section-title {
        margin-bottom: 2rem;
        
   }
}

/* Technical Crew Section CSS */
.technical-crew-section {
    background-color: var(--clr-surface);
    color: var(--clr-text-main);
}

.technical-crew-section .section-header {
    margin-bottom: 0.5rem;
}

.technical-crew-section .section-title {
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.2;
}

.technical-crew-section .title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.technical-crew-section .section-content .lead {
    font-size: 1rem;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}


.technical-crew-section .tech-feature {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(0, 188, 212, 0.05);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.technical-crew-section .tech-feature:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

.technical-crew-section .feature-icon {
    font-size: 1.5rem;
    color: var(--clr-accent);
    margin-right: 1rem;
    margin-top: 1rem;
    min-width: 40px;
}

.technical-crew-section .feature-text h3 {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.technical-crew-section .feature-text p {
    color: var(--clr-white);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.technical-crew-section .tech-visual {
    position: relative;
    padding: 20px;
}

.technical-crew-section .main-tech-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.technical-crew-section .main-tech-image:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.technical-crew-section .tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 300;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: float 4s ease-in-out infinite;
}

.technical-crew-section .tech-badge i {
    margin-right: 8px;
}

.technical-crew-section .badge-audio {
    top: 20px;
    left: 20px;
    background-color: var(--clr-primary-dark);
    color: white;
    animation-delay: 0.2s;
}

.technical-crew-section .badge-lighting {
    top: 20px;
    right: 20px;
    background-color: var(--clr-accent);
    color: var(--clr-dark);
    animation-delay: 0.4s;
}

.technical-crew-section .badge-video {
    bottom: 20px;
    right: 20px;
    background-color: var(--clr-primary);
    color: white;
    animation-delay: 0.6s;
}

.technical-crew-section .tech-grid-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    border-radius: 12px;
}

.technical-crew-section .tech-circle-decoration {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    opacity: 0.08;
    z-index: 0;
}

.technical-crew-section .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: pulse 12s ease infinite;
}

.technical-crew-section .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation: pulse 8s ease infinite reverse;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.1); opacity: 0.12; }
    100% { transform: scale(1); opacity: 0.08; }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .technical-crew-section .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .technical-crew-section .section-title {
        font-size: 2.2rem;
    }
    .technical-crew-section    .tech-visual {
        margin-top: 3rem;
    }
    .technical-crew-section    .circle-1 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767px) {
    .technical-crew-section    .section-title {
        font-size: 2rem;
    }
    .technical-crew-section    .tech-feature {
        padding: 1rem;
    }
    .technical-crew-section    .feature-icon {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
}

/* Show Crew Section CSS */
.show-crew-section {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}
.chief-crew-section .section-title,
.show-crew-section .section-header {
    margin-bottom: 0.5rem;
}
.chief-crew-section .section-title,
.show-crew-section .section-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.show-crew-section .title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-primary-dark));
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.show-crew-section .section-content .lead {
    font-size: 1rem;
    color: var(--clr-dark);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.show-crew-section .crew-roles {
    margin-bottom: 1rem;
}

.show-crew-section .role-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.8rem;
    background-color: var(--clr-light);
    border: 1px solid rgba(255, 193, 7, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.show-crew-section .role-card:hover {
    background-color: rgba(0, 0, 0, 0.2);
    transform: translateX(10px);
    border-color: rgba(0, 0, 0, 0.2);
}

.show-crew-section .role-icon {
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
}

.show-crew-section .role-details h3 {
    font-size: 1.2rem;
    color: var(--clr-primary-dark);
    margin-bottom: 0.3rem;
}

.show-crew-section .role-details p {
    color: var(--clr-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.show-crew-section .show-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    perspective: 1000px;
}

.show-crew-section .main-show-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.show-crew-section .main-show-image:hover {
    transform: scale(1.02) rotateY(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.show-crew-section .stage-element {
    position: absolute;
    background: rgba(12, 155, 199, 0.1);
    z-index: 1;
}

.show-crew-section .spotlight {
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 128, 209, 0.2) 0%, rgba(7, 197, 255, 0) 70%);
    animation: pulse-light 4s ease infinite;
}

.show-crew-section .curtain-left, .show-crew-section .curtain-right {
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(90deg, rgba(179,0,0,0.2), transparent);
}

.show-crew-section .curtain-left {
    left: 0;
    border-radius: 12px 0 0 12px;
}

.show-crew-section .curtain-right {
    right: 0;
    border-radius: 0 12px 12px 0;
}

.show-crew-section .badge-performance {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    background-color: var(--clr-primary);
    color: white;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: float 4s ease-in-out infinite;
}

.show-crew-section .badge-performance i {
    margin-right: 8px;
}

.show-crew-section .show-decoration {
    position: absolute;
    background: rgba(17, 152, 206, 0.13);
    z-index: 0;
}

.show-crew-section .element-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: rotate 25s linear infinite;
}

.show-crew-section .element-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: rotate 30s linear infinite reverse;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes pulse-light {
    0% { opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { opacity: 0.2; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .show-crew-section    .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .show-crew-section    .section-title {
        font-size: 2.2rem;
    }
    .show-crew-section    .show-visual {
        min-height: 350px;
        margin-bottom: 3rem;
    }
    .show-crew-section    .element-1 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .show-crew-section    .section-title {
        font-size: 2rem;
    }
    .show-crew-section    .role-card {
        padding: 1rem;
    }
    .show-crew-section    .role-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
    .show-crew-section .show-visual{
        margin: 0;
    }
}

@media (max-width: 425px) {
    .show-crew-section .show-visual {
        min-height: 280px;
    }
    
}

@media (max-width: 375px) {
    .show-crew-section .show-visual {
        min-height: 250px;
    }
}
@media (max-width: 320px) {
    .show-crew-section .show-visual {
        min-height: 200px;
    }
}

/* Chief Crew Section CSS */
.chief-crew-section {
    background-color: var(--clr-surface);
    color: var(--clr-text-main);
    overflow: hidden;
}

.chief-crew-section .title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin-bottom: 1rem;
}

.chief-crew-section .lead-text {
    font-size: 1rem;
    color: var(--clr-text-main);
    margin-bottom: 0.7rem;
    line-height: 1.3;
    font-weight: 300;
    text-align: justify;
}

.chief-crew-section .leadership-visual {
    position: relative;
    padding: 10px;
}

.chief-crew-section .executive-image {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 188, 212, 0.3);
    transition: all 0.4s ease;
}

.chief-crew-section .executive-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.chief-crew-section .leadership-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--clr-text-main);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--clr-dark);
    font-weight: 300;
    font-size: 0.9rem;
    z-index: 3;
    display: flex;
    align-items: center;
    animation: float 5s ease-in-out infinite;
}

.chief-crew-section .leadership-badge i {
    margin-right: 8px;
    color: var(--clr-primary);
}

.chief-crew-section .decorative-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--clr-primary), transparent);
    opacity: 0.2;
    z-index: 1;
}

.chief-crew-section .line-1 {
    width: 150px;
    height: 2px;
    top: 50px;
    left: -50px;
    transform: rotate(45deg);
    animation: slide 8s linear infinite;
}

.chief-crew-section .line-2 {
    width: 100px;
    height: 2px;
    bottom: 30px;
    right: -30px;
    transform: rotate(-30deg);
    animation: slide 6s linear infinite reverse;
}

.chief-crew-section .leadership-features {
    margin-bottom: 1rem;
}

.chief-crew-section .feature-item {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(0, 188, 212, 0.03);
    border: 1px solid rgba(0, 188, 212, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.chief-crew-section .feature-item:hover {
    background-color: rgba(0, 188, 212, 0.08);
    border-color: rgba(0, 188, 212, 0.3);
    transform: translateX(10px);
}

.chief-crew-section .feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-right: 1.5rem;
    min-width: 40px;
    opacity: 0.7;
}

.chief-crew-section .feature-content h3 {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 0.3rem;
}

.chief-crew-section .feature-content p {
    color: var(--clr-text-main);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.chief-crew-section .executive-decoration {
    position: absolute;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    opacity: 0.05;
    z-index: 0;
}

.chief-crew-section .decor-1 {
    width: 400px;
    height: 400px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -150px;
    right: -150px;
    animation: rotate 25s linear infinite;
}

.chief-crew-section .decor-2 {
    width: 300px;
    height: 300px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -100px;
    left: -100px;
    animation: rotate 30s linear infinite reverse;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes slide {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .chief-crew-section    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .chief-crew-section    .section-title {
        font-size: 2.2rem;
    }
    .chief-crew-section    .leadership-visual {
        margin-bottom: 3rem;
    }
    .chief-crew-section    .decor-1 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .chief-crew-section    .section-title {
        font-size: 2rem;
    }
    .chief-crew-section    .feature-item {
        padding: 1rem;
    }
    .chief-crew-section    .feature-number {
        font-size: 1.2rem;
        margin-right: 1rem;
    }
    .chief-crew-section    .lead-text {
        font-size: 1.1rem;
    }
    .chief-crew-section .leadership-visual{
        padding: 0;
        height: fit-content;
        margin: 0;
    }
}

/* Runners Section CSS */
.runners-main-section {
    background-color: var(--clr-light);
    color: var(--clr-dark);
}

.runners-main-container {
    position: relative;
    z-index: 2;
}

.runners-main-header {
    margin-bottom: 0.5rem;
}

.runners-main-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--clr-primary-dark);
    margin-bottom: 0.5rem;
    position: relative;
}

.runners-main-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.runners-main-lead {
    font-size: 1.1rem;
    text-align: justify;
    color: var(--clr-dark);
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.runners-main-features {
    margin-bottom: 1rem;
}

.runners-main-feature-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: rgba(0, 188, 212, 0.05);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.runners-main-feature-item:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

.runners-main-feature-icon {
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-right: 1.5rem;
    min-width: 50px;
    text-align: center;
}

.runners-main-feature-text h3 {
    font-size: 1.2rem;
    color: var(--clr-primary-dark);
    margin-bottom: 0.5rem;
}

.runners-main-feature-text p {
    color: var(--clr-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.runners-main-visual {
    position: relative;
    padding: 10px;
}

.runners-main-image-container {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.runners-main-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.runners-main-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background-color: var(--clr-primary);
    color: var(--clr-white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.9rem;
    z-index: 3;
    display: flex;
    align-items: center;
    animation: runners-main-float 4s ease-in-out infinite;
}

.runners-main-badge i {
    margin-right: 8px;
}

.runners-main-decoration {
    position: absolute;
    background-color: rgba(0, 188, 212, 0.1);
    z-index: 1;
}

.runners-main-decoration.decor-1 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    animation: runners-main-pulse 6s ease infinite;
}

.runners-main-decoration.decor-2 {
    width: 100px;
    height: 100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -20px;
    right: -20px;
    animation: runners-main-pulse 4s ease infinite reverse;
}

.runners-main-bg-element {
    position: absolute;
    background-color: rgba(0, 188, 212, 0.05);
    z-index: 1;
}

.runners-main-bg-element.element-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.runners-main-bg-element.element-2 {
    width: 200px;
    height: 200px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -50px;
    right: -50px;
}

/* Animations */
@keyframes runners-main-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes runners-main-pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .runners-main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .runners-main-title {
        font-size: 2.2rem;
    }
    .runners-main-col-content {
        padding-right: 0 !important;
    }
    .runners-main-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .runners-main-title {
        font-size: 2rem;
    }
    .runners-main-feature-item {
        padding: 1rem;
    }
    .runners-main-feature-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }

    .runners-main-visual{
        margin: 0;
    }

}

/* Lighting Technicians Section CSS */
.lighting-tech-section {
    min-height: fit-content;
    overflow: hidden;
}

.lighting-tech-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/light.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.lighting-tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.7) 100%);
    z-index: 2;
}

.lighting-tech-content-container {
    z-index: 3;
}

.lighting-tech-header {
    margin-bottom: 0.5rem;
}

.lighting-tech-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.lighting-tech-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    margin-bottom: 0.5rem;
}

.lighting-tech-lead {
    font-size: 1.1rem;
    text-align: justify;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.lighting-tech-features-card {
    margin: 0rem;
}

.lighting-tech-feature {
    display: flex;
    margin: 0.5rem;
    align-items: center;
    padding: 0.5rem;
    background-color: rgba(0, 188, 212, 0.1);
    border-left: 3px solid var(--clr-primary);
    transition: all 0.3s ease;
}

.lighting-tech-feature:hover {
    background-color: rgba(0, 188, 212, 0.2);
    transform: translateX(10px);
}

.lighting-tech-icon {
    font-size: 1.8rem;
    color: var(--clr-primary-dark);
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.lighting-tech-feature-text h3 {
    font-size: 1.3rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.lighting-tech-feature-text p {
    color: var(--clr-text-main);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.lighting-tech-btn {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.lighting-tech-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 188, 212, 0.4);
}

.lighting-tech-decoration {
    position: absolute;
    background: rgba(0, 188, 212, 0.1);
    z-index: 2;
}

.lighting-tech-decoration.decor-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
    animation: lighting-tech-pulse 8s ease infinite;
}

.lighting-tech-decoration.decor-2 {
    width: 150px;
    height: 150px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -30px;
    right: -30px;
    animation: lighting-tech-pulse 6s ease infinite reverse;
}

/* Animations */
@keyframes lighting-tech-pulse {
    0% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
    100% { transform: scale(1); opacity: 0.1; }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .lighting-tech-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .lighting-tech-section {
        min-height: auto;
    }
    .lighting-tech-content {
        justify-content: center !important;
    }
    .lighting-tech-text-col {
        background-color: rgba(26, 26, 26, 0.8);
        padding: 3rem;
        border-radius: 12px;
    }
    .lighting-tech-overlay {
        background: rgba(26, 26, 26, 0.7);
    }
}

@media (max-width: 768px) {
    .lighting-tech-title {
        font-size: 2rem;
    }
    .lighting-tech-feature {
        padding: 1rem;
    }
    .lighting-tech-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
}

@media (max-width: 425px) {
.lighting-tech-text-col{
    padding: 1rem;
}
    
}

/* A/V Technicians Section CSS */
.av-tech-section {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
}

.av-tech-header {
    margin-bottom: 0.5rem;
}

.av-tech-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    position: relative;
}

.av-tech-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.av-tech-lead {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--clr-text-main);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}



.av-tech-feature {
    display: flex;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.7rem;
    background-color: rgba(0, 188, 212, 0.05);
    border-left: 3px solid var(--clr-primary);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.av-tech-feature:hover {
    background-color: rgba(0, 188, 212, 0.1);
    transform: translateX(5px);
}

.av-tech-feature-icon {
    font-size: 1.8rem;
    color: var(--clr-primary);
    margin-right: 1.5rem;
    min-width: 40px;
    text-align: center;
}

.av-tech-feature-text h3 {
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.av-tech-feature-text p {
    color: var(--clr-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.av-tech-visual {
    position: relative;
    padding: 20px;
}

.av-tech-image-container {
    position: relative;
    z-index: 2;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.av-tech-image-container:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.av-tech-badge {
    position: absolute;
    display: flex;
    align-items: center;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 300;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    animation: av-tech-float 4s ease-in-out infinite;
}

.av-tech-badge i {
    margin-right: 8px;
}

.audio-badge {
    top: 30px;
    left: 30px;
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    animation-delay: 0.2s;
}

.video-badge {
    bottom: 30px;
    right: 30px;
    background-color: var(--clr-primary-dark);
    color: var(--clr-white);
    animation-delay: 0.4s;
}

.av-tech-wave-decoration {
    position: absolute;
    background: rgba(0, 188, 212, 0.1);
    z-index: 1;
}

.av-tech-section .wave-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 60%;
    animation: av-tech-wave 8s linear infinite;
}

.av-tech-section .wave-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: -30px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: av-tech-wave 6s linear infinite reverse;
}

.av-tech-bg-circle {
    position: absolute;
    background: rgba(0, 188, 212, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.av-tech-section .circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.av-tech-section .circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: -50px;
}

/* Animations */
@keyframes av-tech-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

@keyframes av-tech-wave {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .av-tech-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .av-tech-title {
        font-size: 2.2rem;
    }
    .av-tech-content-col {
        padding-right: 0 !important;
    }
    .av-tech-visual {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .av-tech-title {
        font-size: 2rem;
    }
    .av-tech-feature {
        padding: 1rem;
    }
    .av-tech-feature-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
}

/* Electricians & Painters Section CSS */
.electrician-painter-section {
    background-color: var(--clr-white);
    color: var(--clr-dark);
}


.ep-title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.ep-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
    border-radius: 2px;
    margin: 0.5rem auto;
}

.ep-subtitle {
    font-size: 1.3rem;
    color: var(--clr-dark);
    max-width: 700px;
    margin: 0 auto;
}

.ep-card {
    background-color: var(--clr-light);
    padding: 1rem;
    border-radius: 12px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ep-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.electrician-card {
    border-top: 4px solid var(--clr-primary);
}

.painter-card {
    border-top: 4px solid var(--clr-primary-dark);
}

.ep-card-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.electrician-icon {
    color: var(--clr-primary);
}

.painter-icon {
    color: var(--clr-primary-dark);
}

.ep-card-title {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.ep-card-title:last-child{
    color: var(--clr-primary-dark);
}

.ep-card-text {
    color: var(--clr-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ep-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: var(--clr-dark);
}

.ep-feature-item i {
    margin-right: 10px;
    color: var(--clr-primary);
}

.painter-card .ep-feature-item i {
    color: var(--clr-primary-dark);
}

.ep-image-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.ep-image-container:hover {
    transform: scale(1.03);
}

.ep-detail-card {
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 193, 7, 0.1));
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(0, 188, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.ep-detail-icon {
    font-size: 2rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.ep-detail-title {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.ep-detail-text {
    color: var(--clr-dark);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}


.ep-decoration {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.bolt-decor {
    width: 150px;
    height: 150px;
    top: 50px;
    left: -50px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%2300bcd4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2v11h3v9l7-12h-4l4-8z'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: ep-float 6s ease-in-out infinite;
}

.paint-decor {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: -50px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='%23ffc107' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 4v3h-2V4h-2v3h-2V4h-2v3h-2V4H8v3H6V4H4v16h16V4z'/%3E%3C/svg%3E") center/contain no-repeat;
    animation: ep-float 5s ease-in-out infinite reverse;
}

@keyframes ep-float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .ep-title {
        font-size: 2.4rem;
    }
    .ep-electrician-col {
        padding-right: 0 !important;
    }
    .ep-painter-col {
        padding-left: 0 !important;
    }
}

@media (max-width: 767px) {
    .ep-title {
        font-size: 2rem;
    }
    .ep-card {
        padding: 1.5rem;
    }
    .ep-card-icon {
        font-size: 2rem;
    }
}

/* WhatsApp Floating Button CSS */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  transition: all 0.3s ease;
}

.whatsapp-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.whatsapp-icon {
  font-size: 30px;
  transition: all 0.3s ease;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
}

.whatsapp-link:hover {
  transform: scale(1.1);
}

.whatsapp-link:hover .whatsapp-icon {
  transform: rotate(15deg);
}

.whatsapp-link:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  right: 80px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-float {
      bottom: 20px;
      right: 20px;
  }
  
  .whatsapp-link {
      width: 50px;
      height: 50px;
  }
  
  .whatsapp-icon {
      font-size: 25px;
  }
  
  .whatsapp-tooltip {
      font-size: 12px;
      padding: 6px 12px;
  }
}

/* Side Navigation CSS */
.side-navbar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 280px;
  height: 100vh;
  background-color: var(--clr-surface);
  color: var(--clr-text-main);
  z-index: 1000;
  transition: all 0.4s ease;
  box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}

.side-navbar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.side-navbar.active {
  left: 0;
}

.side-navbar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.side-navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.side-navbar-header h3 {
  margin: 0;
  color: var(--clr-primary);
}

.side-navbar-close {
  background: none;
  border: none;
  color: var(--clr-text-main);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.side-navbar-close:hover {
  color: var(--clr-primary);
  transform: rotate(90deg);
}

.side-navbar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side-navbar-links li a {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: var(--clr-text-main);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.side-navbar-links li a:hover,
.side-navbar-links li a.active {
  background-color: rgba(0, 188, 212, 0.1);
  border-left: 3px solid var(--clr-primary);
  color: var(--clr-primary);
}

.side-navbar-links li a i {
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.side-navbar-toggle {
  display: none ;
  position: fixed;
  left: 20px;
  top: 20px;
  background-color: var(--clr-primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 10%;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.side-navbar-toggle:hover {
  background-color: var(--clr-primary-dark);
  transform: scale(1.1);
}

/* Show toggle button on medium screens and up */
@media (max-width: 768px) {
  .side-navbar-toggle {
      display: flex ;
      align-items: center;
      justify-content: center;
  }
}

/* Sidebar Scroll Styling */
.side-navbar {
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: var(--clr-primary) var(--clr-surface); /* For Firefox */
}

.side-navbar::-webkit-scrollbar {
  width: 8px; /* Scrollbar width */
}

.side-navbar::-webkit-scrollbar-track {
  background: var(--clr-surface); /* Track color */
  border-radius: 10px;
  margin: 10px 0;
}

.side-navbar::-webkit-scrollbar-thumb {
  background: var(--clr-primary); /* Thumb color */
  border-radius: 10px;
  border: 2px solid var(--clr-surface); /* Creates padding effect */
}

.side-navbar::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary-dark); /* Hover state */
  transform: scale(1.1);
}

/* Smooth scrolling behavior */
.side-navbar-links {
  scroll-behavior: smooth;
}

/* Animated hover effect for scrollbar */
@keyframes scrollbarPulse {
  0% { opacity: 0.7; }
  50% { opacity: 1; }
  100% { opacity: 0.7; }
}

.side-navbar:hover::-webkit-scrollbar-thumb {
  animation: scrollbarPulse 2s infinite;
}
/* Custom scrollbar arrows (for WebKit browsers) */
.side-navbar::-webkit-scrollbar-button:single-button {
  display: block;
  height: 10px;
  width: 8px;
  background-color: var(--clr-surface);
  background-position: center;
  background-repeat: no-repeat;
}

.side-navbar::-webkit-scrollbar-button:single-button:vertical:decrement {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%2300bcd4' d='M4 0L0 4l1.5 1.5L4 3l2.5 2.5L8 4z'/%3E%3C/svg%3E");
}

.side-navbar::-webkit-scrollbar-button:single-button:vertical:increment {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5' viewBox='0 0 8 5'%3E%3Cpath fill='%2300bcd4' d='M4 5l4-4H0l4 4z'/%3E%3C/svg%3E");
}