  :root {
      --primary: #007503;
      --primary-dark: #005c02;
      --secondary: #2D3436;
      --accent: #FDCB6E;
      --accent-dark: #E17055;
      --neutral-bg: #F8F9FA;
      --neutral-text: #2D3748;
      --light: #ffffff;
      --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
      --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      --glass-bg: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --shadow-light: 0 8px 32px rgba(44, 46, 74, 0.15);
      --shadow-hover: 0 15px 35px rgba(31, 38, 135, 0.2);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --transition-smooth: all 0.3s ease;
  }

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

  html, body {
    overflow-x: hidden;
  }

  
  body {
      font-family: 'Poppins', sans-serif;
      color: var(--neutral-text);
      overflow-x: hidden;
      padding-top: 80px;
      background: var(--light);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
  }

  .form-control::placeholder {
      color: rgba(255, 255, 255, 0.6);
      /* Light white placeholder */
      opacity: 1;
      /* Ensure visibility */
  }

  /*   Preloader with Morphing Animation */
  #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(45deg, var(--primary), var(--accent));
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      transition: all 0.5s ease;
  }

  .spinner-container {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .morphing-spinner {
      width: 80px;
      height: 80px;
      position: relative;
  }

  .morphing-spinner::before,
  .morphing-spinner::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      animation: morph 2s infinite ease-in-out;
  }

  .morphing-spinner::before {
      background: rgba(255, 255, 255, 0.8);
      animation-delay: -1s;
  }

  .morphing-spinner::after {
      background: rgba(255, 255, 255, 0.6);
  }

  @keyframes morph {

      0%,
      100% {
          transform: scale(0) rotate(0deg);
          border-radius: 50%;
      }

      50% {
          transform: scale(1) rotate(180deg);
          border-radius: 20%;
      }
  }

  .loading-text {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      margin-top: 20px;
      animation: pulse-text 2s infinite;
  }

  @keyframes pulse-text {

      0%,
      100% {
          opacity: 0.7;
      }

      50% {
          opacity: 1;
      }
  }

  /*   Top Bar with Glassmorphism */
  .top-bar {
      background: rgba(45, 52, 54, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--light);
      padding: 8px 0;
      font-size: 0.9rem;
  }

  .top-contact a {
      color: var(--light);
      text-decoration: none;
      margin-right: 20px;
      transition: var(--transition);
      position: relative;
  }

  .top-contact a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -2px;
      left: 0;
      background: var(--accent);
      transition: width 0.3s ease;
  }

  .top-contact a:hover {
      color: var(--accent);
      transform: translateY(-2px);
  }

  .top-contact a:hover::after {
      width: 100%;
  }

  /*   Navbar with Glassmorphism */
  .navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.1);
      padding: 15px 0;
      transition: var(--transition);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .navbar.shrink {
      padding: 8px 0;
      box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  }

  .navbar-brand {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      font-size: 1.8rem;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      transition: var(--transition);
  }

  .navbar-brand:hover {
      transform: scale(1.05);
  }

  .navbar-nav .nav-link {
      color: var(--secondary);
      font-weight: 500;
      margin: 0 10px;
      transition: var(--transition);
      position: relative;
  }

  .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 3px;
      bottom: -5px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary);
      transition: width 0.3s ease;
      border-radius: 2px;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
      color: var(--primary);
      transform: translateY(-2px);
  }

  .navbar-nav .nav-link:hover::after,
  .navbar-nav .nav-link.active::after {
      width: 100%;
  }

  /*   Buttons with Gradient and Hover Effects */
/* Override Bootstrap default blue primary color with our teal/green theme */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

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

.btn-outline-primary {
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    background: transparent !important;
    position: relative;
    overflow: hidden;
}

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

.btn-outline-primary:hover {
    color: var(--light) !important;
    border-color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--primary) !important;
}

.btn-outline-primary:hover::before {
    left: 0;
}

  /* Custom btn-outline-light for pricing cards */
  .btn-outline-light {
      color: #ffffff;
      border: 2px solid #ffffff;
      padding: 10px 28px;
      font-weight: 600;
      border-radius: 50px;
      transition: var(--transition);
      background: transparent;
      position: relative;
      overflow: hidden;
  }

  .btn-outline-light::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), #ffffff);
      transition: left 0.4s ease;
      z-index: -1;
  }

  .btn-outline-light:hover {
      color: var(--primary);
      border-color: #ffffff;
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
  }

  .btn-outline-light:hover::before {
      left: 0;
  }

  /* Hero Section with Advanced Animations */
  .hero {
      background: linear-gradient(135deg,
              rgba(0, 117, 3, 0.05) 0%,
              rgba(253, 203, 110, 0.05) 50%,
              rgba(225, 112, 85, 0.05) 100%);
      padding: 50px 0;
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
  }

  img {
      transition: transform 0.3s ease-in-out;
      /* smooth effect */
  }

  img:hover {
      transform: scale(1.05);
  }

  .hero-content {
      position: relative;
      z-index: 3;
  }

  .hero h1 {
      font-size: 3.8rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--secondary), var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      line-height: 1.2;
  }

  .hero p {
      font-size: 1.3rem;
      margin-bottom: 40px;
      color: var(--neutral-text);
      opacity: 0.9;
  }

  .hero-btns .btn {
      margin-right: 20px;
      margin-bottom: 15px;
  }

  /* Floating Particles Background */
  .particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
  }

  .particle {
      position: absolute;
      background: rgba(0, 117, 3, 0.3);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
  }

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

  .particle:nth-child(2) {
      width: 15px;
      height: 15px;
      top: 50%;
      left: 80%;
      animation-delay: 2s;
  }

  .particle:nth-child(3) {
      width: 25px;
      height: 25px;
      top: 70%;
      left: 20%;
      animation-delay: 4s;
  }

  .particle:nth-child(4) {
      width: 12px;
      height: 12px;
      top: 30%;
      left: 70%;
      animation-delay: 1s;
  }

  .particle:nth-child(5) {
      width: 18px;
      height: 18px;
      top: 80%;
      left: 60%;
      animation-delay: 3s;
  }

  @keyframes float {

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

      50% {
          transform: translateY(-20px) rotate(180deg);
          opacity: 1;
      }
  }

  /*   Morphing Shapes */
  .hero-shape {
      position: absolute;
      z-index: 1;
  }

  .shape-1 {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg,
              rgba(0, 117, 3, 0.1) 0%,
              rgba(253, 203, 110, 0.1) 100%);
      top: -200px;
      right: -200px;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      animation: morph-shape 8s ease-in-out infinite;
  }

  .shape-2 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg,
              rgba(45, 52, 54, 0.05) 0%,
              rgba(0, 117, 3, 0.05) 100%);
      bottom: -150px;
      left: 10%;
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      animation: morph-shape 10s ease-in-out infinite reverse;
  }

  @keyframes morph-shape {

      0%,
      100% {
          border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
          transform: scale(1) rotate(0deg);
      }

      25% {
          border-radius: 30% 70% 60% 40% / 50% 60% 30% 40%;
          transform: scale(1.1) rotate(90deg);
      }

      50% {
          border-radius: 70% 30% 40% 60% / 40% 50% 60% 30%;
          transform: scale(0.9) rotate(180deg);
      }

      75% {
          border-radius: 40% 60% 30% 70% / 70% 40% 50% 60%;
          transform: scale(1.05) rotate(270deg);
      }
  }

  /* Sections with Scroll Animations */
  section {
      padding: 40px 0;
      position: relative;
  }

  .section-title {
      text-align: center;
      margin-bottom: 80px;
      opacity: 0;
      transform: translateY(30px);
      transition: var(--transition);
  }

  .section-title.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .section-title h2 {
      color: var(--secondary);
      position: relative;
      display: inline-block;
      padding-bottom: 15px;
      font-size: 2.5rem;
      margin-bottom: 20px;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 2px;
      animation: expand-line 1s ease-out 0.5s forwards;
  }

  @keyframes expand-line {
      from {
          width: 0;
      }

      to {
          width: 100px;
      }
  }

  /*   Service Cards with Glass Effect */
  .service-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(0, 117, 3, 0.1), transparent);
      transform: rotate(-45deg);
      transition: transform 0.6s;
  }

  .service-card:hover::before {
      transform: rotate(-45deg) translate(50%, 50%);
  }

  .service-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

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

  .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
  }

  .service-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent), var(--primary));
      opacity: 0;
      transition: opacity 0.3s;
  }

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

  .service-icon i {
      font-size: 2.2rem;
      color: white;
      position: relative;
      z-index: 2;
  }

  /*   Pricing Cards */
  .pricing-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      overflow: hidden;
      transition: var(--transition);
      margin: 0 auto 30px;
      position: relative;
      opacity: 1;
      transform: none;
  }

  .pricing-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .pricing-card.popular {
      transform: scale(1.05);
      border: 2px solid var(--accent);
      z-index: 2;
      position: relative;
  }

  .pricing-card.popular::before {
      content: 'MOST POPULAR';
      position: absolute;
      top: 20px;
      right: -30px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      padding: 5px 40px;
      font-size: 0.8rem;
      font-weight: 600;
      transform: rotate(45deg);
      z-index: 3;
  }

  .pricing-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: var(--shadow-hover);
  }

  .pricing-card.popular:hover {
      transform: scale(1.07) translateY(-15px);
  }

  .pricing-header {
      background: #ffffff;
      color: #204A44;
      padding: 40px 30px;
      text-align: center;
      position: relative;
  }

  .pricing-header::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  }

  /* Animated Statistics Counter */
  .stats-section {
      background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
      color: var(--light);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .stats-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.03)"><polygon points="1000,100 1000,0 0,100"/></svg>');
      background-size: cover;
  }

  .stat-box {
      text-align: center;
      padding: 30px 20px;
      position: relative;
  }

  .stat-number {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      background: linear-gradient(135deg, var(--accent), #ffeaa7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
  }

  /*   Testimonials with Floating Effect */
  .testimonial-card {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 40px 30px;
      margin: 20px 15px;
      position: relative;
      transition: var(--transition);
      opacity: 0;
      transform: translateY(30px);
  }

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

  .testimonial-card::before {
      content: '';
      position: absolute;
      top: -2px;
      left: -2px;
      right: -2px;
      bottom: -2px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 20px;
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s;
  }

  .testimonial-card:hover::before {
      opacity: 1;
  }

  .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  /* FAQ with Smooth Accordion Animation */
  .accordion-item {
      border: none;
      margin-bottom: 20px;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
  }

  .accordion-button {
      background: transparent;
      color: var(--secondary);
      font-weight: 600;
      padding: 25px 30px;
      border: none;
      transition: var(--transition);
  }

  .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: var(--light);
      box-shadow: none;
  }

  .accordion-button:focus {
      box-shadow: none;
  }

  .process-step {
      padding: 15px !important;
  }

  /* Contact Section with Glass Effect */
  .contact-info {
      background: linear-gradient(135deg,
              rgba(45, 52, 54, 0.95),
              rgba(0, 0, 0, 0.8));
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--light);
      padding: 50px 40px;
      border-radius: 20px;
      height: 100%;
      position: relative;
      overflow: hidden;
  }

  .contact-info::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg,
              rgba(0, 117, 3, 0.1),
              rgba(253, 203, 110, 0.1));
      opacity: 0;
      transition: opacity 0.3s;
  }

  .contact-info:hover::before {
      opacity: 1;
  }

  /*   Form Styling */
  .form-control,
  .form-select {
      border: 2px solid rgba(0, 117, 3, 0.2);
      border-radius: 15px;
      padding: 15px 20px;
      font-size: 1rem;
      transition: var(--transition);
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
  }

  .form-control:focus,
  .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.2rem rgba(0, 117, 3, 0.25);
      transform: translateY(-2px);
  }

  /* Scroll Animations */
  .fade-in-up {
      opacity: 0;
      transform: translateY(50px);
      transition: var(--transition);
  }

  .fade-in-up.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .fade-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: var(--transition);
  }

  .fade-in-left.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .fade-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: var(--transition);
  }

  .fade-in-right.animate {
      opacity: 1;
      transform: translateX(0);
  }

  /*   Scroll to Top Button */
  .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: var(--shadow-light);
  }

  .scroll-top.active {
      opacity: 1;
      visibility: visible;
  }

  .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--shadow-hover);
  }

  .about-badge {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 30px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      box-shadow: var(--shadow-light);
  }

  .feature-icon {
      width: 90px;
      height: 90px;
      background: linear-gradient(135deg, rgba(0, 117, 3, 0.1), rgba(253, 203, 110, 0.1));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      transition: var(--transition);
      box-shadow: var(--shadow-light);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .hero h1 {
          font-size: 3rem;
      }

      .pricing-card.popular {
          transform: scale(1);
          margin-top: 20px;
      }
  }

  @media (max-width: 768px) {
      body {
          padding-top: 72px;
      }

      .hero {
          padding: 80px 0;
      }

      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      section {
          padding: 80px 0;
      }
  }

  @media (max-width: 576px) {
      .hero {
          padding: 60px 0;
      }

      .hero h1 {
          font-size: 2rem;
      }

      section {
          padding: 60px 0;
      }

      .service-card,
      .pricing-card,
      .testimonial-card {
          margin: 15px 0;
      }
  }

  @media (min-width: 1200px) {

      .h4,
      h4 {
          font-size: 1.1rem;
      }
  }



  /*   Service Cards with Glass Effect */
  .service-card {
      background: rgba(255, 255, 255, 0.8);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      position: relative;
      overflow: hidden;
      opacity: 0;
      transform: translateY(30px);
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(0, 117, 3, 0.1), transparent);
      transform: rotate(-45deg);
      transition: transform 0.6s;
  }

  .service-card:hover::before {
      transform: rotate(-45deg) translate(50%, 50%);
  }

  .service-card.animate {
      opacity: 1;
      transform: translateY(0);
  }

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

  .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
  }

  .service-icon::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--accent), var(--primary));
      opacity: 0;
      transition: opacity 0.3s;
  }

  .services-detail h3 {
      text-align: center;
      margin-bottom: 20px;
  }

  .services-detail p {
      text-align: center;
      margin-bottom: 20px;
  }

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

  .service-icon i {
      font-size: 2.2rem;
      color: white;
      position: relative;
      z-index: 2;
  }

  /* Scroll Animations */
  .fade-in-up {
      opacity: 0;
      transform: translateY(50px);
      transition: var(--transition);
  }

  .fade-in-up.animate {
      opacity: 1;
      transform: translateY(0);
  }

  .fade-in-left {
      opacity: 0;
      transform: translateX(-50px);
      transition: var(--transition);
  }

  .fade-in-left.animate {
      opacity: 1;
      transform: translateX(0);
  }

  .fade-in-right {
      opacity: 0;
      transform: translateX(50px);
      transition: var(--transition);
  }

  .fade-in-right.animate {
      opacity: 1;
      transform: translateX(0);
  }

  /*   Scroll to Top Button */
  .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: var(--shadow-light);
  }

  .scroll-top.active {
      opacity: 1;
      visibility: visible;
  }

  .scroll-top:hover {
      transform: translateY(-5px) scale(1.1);
      box-shadow: var(--shadow-hover);
  }

  /* Process Steps */
  .process-step {
      text-align: center;
      position: relative;
      padding: 0 20px;
  }

  .step-number {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 auto 25px;
      position: relative;
      z-index: 2;
      box-shadow: var(--shadow-light);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .hero h1 {
          font-size: 3rem;
      }
  }

  @media (max-width: 768px) {
      body {
          padding-top: 72px;
      }

      .hero {
          padding: 80px 0;
      }

      .hero h1 {
          font-size: 2.5rem;
      }

      .hero p {
          font-size: 1.1rem;
      }

      .section-title h2 {
          font-size: 2rem;
      }

      section {
          padding: 80px 0;
      }
  }

  @media (max-width: 576px) {
      .hero {
          padding: 60px 0;
      }

      .hero h1 {
          font-size: 2rem;
      }

      section {
          padding: 60px 0;
      }

      .service-card {
          margin: 15px 0;
      }
  }

  /* Custom styles for home cleaning page */
  .cleaning-detail {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: var(--shadow-light);
      transition: var(--transition);
  }

  .cleaning-detail:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .room-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: var(--transition);
      margin-bottom: 30px;
  }

  .room-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .room-img {
      height: 250px;
      background-size: cover;
      background-position: center;
  }

  .room-content {
      padding: 25px;
      background: white;
  }

  .checklist {
      list-style: none;
      padding: 0;
  }

  .checklist li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
  }


  .space-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: var(--transition);
      margin-bottom: 30px;
      text-align: center;
      min-height: 210px;
      padding: 10px;
  }

  .space-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .space-content {
      padding: 25px;
      background: white;
  }


  .checklist li:last-child {
      border-bottom: none;
  }

  .checklist i {
      color: var(--primary);
      margin-right: 15px;
      font-size: 1.2rem;
  }

  .comparison-table {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
  }

  .comparison-table th {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      padding: 20px;
      text-align: center;
  }

  .comparison-table td {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .comparison-table tr:last-child td {
      border-bottom: none;
  }

  .comparison-table .check-cell {
      text-align: center;
      color: var(--primary);
      font-size: 1.2rem;
  }

  .area-card {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: var(--shadow-light);
      transition: var(--transition);
      margin-bottom: 30px;
  }

  .area-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }

  .area-img {
      height: 250px;
      background-size: cover;
      background-position: center;
  }

  .area-content {
      padding: 25px;
      background: white;
  }

  .checklist {
      list-style: none;
      padding: 0;
  }

  .checklist li {
      padding: 10px 0;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
  }

  .checklist li:last-child {
      border-bottom: none;
  }

  .checklist i {
      color: var(--primary);
      margin-right: 15px;
      font-size: 1.2rem;
  }

  .benefit-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 25px;
      text-align: center;
      transition: var(--transition);
      height: 100%;
      box-shadow: var(--shadow-light);
  }

  .benefit-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-hover);
  }
  .timeline {
    position: relative;
    padding-left: 3rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -3.3rem;
    top: 0.5rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary);
}
.package-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.package-header {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 30px;
    text-align: center;
}

.package-features {
    padding: 30px;
}
.process .about-badge{margin-bottom: 10px;}

 /* Pricing Table */
 .pricing-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--light);
    padding: 20px;
    font-weight: 600;
    border: none;
}

.pricing-table td {
    padding: 15px 20px;
    border: 1px solid rgba(0, 117, 3, 0.1);
    vertical-align: middle;
}

.pricing-table tbody tr:hover {
    background: rgba(0, 117, 3, 0.05);
}

/* Before/After Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 117, 3, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    flex-direction: column;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
}

/* Contact Form */
.form-control, .form-select {
    border: 2px solid rgba(0, 117, 3, 0.2);
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 3, 0.25);
    transform: translateY(-2px);
}

/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg,
            rgba(0, 117, 3, 0.05) 0%,
            rgba(253, 203, 110, 0.05) 50%,
            rgba(225, 112, 85, 0.05) 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
  
    display: flex;
    align-items: center;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Blog Cards */
.blog-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 40px;
    position: relative;
    box-shadow: var(--shadow-light);
    opacity: 0;
    transform: translateY(30px);
}

.blog-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
}

.blog-date {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
    z-index: 2;
}

.blog-card-body {
    padding: 30px;
}

.blog-card-body h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.blog-card-body h3:hover {
    color: var(--primary);
    transition: color 0.3s ease;
}

.blog-excerpt {
    color: var(--neutral-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 117, 3, 0.1);
}

.author-info {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.read-time {
    color: var(--neutral-text);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Featured Post */
.featured-post {
    background: linear-gradient(135deg,
            rgba(0, 117, 3, 0.1),
            rgba(253, 203, 110, 0.1));
    border: 2px solid rgba(0, 117, 3, 0.2);
    position: relative;
}



/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.widget-title {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 117, 3, 0.1);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.recent-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.recent-post:hover {
    transform: translateX(10px);
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    margin-right: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.recent-post-content h6:hover {
    color: var(--primary);
}

.recent-post-date {
    color: var(--neutral-text);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Categories Widget */
.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(0, 117, 3, 0.05);
    border-radius: 15px;
    margin-bottom: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.category-item:hover {
    background: rgba(0, 117, 3, 0.1);
    border-color: rgba(0, 117, 3, 0.2);
    transform: translateX(5px);
}

.category-name {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: none;
}

.category-count {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tags */
.tag {
    display: inline-block;
    background: rgba(0, 117, 3, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 25px;
    margin: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
    color: white;
}

.newsletter-widget .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 15px;
}

.newsletter-widget .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-widget .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: white;
}

/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 50px;
}

.pagination .page-link {
    border: none;
    margin: 0 5px;
    border-radius: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--secondary);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Search Bar */
.search-bar {
    position: relative;
}

.search-bar .form-control {
    border-radius: 25px;
    padding: 15px 50px 15px 20px;
    border: 2px solid rgba(0, 117, 3, 0.2);
    background: rgba(255, 255, 255, 0.9);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .blog-hero {
        padding: 60px 0;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .sidebar {
        margin-top: 40px;
        position: static;
    }

    .blog-card-body {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-card-img {
        height: 200px;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

 /* Article Header */
 .article-header {
    background: linear-gradient(135deg,
            rgba(0, 117, 3, 0.08) 0%,
            rgba(253, 203, 110, 0.08) 50%,
            rgba(225, 112, 85, 0.08) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--neutral-text);
}

.article-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.article-subtitle {
    font-size: 1.4rem;
    color: var(--neutral-text);
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.author-section {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.author-info h5 {
    margin: 0;
    color: var(--secondary);
    font-size: 1.1rem;
}

.author-info small {
    color: var(--neutral-text);
    opacity: 0.7;
}

.meta-item {
    display: flex;
    align-items: center;
    color: var(--neutral-text);
    font-weight: 500;
}

.meta-item i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 1.1rem;
}

.article-category {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* Featured Image */
.featured-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    margin-bottom: 50px;
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.featured-image:hover img {
    transform: scale(1.02);
}

/* Article Content */
.article-content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--neutral-text);
}

.article-content h2 {
    color: var(--secondary);
    margin: 40px 0 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.article-content h3 {
    color: var(--secondary);
    margin: 35px 0 20px;
    font-size: 1.4rem;
}

.article-content p {
    margin-bottom: 25px;
}

.article-content ul, 
.article-content ol {
    margin: 25px 0;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(0, 117, 3, 0.1), rgba(253, 203, 110, 0.1));
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin: 35px 0;
    position: relative;
}

.highlight-box::before {
    content: '💡';
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
}

.quote-box {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 117, 3, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-light);
}

.quote-box::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 30px;
    font-family: serif;
}

.quote-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 20px;
}

.quote-author {
    font-weight: 600;
    color: var(--primary);
}

/* Social Share */
.social-share {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    box-shadow: var(--shadow-light);
}

.social-share h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.email { background: var(--accent-dark); }

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

/* Author Bio */
.author-bio {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: var(--shadow-light);
}

.author-bio-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.author-bio-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.author-bio-text h4 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.author-bio-text p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(0, 117, 3, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.author-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Related Posts */
.related-posts {
    margin: 60px 0;
}

.related-posts h3 {
    color: var(--secondary);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.related-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    height: 100%;
}

.related-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.related-card-img {
    height: 200px;
    overflow: hidden;
}

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

.related-card:hover .related-card-img img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 25px;
}

.related-card-body h5 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-card-body h5 a {
    text-decoration: none;
    color: inherit;
}

.related-card-body h5 a:hover {
    color: var(--primary);
}

.related-card-excerpt {
    font-size: 0.95rem;
    color: var(--neutral-text);
    opacity: 0.8;
    margin-bottom: 15px;
}

.related-card-date {
    font-size: 0.9rem;
    color: var(--neutral-text);
    opacity: 0.7;
}

/* Comments Section */
.comments-section {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: var(--shadow-light);
}

.comments-section h3 {
    color: var(--secondary);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.comment-form .form-control {
    border: 2px solid rgba(0, 117, 3, 0.2);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.comment-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 117, 3, 0.25);
}

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

.comment:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.comment-author {
    font-weight: 600;
    color: var(--secondary);
    margin: 0;
}

.comment-date {
    color: var(--neutral-text);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-left: auto;
}

.comment-text {
    margin-left: 65px;
    line-height: 1.6;
}

.reply-btn {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 65px;
    display: inline-block;
    margin-top: 10px;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.widget-title {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 117, 3, 0.1);
    position: relative;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* TOC */
.toc ul {
    list-style: none;
    padding: 0;
}

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--neutral-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: block;
    padding: 8px 15px;
    border-radius: 10px;
}

.toc a:hover,
.toc a.active {
    background: rgba(0, 117, 3, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .article-header {
        padding: 40px 0;
    }

    .article-title {
        font-size: 2.2rem;
    }

    .article-subtitle {
        font-size: 1.2rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .author-bio-content {
        flex-direction: column;
        text-align: center;
    }

    .share-buttons {
        justify-content: center;
    }

    .sidebar {
        margin-top: 40px;
        position: static;
    }
}

@media (max-width: 576px) {
    .article-title {
        font-size: 1.8rem;
    }

    .featured-image img {
        height: 250px;
    }

    .article-content {
        font-size: 1.05rem;
    }

    .related-card-img {
        height: 150px;
    }
}


.main-content {
    padding: 80px 0;
}

.content-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 50px;
    box-shadow: var(--shadow-light);
    margin-bottom: 40px;
}

.terms-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-text);
}

.terms-content h2 {
    color: var(--secondary);
    margin: 40px 0 25px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.terms-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.terms-content h2:first-child {
    margin-top: 0;
}

.terms-content h3 {
    color: var(--secondary);
    margin: 30px 0 20px;
    font-size: 1.4rem;
}

.terms-content p {
    margin-bottom: 20px;
}

.terms-content ul, 
.terms-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.terms-content li {
    margin-bottom: 10px;
}

.terms-content strong {
    color: var(--secondary);
    font-weight: 600;
}

.highlight-section {
    background: linear-gradient(135deg, rgba(0, 117, 3, 0.1), rgba(253, 203, 110, 0.1));
    padding: 30px;
    border-radius: 20px;
    border-left: 5px solid var(--primary);
    margin: 30px 0;
    position: relative;
}

.highlight-section::before {
    content: '⚖️';
    font-size: 1.5rem;
    position: absolute;
    top: 20px;
    right: 25px;
}

.important-notice {
    background: rgba(225, 112, 85, 0.1);
    border-left: 5px solid var(--accent-dark);
    padding: 25px;
    border-radius: 20px;
    margin: 30px 0;
}

.important-notice::before {
    content: '⚠️';
    font-size: 1.3rem;
    margin-right: 10px;
}



.contact-info h3 {
    color: white;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 25px;
}

.contact-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.contact-item i {
    margin-right: 10px;
    color: var(--accent);
    font-size: 1.2rem;
}



.page-header {
    background: linear-gradient(135deg,
            rgba(0, 117, 3, 0.08) 0%,
            rgba(253, 203, 110, 0.08) 50%,
            rgba(225, 112, 85, 0.08) 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><pattern id="smallGrid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,212,170,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="20" fill="url(%23smallGrid)"/></svg>');
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-item.active {
    color: var(--neutral-text);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.4rem;
    color: var(--neutral-text);
    opacity: 0.8;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.5;
}
.footer {
    background: linear-gradient(135deg, var(--secondary) 0%, #1e272e 100%);
    color: var(--light);
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

/* Logo */

    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    display: inline-block;
}


    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;

.footer-title {
    color: var(--light);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.2rem;
}

/* Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links ul li {
    margin-bottom: 12px;
}
.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.05rem;
}
.footer-links ul li a:hover {
    color: var(--accent);
}

/* Newsletter */
.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}
.newsletter-input {
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px 0 0 50px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}
.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.newsletter-btn {
    border-radius: 0 50px 50px 0;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    color: #fff !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

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

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
}

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

/* Copyright */
.copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    margin-top: 80px;
}
.copyright p {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Title */
.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
}

/* Subtitle */
.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* Button */
.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: var(--primary);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
}

.faq .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.faq .section-title p {
    font-size: 1.2rem;
    color: var(--neutral-text);
}

.faq .accordion-item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    border: none;
}

.faq .accordion-button {
    font-size: 1.2rem;
    font-weight: 600;
   
}

.faq .accordion-body {
    padding: 25px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-text);
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
}

.gallery .section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.gallery .section-title p {
    font-size: 1.2rem;
    color: var(--neutral-text);
}

/* Gallery Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.gallery-overlay p {
    color: #fff;
    font-weight: 600;
    margin: 0;
}

/* Overlay Colors */
.gallery-overlay.bg-green {
    background: rgba(0, 117, 3, 0.8);
}

.gallery-overlay.bg-yellow {
    background: rgba(253, 203, 110, 0.8);
}

/* Hover Effect */
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Fade-in animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-up.delay-1 {
    animation-delay: 0.2s;
}

.fade-in-up.delay-2 {
    animation-delay: 0.4s;
}

.fade-in-up.delay-3 {
    animation-delay: 0.6s;
}

.fade-in-up.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-up.delay-5 {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* About Section */
.about-heading {
    color: var(--secondary);
    margin-bottom: 25px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text.mb-4 {
    margin-bottom: 30px;
}

/* Badge Styles */
.about-badge {
    text-align: center;
}

.badge-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.badge-title {
    color: var(--secondary);
    margin-bottom: 15px;
}

.badge-text {
    color: var(--neutral-text);
    margin: 0;
}
/* Services Section */
.services {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: 80px 0;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Service Icon */
.service-icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Title */
.service-title {
    color: var(--secondary);
    margin-bottom: 20px;
    font-weight: 600;
}

/* Text */
.service-text {
    color: var(--neutral-text);
    line-height: 1.7;
}
.footer-logo img {
    width: 120px;
    height: 95px;
    transition: var(--transition);
}

.footer-logo img:hover {
    transform: scale(1.1);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.social-link::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: left 0.5s;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.social-link:hover::before {
    left: 100%;
}
