    /* Video loading animation */
    .video-loading {
      position: relative;
      overflow: hidden;
    }

    .video-loading::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 40px;
      height: 40px;
      margin: -20px 0 0 -20px;
      border: 3px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      border-top-color: var(--primary-color);
      animation: spin 1s ease-in-out infinite;
      z-index: 4;
    }

    /* Video transition effect */
    #hero-video {
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    #hero-video.loaded {
      opacity: 1;
    }

    /* Static image fallback */
    .static-hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    /* Hide static image when video is loaded */
    .video-loaded .static-hero-image {
      display: none;
    }

    /* video loading */

    :root {
      --primary-color: #156064;
      /* Teal / Button Color */
      --secondary-color: #2D5A27;
      /* Dark Green / Logo Color */
      --accent-color: #8dbd71;
      /* Leaf Green */
      --text-dark: #134e4a;
      /* Heading color */
      --body-text: #374151;
      /* Body text color */
      --bg-white: #ffffff;
      --bg-light: #f3f4f6;
      --white: #ffffff;
      --black: #111827;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Theme Color Overrides for Utility Classes */
    .text-primary {
      color: var(--primary-color) !important;
    }

    .bg-primary {
      background-color: var(--primary-color) !important;
    }

    .btn-primary {
      background-color: var(--primary-color) !important;
      border-color: var(--primary-color) !important;
      color: var(--white) !important;
    }

    .btn-primary:hover {
      background-color: var(--secondary-color) !important;
      border-color: var(--secondary-color) !important;
    }

    .btn-outline-primary {
      border-color: var(--primary-color) !important;
      color: var(--primary-color) !important;
    }

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

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #f1f4f8;
    }

    ::-webkit-scrollbar-thumb {
      background: var(--secondary-color);
      border-radius: 0px;
    }

    ::-webkit-scrollbar-thumb:hover {
      background: var(--primary-color);
    }

    html {
      font-size: 14px;
      scroll-behavior: smooth;
    }

    body {
      position: relative;
      padding-top: 70px;
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
      width: 100%;
      /* -webkit-user-select: none;
      -moz-user-select: none;
      user-select: none; */
    }

    /* Global link color to prevent default blue */
    a {
      color: var(--primary-color);
      transition: var(--transition);
      text-decoration: none;
    }

    a:hover {
      color: var(--secondary-color);
    }

    /* Removed properties moved to body */

    h1 {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(1.8rem, 5vw, 3rem);
    }

    h3 {
      font-size: clamp(1.4rem, 4vw, 2rem);
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .navbar-brand {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
    }

    section {
      padding: 100px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    /* Redesigned Navbar */
    .navbar {
      background: var(--white) !important;
      box-shadow: 0 1px 15px rgba(0, 0, 0, 0.05);
      border-bottom: 1px solid #f3f4f6;
      transition: var(--transition);
      padding: 0 !important;
      backdrop-filter: blur(10px);
    }

    .navbar-brand {
      padding-top: 0;
      padding-bottom: 0;
      margin-top: 0;
      margin-bottom: 0;
    }

    .navbar-brand img {
      height: 80px;
      width: auto;
      display: block;
    }

    #navbarNavCollapse .nav-link {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      color: #374151 !important;
      margin: 0 15px;
      font-size: 1rem;
      transition: color 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    #navbarNavCollapse .nav-link:hover,
    #navbarNavCollapse .nav-link.active {
      color: var(--secondary-color) !important;
    }

    .btn-book-now {
      background-color: var(--primary-color);
      color: var(--white) !important;
      padding: 10px 24px;
      border-radius: 6px;
      /* Matching the boxy-but-clean look */
      font-weight: 600;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn-book-now:hover {
      background-color: #0d4b4e;
    }
    
    /* Dropdown Styling */
    .dropdown-menu {
      border-radius: 12px;
      padding: 10px;
      margin-top: 10px !important;
    }
    
    .dropdown-item {
      border-radius: 8px;
      padding: 10px 20px;
      font-weight: 500;
      color: var(--body-text);
      transition: var(--transition);
    }
    
    .dropdown-item:hover {
      background-color: var(--bg-light);
      color: var(--primary-color);
      transform: translateX(5px);
    }
    
    @media (min-width: 992px) {
      .dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeInDown 0.3s ease-out;
      }
    }

    /* Navbar toggler */
    .navbar-toggler {
      border: none;
      padding: 0;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    /* Redesigned Hero Section */
    /* Hero Section Styles - Premium Upgrade */
    .hero-section {
      position: relative;
      padding: 100px 0 40px;
      min-height: 90vh;
      display: flex;
      align-items: flex-start;
      background: url('../images/hero-home-section.png') no-repeat center center;
      background-size: cover;
      color: var(--white);
      overflow: hidden;
    }

    /* Cinematic Overlay */
    .hero-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: left;
    }

    /* Premium Badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      padding: 8px 16px;
      border-radius: 50px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 25px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      animation: fadeInRight 1s ease-out;
    }

    .hero-badge i {
      color: var(--accent-color);
      font-size: 1rem;
    }

    .hero-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      color: var(--text-dark);
      font-weight: 800;
      margin-bottom: 1.5rem;
      line-height: 1.1;
      font-family: 'Outfit', sans-serif;
      letter-spacing: -1px;
    }



    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--body-text);
      margin-bottom: 2.5rem;
      max-width: 500px;
      line-height: 1.6;
      font-weight: 500;
    }

    /* Trust indicators in hero */
    .hero-btn-quote {
      background-color: var(--primary-color);
      color: var(--white) !important;
      padding: 12px 30px;
      border-radius: 8px;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: var(--transition);
      font-size: 1.1rem;
    }

    .hero-btn-quote:hover {
      background-color: #0d4b4e;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(21, 96, 100, 0.2);
    }

    .hero-benefits {
      display: flex;
      gap: 25px;
      margin-top: 35px;
    }

    .benefit-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      color: var(--text-dark);
      font-size: 0.95rem;
      font-family: 'Outfit', sans-serif;
    }

    .benefit-item i {
      color: var(--secondary-color);
      font-size: 1.1rem;
    }



    /* Services & Testimonial Section Adjustments */
    .services-overview-row {
      margin-top: -10px;
      position: relative;
      z-index: 20;
    }

    .overview-card {
      background: var(--white);
      border-radius: 20px;
      padding: 25px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
      height: 100%;
      border: 1px solid #f1f5f9;
    }

    .overview-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 25px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .overview-title span {
      color: var(--secondary-color);
    }

    /* Testimonial Box */
    .testimonial-box {
      background: #f8fafc;
      border-radius: 15px;
      padding: 25px;
      margin-top: 20px;
    }

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

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

    .testimonial-text {
      font-style: italic;
      font-size: 0.95rem;
      color: var(--body-text);
      line-height: 1.5;
    }

    .stars {
      color: var(--secondary-color);
      font-size: 0.8rem;
      margin-top: 10px;
    }

    /* Side Services Grid */
    .mini-services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .mini-service-item {
      background: #f8fafc;
      padding: 15px 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 0.9rem;
      transition: var(--transition);
      border: 1px solid #e2e8f0;
    }

    .mini-service-item i {
      color: var(--secondary-color);
      font-size: 1.1rem;
    }

    .mini-service-item:hover {
      background: var(--white);
      border-color: var(--secondary-color);
      transform: translateY(-3px);
    }

    /* Features Bar - Premium Professional Look */
    .features-bar {
      background-color: #ffffff;
      background-image:
        url("https://www.transparenttextures.com/patterns/white-linen.png"),
        radial-gradient(circle at 20px 20px, rgba(21, 96, 100, 0.03) 2px, transparent 0);
      background-size: auto, 40px 40px;
      background-blend-mode: soft-light;
      padding: 15px 0;
      margin: 0;
      position: relative;
      z-index: 10;
      border-top: 1px solid rgba(21, 96, 100, 0.05);
      border-bottom: 1px solid rgba(21, 96, 100, 0.05);
      overflow: hidden;
    }

    /* Floating leaf pattern accent */
    .features-bar::before {
      content: '\f06c';
      /* FontAwesome Leaf */
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      right: -30px;
      top: -20px;
      font-size: 15rem;
      color: rgba(45, 90, 39, 0.03);
      transform: rotate(-15deg);
      pointer-events: none;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 8px 15px;
      border-right: 1px solid rgba(0, 0, 0, 0.06);
      transition: var(--transition);
      height: 100%;
    }

    .col-md-4:last-child .feature-item {
      border-right: none;
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      min-width: 70px;
      background: linear-gradient(135deg, rgba(141, 189, 113, 0.1), rgba(21, 96, 100, 0.15));
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--secondary-color);
      font-size: 1.8rem;
      transition: var(--transition);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .feature-item:hover .feature-icon {
      transform: translateY(-5px) scale(1.05);
      background: var(--primary-color);
      color: var(--white);
      box-shadow: 0 15px 30px rgba(21, 96, 100, 0.2);
    }

    .feature-text h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      margin-bottom: 0;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
      letter-spacing: -0.2px;
    }

    @media (max-width: 991px) {
      .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        padding-bottom: 25px;
        margin-bottom: 5px;
        justify-content: center;
      }

      .col-lg-3:last-child .feature-item {
        border-bottom: none;
      }
    }

    /* Conventional Checklist */
    .conventional-checklist {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 25px;
    }

    .checklist-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--body-text);
      font-weight: 500;
    }

    .checklist-item i {
      color: var(--primary-color);
      font-size: 1rem;
    }

    @media (max-width: 991px) {
      .hero-section {
        padding: 100px 0 40px;
      }

      .hero-title {
        font-size: 3rem;
      }
    }



    .hero-btn {
      background: var(--primary-color);
      border: none;
      padding: 15px 40px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 1px;
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      z-index: 1;
      animation: fadeIn 1s ease-out 0.6s both;
      color: var(--white);
    }

    .hero-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background: var(--secondary-color);
      transition: all 0.4s;
      z-index: -1;
      border-radius: 50px;
    }

    .hero-btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
    }

    .hero-btn:hover::before {
      width: 100%;
    }

    /* Enhanced About Section */
    .about-section {
      background: var(--light-blue);
      position: relative;
      overflow: hidden;
    }

    .about-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path fill="%238B4513" opacity="0.1" d="M50 0 L100 50 L50 100 L0 50 Z"></path></svg>');
      background-size: contain;
      opacity: 0.2;
      animation: rotate 30s linear infinite;
    }

    .about-content {
      position: relative;
      z-index: 2;
      padding: 3rem;
      background: white;
    }

    /* Enhanced Services Section */
    .service-card {
      transition: all 0.4s ease;
      border: none;
      border-radius: 15px;
      overflow: hidden;
      height: 100%;
      background: white;
      position: relative;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 0;
      background: var(--primary-color);
      transition: height 0.4s ease;
    }

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

    .service-card:hover {
      transform: translateY(-15px) rotateY(5deg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: clamp(2.5rem, 6vw, 3.5rem);
      color: var(--primary-color);
      margin-bottom: 25px;
      transition: all 0.4s ease;
    }

    .service-card:hover .service-icon {
      transform: scale(1.2) rotate(5deg);
      color: var(--secondary-color);
    }

    .service-image {
      height: 200px;
      margin: -25px -25px 25px -25px;
      border-radius: 15px 15px 0 0;
      overflow: hidden;
    }

    .service-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* //transition: transform 0.5s ease; */
    }

    /* .service-card:hover .service-image img {
    transform: scale(1.1);
  } */

    /* Enhanced Portfolio Section */
    .portfolio-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      margin-bottom: 30px;
      transform: translateZ(0);
    }

    .portfolio-img {
      transition: all 0.6s ease;
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(139, 69, 19, 0.9) 0%, rgba(210, 105, 30, 0.85) 100%);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      opacity: 0;
      transition: all 0.5s ease;
      padding: 30px;
      text-align: center;
      color: white;
      transform: translateY(20px);
    }

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

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

    .portfolio-image {
      height: 250px;
      background: #f8f9fa;
      border-radius: 8px;
      margin-bottom: 20px;
      overflow: hidden;
    }

    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Enhanced Testimonials Section */
    #testimonials {
      background: var(--bg-light);
      position: relative;
      overflow: hidden;
    }

    .testimonial-card {
      background: var(--white);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
      height: 100%;
      border: 1px solid rgba(0, 0, 0, 0.03);
      position: relative;
      z-index: 1;
    }

    .testimonial-card::before {
      content: '\f10d';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 4rem;
      color: rgba(0, 174, 239, 0.05);
      z-index: -1;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      border-color: var(--primary-color);
    }

    .testimonial-avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 3px solid var(--white);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .testimonial-name {
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      margin-bottom: 5px;
      color: var(--dark-blue);
    }

    .testimonial-role {
      font-size: 0.85rem;
      color: var(--secondary-color);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .testimonial-rating {
      color: var(--accent-color);
      margin-bottom: 15px;
    }

    .testimonial-text {
      font-style: italic;
      color: #555;
      line-height: 1.7;
      font-size: 0.95rem;
    }



    /* Glassmorphism Cards */
    .glass-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      transition: var(--transition);
    }

    .glass-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    /* Enhanced Contact Section */
    .contact-form .form-control {
      border-radius: 12px;
      border: 1px solid #e1e8ef;
      padding: 14px 18px;
      margin-bottom: 20px;
      font-size: 0.95rem;
      transition: var(--transition);
      background: #f8fbff;
    }

    .contact-form .form-control:focus {
      border-color: var(--primary-color);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(0, 174, 239, 0.1);
      outline: none;
    }

    .contact-btn {
      background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
      border: none;
      color: #fff;
      padding: 14px 30px;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
      width: 100%;
    }

    .contact-btn:hover {
      transform: scale(1.02);
      filter: brightness(1.1);
      box-shadow: 0 10px 20px rgba(43, 182, 115, 0.2);
    }

    /* WhatsApp Button & Chat Box */
    .whatsapp-button {
      position: fixed;
      bottom: 30px;
      left: 30px;
      width: 60px;
      height: 60px;
      background: #25d366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 30px;
      cursor: pointer;
      z-index: 1000;
      box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
      transition: var(--transition);
      animation: pulse 2s infinite;
    }

    .whatsapp-button:hover {
      transform: scale(1.1) rotate(15deg);
    }

    .chat-box {
      position: fixed;
      bottom: 100px;
      left: 30px;
      width: 320px;
      background: white;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
      padding: 24px;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(20px);
      transition: var(--transition);
    }

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

    .chat-box h4 {
      color: #075e54;
      font-size: 1.2rem;
      margin-bottom: 10px;
    }

    .chat-box p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 20px;
    }

    .chat-box .whatsapp-link {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: #25d366;
      color: white;
      text-decoration: none;
      padding: 12px;
      border-radius: 12px;
      font-weight: 600;
      transition: var(--transition);
    }

    .chat-box .whatsapp-link:hover {
      background: #128c7e;
    }

    /* --- Section Background Patterns --- */
    .pattern-bubbles {
      background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)), url('https://images.unsplash.com/photo-1525904097878-94fb15835963?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
      background-size: cover;
      background-attachment: fixed;
    }

    .pattern-eco {
      background: linear-gradient(135deg, #f0fff4 0%, #ffffff 100%);
      position: relative;
    }

    .pattern-eco::after {
      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%3Cpath d='M30 0c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm-8.8 8.8c1.55-1.55 4.07-1.55 5.62 0 1.55 1.55 1.55 4.07 0 5.62-1.55 1.55-4.07 1.55-5.62 0-1.55-1.55-1.55-4.07 0-5.62zm17.6 0c1.55-1.55 4.07-1.55 5.62 0 1.55 1.55 1.55 4.07 0 5.62-1.55 1.55-4.07 1.55-5.62 0-1.55-1.55-1.55-4.07 0-5.62zM4 26c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4zm52 0c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4z' fill='%232bb673' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    }

    .pattern-sparkle {
      background-color: #ffffff;
      background-image: radial-gradient(var(--bg-light) 2px, transparent 2px);
      background-size: 32px 32px;
    }

    .section-padding {
      padding: 100px 0;
      position: relative;
      z-index: 1;
    }

    /* Scroll-to-top */
    .scroll-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 55px;
      height: 55px;
      background: var(--primary-color);
      color: #fff;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s ease;
      z-index: 999;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .scroll-to-top.active {
      opacity: 1;
      visibility: visible;
      animation: bounceIn 0.6s;
    }

    .scroll-to-top:hover {
      background: var(--secondary-color);
      transform: translateY(-8px) rotate(5deg);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    }

    .scroll-to-top i {
      font-size: 24px;
      transition: transform 0.3s ease;
    }

    .scroll-to-top:hover i {
      transform: translateY(-3px);
    }

    /* Lazy blur */
    .lazy {
      filter: blur(15px);
      transition: all 0.7s ease;
      opacity: 0;
      transform: scale(1.05);
    }

    .lazy.loaded {
      filter: blur(0);
      opacity: 1;
      transform: scale(1);
    }

    /* Preloader */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      transition: opacity 0.6s ease;
    }

    #spinner {
      width: 60px;
      height: 60px;
      border: 5px solid rgba(139, 69, 19, 0.1);
      border-top: 5px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
    }

    /* Stats Counter */
    .counter {
      font-size: 3.5rem;
      font-weight: bold;
      color: var(--primary-color);
      transition: all 0.4s ease;
      display: inline-block;
    }

    .counter:hover {
      transform: scale(1.2) rotate(5deg);
      text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
    }

    .counter-container {
      position: relative;
      display: inline-block;
    }

    .counter-container::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 0;
      height: 3px;
      background: var(--primary-color);
      transition: width 0.5s ease;
    }

    .counter-container:hover::after {
      width: 100%;
    }

    /* Footer */
    footer {
      /* background: var(--black);  */
      background-color: rgba(var(--bs-dark-rgb)) !important;
      color: white;
      padding: 60px 0 30px;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    }

    /* Animations */
    @keyframes bounceIn {
      0% {
        transform: translateY(30px) scale(0.8);
        opacity: 0;
      }

      50% {
        transform: translateY(-10px) scale(1.05);
        opacity: 1;
      }

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

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

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

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

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

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

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-40px);
      }

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

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
      }

      70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    /* Wood texture patterns */
    .wood-pattern-1 {
      background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h100v100H0z' fill='%235D4037' fill-opacity='0.03'/%3E%3Cpath d='M0 0l100 100' stroke='%235D4037' stroke-width='1' stroke-opacity='0.05'/%3E%3Cpath d='M100 0L0 100' stroke='%235D4037' stroke-width='1' stroke-opacity='0.05'/%3E%3C/svg%3E");
    }

    .wood-pattern-2 {
      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'%3E%3Cg fill='%235D4037' fill-opacity='0.05'%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");
    }
    
    /* Inner Page Header */
    .page-header {
      padding: 120px 0 80px;
      background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
      min-height: auto;
      text-align: center;
    }
    
    /*.page-header::before {*/
    /*  content: '';*/
    /*  position: absolute;*/
    /*  top: 0;*/
    /*  left: 0;*/
    /*  width: 100%;*/
    /*  height: 100%;*/
    /*  background: url('../images/hero-home-section.png') no-repeat center center;*/
    /*  background-size: cover;*/
    /*  opacity: 0.15;*/
      /*mix-blend-mode: overlay;*/
    /*}*/
    
    
    /* Main section Copying code start*/
.page-header {
    position: relative;
    padding: 120px 0; /* increase height so image shows properly */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for text visibility */
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(57, 136, 70, 0.6); /* dark overlay */
    z-index: 1;
}

/* Keep content above overlay */
.page-header .container {
    position: relative;
    z-index: 2;
}

/* Fix ALL banners (consistent way) */
.about-banner {
    background: url('../images/banner/About.jpeg') no-repeat center center / cover;
}

.services-banner {
    background: url('../images/banner/Services.jpeg') no-repeat center center / cover;
}

.contact-banner {
    background: url('../images/banner/Contact.jpeg') no-repeat center center / cover;
}

.legal-banner {
    background: url('../images/banner/Legal.jpeg') no-repeat center center / cover;
}

.testimonials-banner {
    background: url('../images/banner/Testimonials.jpeg') no-repeat center center / cover;
}
/* Copying code end */
    
    
    
    
    .page-header .breadcrumb {
      background: transparent;
      padding: 0;
      margin-bottom: 0;
      justify-content: center;
    }
    
    .page-header .breadcrumb-item {
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }
    
    .page-header .breadcrumb-item.active {
      color: var(--white);
    }
    
    .page-header .breadcrumb-item + .breadcrumb-item::before {
      color: rgba(255, 255, 255, 0.5);
      content: "\f105";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
    }
    
    .page-header h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
      color: var(--white);
    }

    /* Legal & Policy Content */
    .legal-section {
      background: #fdfdfd;
      line-height: 1.8;
      color: var(--body-text);
    }
    
    .policy-card {
      background: #ffffff;
      padding: 50px;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
      border: 1px solid #f1f5f9;
    }
    
    .legal-section h4 {
      color: var(--primary-color);
      margin-top: 35px;
      margin-bottom: 15px;
      font-weight: 700;
      font-size: 1.4rem;
    }
    
    .legal-section p {
      margin-bottom: 20px;
    }
    
    .legal-list {
      padding-left: 20px;
      margin-bottom: 25px;
    }
    
    .legal-list li {
      margin-bottom: 12px;
      position: relative;
    }
    
    .legal-list li::before {
      content: "\f058";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      color: var(--secondary-color);
      position: absolute;
      left: -25px;
      top: 2px;
    }

    /* Responsive Adjustments */
    @media (max-width: 991px) {
      .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 150px 0 100px;
      }

      section {
        padding: 60px 0;
      }

      .counter {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 767px) {
      .hero-content {
        padding: 0 15px;
      }

      .service-card {
        padding: 1.5rem !important;
      }

      .portfolio-img {
        height: 220px;
      }

      .chat-box {
        bottom: 90px;
        left: 15px;
        width: calc(100% - 30px);
        max-width: 320px;
      }

      .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
      }

      .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
      }

      .contact-info-card {
        text-align: center;
      }

      .contact-info-card .d-flex {
        justify-content: center;
      }
    }

    @media (max-width: 575px) {
      .hero-btn {
        width: 100%;
        padding: 12px 25px;
      }

      .counter {
        font-size: 2rem;
      }

      .display-5 {
        font-size: 2.2rem;
      }
    }