/* === Global Styles === */
    :root {
--primary: #FF9E0B;
  --primary-dark: #E68A00;
  --secondary: #1A1A1D;
  --light: #FFFFFF;
  --light-gray: #FAFBFD;  /* <-- LIGHTER BACKGROUND COLOR UPDATED */
  --text: #4A5568;
  --text-light: #718096;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
    }

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--light-gray);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}


h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
}

h1 {
  font-size: 3rem;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--gray-color);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title h2 {
  display: inline-block;
  background: linear-gradient(90deg, var(--secondary), var(--primary), var(--secondary));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

.section-title h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 15px rgba(240, 162, 2, 0.3);
  position: relative;
  overflow: hidden;
}



.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 162, 2, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}


#auditShowFormBtn {
	font-size: 18px;
	text-transform: uppercase;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary-color);
}

.mb-0 {
  margin-bottom: 0;
}

   /* === Ultra Premium Header with Gradient === */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
         background: linear-gradient(135deg, rgb(240 162 2 / 0%) 0%, rgb(240 162 2 / 11%) 100%);
      box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
      z-index: 1000;
      padding: 1.2rem 0;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      
    }

    .logo {
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--dark-color);
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: var(--transition);
      position: relative;
      z-index: 1001;
      text-decoration: none !important;
    }

    .logo span {
      color: var(--primary-dark);
      transition: var(--transition);
    }

    /* === Ultra Premium Menu Styling === */
    .nav-links {
      display: flex;
      gap: 5px;
      align-items: center;
      list-style: none;
      position: relative;
    }

    /* Navigation links - Ultra Premium Animation */
    .nav-links li {
      position: relative;
      padding: 0.5rem 0;
    }

    .nav-links a {
      color: var(--dark-color);
      text-decoration: none !important;
      font-weight: 600;
      font-size: 1.05rem;
      text-transform: uppercase;
      letter-spacing: 0.08rem;
      padding: 0.5rem 1rem;
      position: relative;
      transition: var(--transition);
      display: inline-block;
    }

    /* Hover Animation - 3D Effect */
    .nav-links a::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(255, 255, 255, 0.3);
      border-radius: 50px;
      top: 0;
      left: 0;
      transform: scale(0.9);
      opacity: 0;
      transition: var(--transition);
      z-index: -1;
    }

    .nav-links a:hover::before {
      transform: scale(1.1);
      opacity: 1;
    }

    .nav-links a:hover {
      transform: translateY(-3px);
      color: var(--primary-dark);
    }

    .nav-links a.active {
      color: var(--primary-dark);
      position: relative;
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      width: 6px;
      height: 6px;
      background: var(--primary-dark);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(240, 162, 2, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(240, 162, 2, 0); }
      100% { box-shadow: 0 0 0 0 rgba(240, 162, 2, 0); }
    }

    /* CTA Button - Premium Animation */
    .nav-cta .btn {
      background-color: var(--primary-dark);
      color: var(--light-color);
      padding: 0.85rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      text-decoration: none !important;
      display: inline-block;
      border: none;
      cursor: pointer;
    }

    .nav-cta .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: all 0.8s ease;
    }

    .nav-cta .btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
      background-color: var(--primary-color);
    }

    .nav-cta .btn:hover::before {
      left: 100%;
    }

    /* Hamburger Menu - Premium Animation */
    .hamburger {
      display: none;
      cursor: pointer;
      width: 32px;
      height: 25px;
      position: relative;
      z-index: 1001;
      transition: var(--transition);
    }

    .hamburger span {
      display: block;
      position: absolute;
      height: 3px;
      width: 100%;
      background: var(--primary-dark);
      border-radius: 3px;
      opacity: 1;
      left: 0;
      transform: rotate(0deg);
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .hamburger span:nth-child(1) {
      top: 0;
      transform-origin: left center;
    }

    .hamburger span:nth-child(2) {
      top: 11px;
      transform-origin: left center;
    }

    .hamburger span:nth-child(3) {
      top: 22px;
      transform-origin: left center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      top: -1px;
      left: 4px;
    }

    .hamburger.active span:nth-child(2) {
      width: 0%;
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 22px;
      left: 4px;
    }

    /* === Mobile Navigation Styles === */
    @media (max-width: 992px) {
      .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(240, 162, 2, 0.1) 0%, rgba(240, 162, 2, 0.35) 100%);
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        padding: 2rem;
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.25);
        transition: all 0.8s cubic-bezier(0.86, 0, 0.07, 1);
        z-index: 999;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
      }
      .hero-content{
        justify-content: center;
        gap: 1px;
      }

      .nav-links.active {
        left: 0;
 
        border-radius: 10px;
        border-right: 6px solid #f28e0d;
      }

      .nav-links li {
        opacity: 0;
        transform: translateX(-40px);
        transition: all 0.5s ease;
      }

      .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
      }
      .description{
        text-align: center;
      }

      .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
      .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
      .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
      .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
      .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }
      .nav-links.active li:nth-child(6) { transition-delay: 0.7s; }
      .nav-links.active li:nth-child(7) { transition-delay: 0.8s; }

      .hamburger {
        display: block;
      }

      .nav-cta {
        margin-left: 0;
        margin-top: 2rem;
      }

      .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
        color: var(--dark-color);
      }
      
      .nav-links a:hover {
        color: var(--primary-dark);
      }
    }

    /* Scroll effect on menu */
    header.scrolled {
      padding: 0.8rem 0;
         background: linear-gradient(135deg, rgb(240 162 2 / 9%) 0%, rgb(240 162 2 / 20%) 100%);
      box-shadow: 0 5px 35px rgba(0, 0, 0, 0.2);
    }

    header.scrolled .logo {
      transform: scale(0.95);
    }  




/* === Modern Hero Section === */
/* === Hero Section Color Adjustments === */

.hero-section {
  --primary-color: #f0a202;
  --primary-dark: #d18d00;
  --secondary-color: #191919;
  --light-color: #f8f9fa;
  --dark-color: #121212;
  --gray-color: #6c757d;
  --light-gray: #e9ecef;
  --success-color: #28a745;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
  --section-padding: 8rem 0;
}

.hero-section {

  color: var(--secondary-color);
  /* Ensure text is visible in the hero section */
}

.hero-text h1,
.hero-text p {
  color: var(--dark-color);
  /* Set a dark color for text */
}

.hero-text .role span {
  color: var(--primary-color);
}

 

.hero-btns .btn:hover {
  background-color: var(--primary-dark);
}

/* === Modern Hero Section Text Styles === */
.hero-section {
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;
  padding: 0 1.5rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(240, 162, 2, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1 1 450px;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.hero-text .subtitle {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  padding-left: 1.5rem;
}

.hero-text .subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background-color: var(--primary-color);
}

.hero-text h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.1;
  color: var(--dark-color);
}

.hero-text .role {
  font-size: clamp(1.25rem, 2vw, 2rem);
  color: var(--gray-color);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.hero-text .role span {
  color: var(--primary-color);
  position: relative;
}

.hero-text .role span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.hero-text .role:hover span::after {
  transform: scaleX(1);
}

.hero-text .description {
  font-size: 1.15rem;
  color: var(--secondary-color);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-btns {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-btns .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--dark-color);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 15px rgba(240, 162, 2, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-btns .btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 162, 2, 0.4);
}

.hero-btns .btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.hero-btns .btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}
#openForm {
	font-size: 100%;
}

/* Modern Hero Image Container with matching glow */
.hero-image {
  position: relative;
  flex: 0 0 380px;
  width: 380px;
  aspect-ratio: 1 / 1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  cursor: pointer;
  margin-left: auto;
  z-index: 2;
  animation: morph 8s ease-in-out infinite, fadeIn 0.8s ease-out;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(240, 162, 2, 0.08) 0%, rgba(240, 162, 2, 0.25) 100%);
  filter: brightness(0.9) contrast(1.1) saturate(1.3);
}

@keyframes morph {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

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

/* Glowing animated ring around image */
.hero-image::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  border-radius: inherit;
  background:
    conic-gradient(from 0deg,
      rgba(240, 162, 2, 0.7) 20%,
      rgba(240, 162, 2, 0.9) 50%,
      rgba(209, 141, 0, 0.7) 70%,
      rgba(240, 162, 2, 0.7) 100%);
  filter: drop-shadow(0 0 10px rgba(240, 162, 2, 0.3));
  animation: ringGlow 3.5s linear infinite;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

/* Glowing light behind the ring */
.hero-image::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  border-radius: inherit;
  background: rgba(240, 162, 2, 0.3);
  filter: blur(30px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hero-image:hover::after {
  opacity: 0.85;
  filter: blur(40px);
}

/* Create a smaller white ring inside */
.hero-image .inner-ring {
  position: absolute;
  top: 6px;
  left: 6px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  border-radius: inherit;
  background: white;
  z-index: 2;
  pointer-events: none;
}

/* Profile image with radial glow behind transparent parts */
.hero-image img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 3;
  background: rgb(240 162 2 / 5%);
  box-shadow: 0 4px 12px rgba(240, 162, 2, 0.3);
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.03);
}

/* Floating dots decoration */
.floating-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.floating-dots .dot {
  position: absolute;
  background-color: rgba(240, 162, 2, 0.15);
  border-radius: 50%;
  animation: float-dot 15s infinite linear;
}

@keyframes float-dot {
  0% {
    transform: translateY(0) translateX(0);
  }

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

  100% {
    transform: translateY(0) translateX(0);
  }
}

.floating-dots .dot:nth-child(1) {
  width: 10px;
  height: 10px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-dots .dot:nth-child(2) {
  width: 8px;
  height: 8px;
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.floating-dots .dot:nth-child(3) {
  width: 6px;
  height: 6px;
  top: 80%;
  left: 30%;
  animation-delay: 4s;
}

.floating-dots .dot:nth-child(4) {
  width: 12px;
  height: 12px;
  top: 30%;
  left: 70%;
  animation-delay: 6s;
}


/* === Ultra Modern Services Grid === */
/* === Services Section Scoped Variables === */
.services-section {
  --primary: #FF9E0B;
  --primary-dark: #E68A00;
  --secondary: #1A1A1D;
  --light: #FFFFFF;
  --light-gray: #F7FAFC;
  --text: #4A5568;
  --text-light: #718096;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Floating background elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: -1;
  animation: float-shape 15s infinite linear;
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0);
  }

  25% {
    transform: translate(20px, 20px);
  }

  50% {
    transform: translate(10px, -20px);
  }

  75% {
    transform: translate(-20px, 10px);
  }
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-dark);
  bottom: 10%;
  right: 5%;
  animation-delay: 5s;
}

/* Service Card - Glass Morphism Style */
.service-card {
  background: var(--glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Service Icon - Floating Animation */
.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
  font-size: 2.5rem;
  box-shadow: 0 10px 20px rgba(240, 162, 2, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: all 0.8s ease;
}

.service-card:hover .service-icon {
  transform: rotate(10deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(240, 162, 2, 0.4);
}

.service-card:hover .service-icon::before {
  left: 100%;
}

.service-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  color: var(--secondary);
  position: relative;
}

.service-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 3px;
}

.service-card p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text);
}

/* Service Link - Animated Arrow */
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 auto;
  position: relative;
  transition: var(--transition);
  text-decoration: none !important;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover::after {
  width: 100%;
}

.service-link i {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-link:hover i {
  transform: translateX(5px) rotate(360deg);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .service-card {
    padding: 2.5rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 6rem 0;
  }

  .section-title {
    margin-bottom: 4rem;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 2rem;
  }
}

/* === About Section === */
/* === Advanced About Section === */
.about-section {
  position: relative;
  padding: 10rem 0;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary) 0%, rgba(255, 158, 11, 0.1) 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.3;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-dark) 0%, rgba(230, 138, 0, 0.1) 70%);
  border-radius: 50%;
  z-index: 0;
  opacity: 0.2;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 4rem;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-text {
  position: relative;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 2rem;
  position: relative;
  padding-left: 1.5rem;
}

.about-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skills-container {
  position: relative;
}

.skills-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.skills-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
}

.skills-toggle {
  display: flex;
  background: #f0f0f0;
  border-radius: 30px;
  padding: 5px;
}

.toggle-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn.active {
  background: var(--primary);
  color: white;
}

.skills-content {
  display: none;
}

.skills-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

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

.skill-category {
  margin-bottom: 2rem;
}

.skill-category h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--secondary);
  display: flex;
  align-items: center;
}

.skill-category h4 i {
  margin-right: 10px;
  color: var(--primary);
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-tag {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 158, 11, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: var(--transition);
}

.skill-tag:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 158, 11, 0.4);
}

.skill-tag:hover::before {
  opacity: 1;
}

.skill-progress {
  margin-top: 3rem;
}

.progress-item {
  margin-bottom: 1.5rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.progress-bar {
  height: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 4px;
  position: relative;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

/* Floating elements */
.floating-element {
  position: absolute;
  z-index: 0;
  opacity: 0.1;
}

.floating-element.shape-1 {
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.floating-element.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .skills-container {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .about-content {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .about-text h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 5rem 0;
  }

  .about-section {
    padding: 6rem 0;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .skill-tag {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}








/* === Advanced Portfolio Section === */
.portfolio-section {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
  overflow: hidden;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 158, 11, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.portfolio-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.filter-btn {
  padding: 0.75rem 2rem;
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  color: white;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(230, 138, 0, 0.2);
}

.filter-btn.active::before,
.filter-btn:hover::before {
  opacity: 1;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
}

.portfolio-item {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  transform: translateY(30px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}

.portfolio-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
}

.portfolio-img {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.portfolio-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 1;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-info {
  padding: 2rem;
  position: relative;
}

.portfolio-info h3 {
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
  position: relative;
  display: inline-block;
}

.portfolio-info h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.portfolio-info p {
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--text);
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.portfolio-tag {
  background-color: var(--light-gray);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.portfolio-tag:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.portfolio-links {
  display: flex;
  gap: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1.5rem;
}

.portfolio-links a {
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  transition: var(--transition);
}


.portfolio-links a i {
  font-size: 1rem;
  transition: var(--transition);
}

.portfolio-links a:hover {
  color: var(--primary-dark);
}

.portfolio-links a:hover i {
  transform: translateX(3px);
}

/* Floating decorative elements */
.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.floating-shape.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.floating-shape.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .portfolio-filter {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
  }

  .portfolio-img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 5rem 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-info {
    padding: 1.5rem;
  }
}






/* === Advanced Process Section === */
.process-section {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 158, 11, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.process-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--primary-dark));
  z-index: 1;
  border-radius: 4px;
}

.process-step {
  display: flex;
  position: relative;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-step:nth-child(odd) {
  justify-content: flex-start;
  padding-right: calc(50% + 2rem);
}

.process-step:nth-child(even) {
  justify-content: flex-end;
  padding-left: calc(50% + 2rem);
}

.step-content {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--box-shadow);
  width: 100%;
  max-width: 500px;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover .step-content {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(230, 138, 0, 0.3);
  z-index: 3;
}

.process-step:nth-child(odd) .step-number {
  right: -25px;
  left: auto;
}

.process-step:nth-child(even) .step-number {
  left: -25px;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.step-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.step-content p {
  color: var(--text);
}

.step-icon {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2rem;
  color: rgba(255, 158, 11, 0.2);
}

/* Floating decorative elements */
.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.floating-shape.shape-1 {
  top: 10%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.floating-shape.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .process-steps::before {
    left: 2rem;
  }

  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    justify-content: flex-start;
    padding-left: 4rem;
    padding-right: 0;
  }

  .process-step:nth-child(odd) .step-number,
  .process-step:nth-child(even) .step-number {
    left: -25px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .step-content {
    padding: 2rem;
  }

  .step-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .process-steps::before {
    left: 1.5rem;
  }

  .process-step:nth-child(odd),
  .process-step:nth-child(even) {
    padding-left: 3rem;
  }

  .step-content h3 {
    font-size: 1.3rem;
  }
}






/* === Ultra Modern Testimonials Section === */
.testimonials-section {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
  overflow: hidden;
  perspective: 1000px;
  margin-bottom: 100px;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 158, 11, 0.05) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
  z-index: 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-carousel {
  position: relative;
  height: 500px;
  perspective: 2000px;
}

.testimonial-track {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  height: 100%;
  transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  margin: auto;
}

.testimonial-slide {
  min-width: 50%;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateX(100%) rotateY(30deg) scale(0.8);
  transform-origin: left center;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonial-slide.active {
  opacity: 1;
 transform: translateX(0) rotateY(0) scale(1);
 
}

.testimonial-slide.prev {
  transform: translateX(-70%) rotateY(-30deg) scale(0.8);
  opacity: 0.7;
  z-index: 1;
}

.testimonial-slide.next {
  transform: translateX(108%) rotateY(30deg) scale(0.8);
  opacity: 0.7;
  z-index: 1;
}

.testimonial-content {
  margin-bottom: 3rem;
  font-style: italic;
  color: var(--secondary);
  font-size: 1.3rem;
  line-height: 1.8;
  position: relative;
  padding: 0 4rem;
  max-width: 700px;
}

.testimonial-content::before,
.testimonial-content::after {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--primary);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.testimonial-content::before {
  top: -30px;
  left: 0;
}

.testimonial-content::after {
  bottom: -60px;
  right: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
}

.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 3px solid var(--primary);
  padding: 3px;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(230, 138, 0, 0.2);
}

.author-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 158, 11, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

 
.author-info h4 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.author-info p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 10rem;
  position: relative;
  z-index: 3;
}

.carousel-dots {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.test-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.test-dot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--transition);
}

.test-dot.active::before {
  opacity: 1;
}

.test-dot.active {
  transform: scale(1.2);
  border: none;
}

.carousel-btn {
  background-color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.carousel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.carousel-btn i {
  position: relative;
  z-index: 2;
}

.carousel-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.carousel-btn:hover::before {
  opacity: 1;
}

.carousel-btn:hover i {
  color: white;
}

.client-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
  margin-top: 5rem;
  opacity: 0.7;
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.client-logo {
  height: 50px;
  filter: grayscale(100%);
  transition: var(--transition);
  object-fit: contain;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* 3D Floating elements */
.floating-element {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
  transform-style: preserve-3d;
}

.floating-element.shape-1 {
  top: 20%;
  left: 5%;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.floating-element.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 100px;
  height: 100px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

.floating-element.shape-3 {
  top: 60%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--secondary);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: float 7s ease-in-out infinite 1s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .testimonial-carousel {
    height: 450px;
  }

  .testimonial-content {
    font-size: 1.2rem;
    padding: 0 3rem;
  }
}

@media (max-width: 992px) {
  .testimonial-slide {
    padding: 2.5rem;
  }

  .testimonial-content {
    font-size: 1.1rem;
    padding: 0 2rem;
  }

  .author-img {
    width: 90px;
    height: 90px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .testimonial-carousel {
    height: 500px;
  }

  .testimonial-slide {
    padding: 2rem;
  }

  .testimonial-content {
    font-size: 1rem;
    padding: 0 1.5rem;
  }

  .testimonial-content::before,
  .testimonial-content::after {
    font-size: 4rem;
  }

  .author-img {
    width: 80px;
    height: 80px;
  }

  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .client-logos {
    gap: 2rem;
  }

  .client-logo {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .testimonial-carousel {
    height: 550px;
  }

  .testimonial-slide {
    padding: 1.5rem;
  }

  .testimonial-content {
    padding: 0 1rem;
  }

  .author-img {
    width: 70px;
    height: 70px;
  }

  .carousel-controls {
    gap: 1rem;
  }

  .dot {
    width: 12px;
    height: 12px;
  }
 
}





/* === Advanced Contact Section === */
 
.contact-section {
  --primary: #FF9E0B;
  --primary-dark: #E68A00;
  --secondary: #1A1A1D;
  --light: #FFFFFF;
  --light-gray: #F7FAFC;
  --text: #4A5568;
  --text-light: #718096;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  --box-shadow-hover: 0 35px 60px -15px rgba(0, 0, 0, 0.2);
  --glass: rgba(255, 255, 255, 0.15);
  --glass-border: rgba(255, 255, 255, 0.2);
}



    /* Decorative Elements */
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      overflow: hidden;
    }

    .floating-element {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      opacity: 0.1;
      filter: blur(40px);
      z-index: -1;
    }

    .shape-1 {
      width: 350px;
      height: 350px;
      top: 10%;
      left: 10%;
      animation: float 18s ease-in-out infinite;
    }

    .shape-2 {
      width: 250px;
      height: 250px;
      bottom: 15%;
      right: 15%;
      animation: float 15s ease-in-out infinite reverse;
      animation-delay: 2s;
    }

    .shape-3 {
      width: 200px;
      height: 200px;
      top: 40%;
      right: 20%;
      animation: float 12s ease-in-out infinite;
      animation-delay: 1s;
    }

    /* Visual Design Section */
    .visual-design {
      background: linear-gradient(135deg, var(--secondary) 0%, #2d2d32 100%);
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .visual-design::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 10% 20%, rgba(255, 158, 11, 0.1) 0%, transparent 70%);
    }

    .design-content {
      position: relative;
      z-index: 2;
      color: var(--light);
    }

 .contact-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.contact-logo span {
  font-size: 2.2rem;
  font-weight: 800;
}

.contact-logo span:first-child {
  color: var(--light);
}

.contact-logo span:last-child {
  color: var(--primary);
}


    .contact-section-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .contact-section-subtitle {
      color: rgba(255, 255, 255, 0.85);
      font-size: 1.2rem;
      max-width: 500px;
      margin-bottom: 40px;
      line-height: 1.7;
    }

    .design-graphic {
      display: flex;
      justify-content: center;
      margin-top: 30px;
      perspective: 1000px;
    }

    .graphic-container {
      position: relative;
      width: 280px;
      height: 280px;
      transform-style: preserve-3d;
      animation: rotate 30s infinite linear;
    }

    .graphic-circle {
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      border: 2px solid var(--primary);
      opacity: 0.5;
      transform: rotateX(70deg);
    }

    .graphic-circle:nth-child(1) {
      transform: rotateX(70deg) rotateY(0deg);
    }

    .graphic-circle:nth-child(2) {
      transform: rotateX(70deg) rotateY(45deg);
    }

    .graphic-circle:nth-child(3) {
      transform: rotateX(70deg) rotateY(90deg);
    }

    .graphic-circle:nth-child(4) {
      transform: rotateX(70deg) rotateY(135deg);
    }

    .center-element {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background-color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      color: var(--secondary);
      animation: pulse 3s infinite;
      box-shadow: 0 0 40px rgba(255, 158, 11, 0.5);
    }

        .contact-container {
      width: 100%;
      max-width: 1200px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 700px;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--box-shadow);
      position: relative;
      z-index: 1;
      margin: auto;
    }


    /* Contact Form Section */
    .contact-form-section {
      background-color: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      padding: 60px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .contact-form-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      z-index: -1;
      border-radius: 30px;
    }

    .form-header {
      margin-bottom: 40px;
    }

    .form-header h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--secondary);
      margin-bottom: 15px;
      position: relative;
      display: inline-block;
    }

    .form-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 60px;
      height: 4px;
      background-color: var(--primary);
      border-radius: 2px;
    }

    .form-header p {
      color: var(--text-light);
      font-size: 1.1rem;
      max-width: 500px;
      line-height: 1.7;
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .form-group {
      position: relative;
    }

    .form-label {
      position: absolute;
      top: 18px;
      left: 20px;
      color: var(--text-light);
      transition: var(--transition);
      pointer-events: none;
      font-size: 1rem;
    }

    .form-control {
      width: 100%;
      padding: 25px 20px 10px;
      border: none;
      border-radius: 12px;
      background-color: rgba(255, 255, 255, 0.8);
      font-family: inherit;
      font-size: 1rem;
      transition: var(--transition);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .form-control:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 158, 11, 0.3);
      background-color: rgba(255, 255, 255, 0.95);
    }

    .form-control:focus + .form-label,
    .form-control:not(:placeholder-shown) + .form-label {
      top: 8px;
      left: 20px;
      font-size: 0.8rem;
      color: var(--primary);
    }

    textarea.form-control {
      min-height: 150px;
      resize: vertical;
      padding-top: 30px;
    }

    .submit-btn {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: var(--secondary);
      border: none;
      padding: 18px 45px;
      border-radius: 15px;
      font-family: inherit;
      font-weight: 700;
      font-size: 1.1rem;
      cursor: pointer;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      box-shadow: 0 15px 30px rgba(230, 138, 0, 0.3);
      position: relative;
      overflow: hidden;
      width: 100%;
      margin-top: 10px;
    }

    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      opacity: 0;
      transition: var(--transition);
    }

    .submit-btn:hover::before {
      opacity: 1;
    }

    .submit-btn span, .submit-btn i {
      position: relative;
      z-index: 2;
    }

    .submit-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(230, 138, 0, 0.4);
    }

    .submit-btn i {
      transition: var(--transition);
    }

    .submit-btn:hover i {
      transform: translateX(5px);
    }

    .form-message {
      padding: 15px 20px;
      border-radius: 12px;
      margin-top: 20px;
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 500;
      opacity: 0;
      transform: translateY(10px);
      transition: var(--transition);
    }

    .form-message.show {
      opacity: 1;
      transform: translateY(0);
    }

    .success {
      background-color: rgba(40, 167, 69, 0.1);
      color: #155724;
      border: 1px solid rgba(40, 167, 69, 0.2);
      opacity: 1;
    }

    .error {
      background-color: rgba(220, 53, 69, 0.1);
      color: #721c24;
      border: 1px solid rgba(220, 53, 69, 0.2);
      opacity: 1;
    }

    /* Animations */
    @keyframes float {
      0% {
        transform: translate(0, 0) rotate(0deg);
      }
      33% {
        transform: translate(20px, -20px) rotate(5deg);
      }
      66% {
        transform: translate(-20px, 20px) rotate(-5deg);
      }
      100% {
        transform: translate(0, 0) rotate(0deg);
      }
    }

    @keyframes rotate {
      0% {
        transform: rotateY(0deg);
      }
      100% {
        transform: rotateY(360deg);
      }
    }

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 158, 11, 0.4);
      }
      70% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 158, 11, 0);
      }
      100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 0 0 rgba(255, 158, 11, 0);
      }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .contact-container {
        grid-template-columns: 1fr;
        max-width: 700px;
      }
      
      .visual-design {
        padding: 40px;
      }
      
      .design-graphic {
        display: none;
      }
    }
    
    @media (max-width: 600px) {
      .contact-container {
        border-radius: 20px;
      }
      
      .visual-design,
      .contact-form-section {
        padding: 40px 30px;
      }
      
      .section-title {
        font-size: 2.5rem;
      }
      
      .form-header h2 {
        font-size: 2rem;
      }
    }
    
    @media (max-width: 480px) {
      .section-title {
        font-size: 2rem;
      }
      
      .form-header h2 {
        font-size: 1.8rem;
      }
      
      .form-header p {
        font-size: 1rem;
      }
    }

/* === CTA Section === */
#cta {
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd' opacity='0.1'%3E%3Cg fill='%23ffffff' fill-opacity='0.6'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

#cta h2 {
  color: white;
  margin-bottom: 1.5rem;
}

#cta h2::after {
  background-color: white;
}

#cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
}

.cta-btn {
  background-color: white;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
  background-color: var(--dark-color);
  color: white;
  transform: translateY(-3px);
}

.view-btn{
  background-color: #E68A00;
  color: var(--dark-color);
  
}

/* === Advanced Blog Section === */
.blog-section {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #f9f9f9 100%);
  overflow: hidden;
}

.blog-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 158, 11, 0.05) 0%, transparent 40%);
  z-index: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 2;
}

.blog-post {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.blog-post:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--box-shadow-hover);
}

.blog-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-post:hover .blog-img img {
  transform: scale(1.1);
}

.blog-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.blog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-meta i {
  color: var(--primary);
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  position: relative;
  display: inline-block;
}

.blog-content h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
}

.blog-content p {
  margin-bottom: 1.5rem;
  flex: 1;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-tag {
  background-color: var(--light-gray);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.blog-tag:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
  margin-top: auto;
}

.blog-link i {
  transition: var(--transition);
}

.blog-link:hover {
  color: var(--primary-dark);
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Floating decorative elements */
.floating-shape {
  position: absolute;
  z-index: 1;
  opacity: 0.1;
}

.floating-shape.shape-1 {
  top: 20%;
  left: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary);
  border-radius: 30px;
  transform: rotate(45deg);
  animation: float 8s ease-in-out infinite;
}

.floating-shape.shape-2 {
  bottom: 15%;
  right: 8%;
  width: 80px;
  height: 80px;
  background: var(--primary-dark);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }

  .blog-img {
    height: 200px;
  }

  .blog-content {
    padding: 1.5rem;
  }

  .blog-content h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}





 /* Footer Styles */
footer {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e1e21 100%);
  color: var(--light);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 10%, rgba(255, 158, 11, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
}
 

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-logo span {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.footer-logo span:first-child {
  color: var(--light);
}

.footer-logo span:last-child {
  color: var(--primary);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 400px;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.05rem;
  position: relative;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--light);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background-color: var(--primary);
  color: var(--secondary);
  transform: translateY(-5px);
  border-color: transparent;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}


.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
}

.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.copyright a:hover {
  color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-col:first-child {
    grid-column: span 1;
  }

  .copyright {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

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


/* === Back to Top Button === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px rgba(240, 162, 2, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}








/* === Responsive Styles === */
@media (max-width: 1200px) {
  .new-hero {
    gap: 3rem;
  }

  .about-content {
    gap: 3rem;
  }
}

@media (max-width: 992px) {
 
  .new-hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 4rem;
  }

  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
  }

  .hero-btns {
    justify-content: center;
  }



  .about-content {
    flex-direction: column;
  }

  .process-steps::before {
    left: 28px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .testimonial-slide {
    padding: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .portfolio-filter {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .testimonial-slide {
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }
}


/* === Responsive Styles === */

/* For screens <= 1200px */
@media (max-width: 1200px) {
  .new-hero {
    gap: 3rem;
  }

  .about-content {
    gap: 3rem;
  }
}

/* For screens <= 992px */
@media (max-width: 992px) {
  .new-hero {
    flex-direction: column-reverse;
    text-align: center;
    gap: 4rem;
  }
    .hero-section{
    margin-top: 100px;
  }
.hero-image {
	margin: auto;
 
}
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .trusted-logos {
    gap: 2rem;
  }

  .about-content {
    flex-direction: column;
  }

  .process-steps::before {
    left: 28px;
  }
}

/* For screens <= 768px */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }


  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: var(--transition);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 1.5rem;
  }

  .hero-text h1 {
    font-size: 2.75rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .testimonial-slide {
    padding: 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}




/* === Navigation Menu - Mobile Responsive === */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    /* Allow space for the fixed header */
    left: -100%;
    /* Hide menu off-screen by default */
    width: 100%;
    height: calc(100vh - 80px);
    /* Make the menu take full screen height */
    background-color: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:5px;
    transition: var(--transition);
  }
 
  .nav-links.active {
    left: 0;
    
  }

  .nav-links a {
    font-size: 1.25rem;
    /* Adjust font size for mobile view */
  }

  .hamburger {
    display: block;
    /* Show the hamburger menu on small screens */
    cursor: pointer;
    font-size: 2rem;
    color: var(--dark-color);
  }

  /* Adjust navigation items for mobile screens */
  .nav-links a {
    padding: 1rem 0;
    /* Add padding to each link */
  }

  .nav-cta {
    margin-top: 2rem;
    /* Give space for the hire button */
  }

  .nav-cta .btn {
    width: 100%;
    /* Make the Hire Me button full width */
  }
}

@media (max-width: 576px) {
  .nav-links a {
    font-size: 1rem;
    /* Adjust font size further on smaller screens */
  }
}





/* For screens <= 576px */
@media (max-width: 576px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 1rem;
  }

  .btn {
    width: 100%;
  }

  .portfolio-filter {
    gap: 0.75rem;
  }

  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .testimonial-slide {
    padding: 1.5rem;
  }

  .testimonial-content {
    font-size: 1rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media screen and (min-width: 601px) {
  .fLink1 {
    /* Your styles here */
   gap: 50px;
  }
}



 
  /* Modern Card Design */
        .faq-card {
            background: var(--light);
            border-radius: 24px;
            box-shadow: var(--box-shadow);
            padding: 60px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.03);
        }

        /* Header with Accent */
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            padding-bottom: 30px;
        }

        .faq-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .faq-header h1 {
            font-size: 3rem;
            margin-bottom: 15px;
            color: var(--secondary);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .faq-header p {
            color: var(--text-light);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 20px auto 0;
            line-height: 1.8;
        }

        /* Modern FAQ Grid */
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 25px;
        }

        /* Modern FAQ Item */
        .faq-item {
            background: var(--light);
            border-radius: 16px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--box-shadow);
            border: 1px solid rgba(0,0,0,0.03);
            position: relative;
        }

        .faq-item:hover {
            box-shadow: var(--box-shadow-hover);
            transform: translateY(-3px);
        }

        /* Question Styling */
        .faq-question {
            padding: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            background: var(--light);
            position: relative;
        }

        .faq-question h3 {
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--secondary);
            margin-right: 20px;
            transition: var(--transition);
        }

        .faq-item.active .faq-question h3 {
            color: var(--primary-dark);
        }

        /* Toggle Button */
        .faq-toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 158, 11, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: var(--transition);
            color: var(--primary);
            border: 1px solid rgba(255, 158, 11, 0.2);
        }

        .faq-toggle:hover {
            background: rgba(255, 158, 11, 0.15);
        }

        .faq-item.active .faq-toggle {
            background: var(--primary);
            color: white;
            transform: rotate(180deg);
        }

        /* Answer Section */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-answer-content {
            padding: 0 25px 25px 25px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .faq-item.active .faq-answer {
            max-height: 1000px;
        }

        /* List Styling */
        .faq-answer-content ul {
            padding-left: 25px;
            margin: 20px 0;
        }

        .faq-answer-content ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 30px;
        }

        .faq-answer-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
        }

 
 

        /* Badge */
        .badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--primary);
            color: white;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 4px 10px rgba(255, 158, 11, 0.3);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .faq-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .faq-card {
                padding: 40px 30px;
                border-radius: 20px;
            }
            
            .faq-header h1 {
                font-size: 2.2rem;
            }
            
            .faq-header p {
                font-size: 1.1rem;
            }
            
            .faq-question {
                padding: 20px;
            }
 
        }












     












   /* Modal Styles */
        .audit-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 10000;
            backdrop-filter: blur(5px);
        }

        .audit-modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .audit-modal-container {
            background: linear-gradient(135deg, rgba(26, 26, 29, 0.9), rgba(40, 40, 45, 0.9));
            border: 1px solid var(--primary);
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            height: 100vh;
            padding: 40px;
            box-shadow: 0 0 30px rgba(255, 158, 11, 0.3), 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transform: translateY(50px);
            opacity: 0;
            transition: var(--transition);
            position: relative;
            overflow-y: scroll;
            overflow-x: hidden;
            backdrop-filter: blur(12px);
        }

        .audit-modal-overlay.active .audit-modal-container {  
            transform: translateY(0);
            opacity: 1;
        }

        .audit-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
        }

        .audit-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
            color: var(--primary);
        }

        .audit-modal-header {
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .audit-modal-header h2 {
            color: var(--light);
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            font-weight: 700;
        }

        .audit-modal-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .audit-modal-header p {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-top: 25px;
            line-height: 1.6;
        }

        .audit-form-group {
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .audit-form-group label {
            display: block;
            text-align: left;
            color: var(--light);
            margin-bottom: 10px;
            font-weight: 500;
            font-size: 1.05rem;
        }

        .audit-form-group label span.required {
            color: var(--primary);
            margin-left: 4px;
        }

        .audit-form-control {
            width: 100%;
            padding: 16px 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(30, 30, 35, 0.6);
            border-radius: 12px;
            color: var(--light);
            font-size: 1.05rem;
            transition: var(--transition);
        }

        .audit-form-control:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(40, 40, 45, 0.7);
            box-shadow: 0 0 0 4px rgba(255, 158, 11, 0.25);
        }

        .audit-form-control::placeholder {
            color: rgba(255, 255, 255, 0.4);
            font-style: italic;
        }

        textarea.audit-form-control {
            min-height: 120px;
            resize: vertical;
        }

        .audit-submit-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--secondary);
            border: none;
            border-radius: 12px;
            font-size: 1.15rem;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 15px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .audit-submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(230, 138, 0, 0.4);
        }

        .audit-submit-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
            transform: translateX(-100%);
            transition: 0.6s;
            z-index: -1;
        }

        .audit-submit-btn:hover::after {
            transform: translateX(100%);
        }

        /* Decorative Elements */
        .audit-circle {
            position: absolute;
            border-radius: 50%;
            z-index: 0;
            animation: audit-float 8s ease-in-out infinite;
            filter: blur(1px);
        }

        .audit-circle-1 {
            width: 180px;
            height: 180px;
            background: rgba(255, 158, 11, 0.08);
            top: -60px;
            left: -60px;
            animation-delay: 0s;
        }

        .audit-circle-2 {
            width: 120px;
            height: 120px;
            background: rgba(26, 26, 29, 0.15);
            bottom: -40px;
            right: -40px;
            animation-delay: 0.5s;
        }

        .audit-circle-3 {
            width: 90px;
            height: 90px;
            background: rgba(255, 255, 255, 0.05);
            top: 30%;
            right: 15%;
            animation-delay: 1s;
        }

        .audit-circle-4 {
            width: 140px;
            height: 140px;
            background: rgba(230, 138, 0, 0.1);
            bottom: 25%;
            left: 10%;
            animation-delay: 1.5s;
        }

        @keyframes audit-float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-25px) rotate(180deg); }
            100% { transform: translateY(0) rotate(360deg); }
        }

        .audit-floating-icon {
            position: absolute;
            z-index: 1;
            opacity: 0.08;
            font-size: 5.5rem;
            animation: audit-float-icon 15s linear infinite;
        }

        .audit-icon-1 {
            top: 15%;
            left: 10%;
            color: var(--primary);
        }

        .audit-icon-2 {
            bottom: 20%;
            right: 15%;
            color: var(--light);
            animation-delay: 2s;
        }

        @keyframes audit-float-icon {
            0% { transform: translateY(0) rotate(0deg); }
            100% { transform: translateY(-120px) rotate(360deg); }
        }




















 