:root {
            --mint-primary: #00b09b;
            --mint-secondary: #96c93d;
            --mint-gradient: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
            --dark-bg: #1a1a1a;
            --light-text: #f8f9fa;
        }

        body {
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }
        
        @media (max-width:480px){ .bg-white {
                    top: 56px;
                }}
        
        
        a {
                color: #29b909;
                text-decoration: underline;
            }
        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .nav-link {
            font-weight: 500;
            color: #333 !important;
            transition: 0.3s;
        }

        .nav-link:hover {
            color: var(--mint-primary) !important;
        }

        /* Hero Section */
        .hero-section {
            padding: 160px 0 100px;
            background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), 
                        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&q=80&w=2426') center/cover;
        }

        .btn-mint {
            background: var(--mint-gradient);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-mint:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 176, 155, 0.3);
            color: white;
        }

        /* Services Cards */
        .service-card {
            border: none;
            border-radius: 20px;
            padding: 40px;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.4s;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
            background: var(--mint-gradient);
            color: white;
        }

        .service-card .icon-box {
            width: 60px;
            height: 60px;
            background: rgba(0, 176, 155, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;
            font-size: 1.5rem;
            color: var(--mint-primary);
            margin-bottom: 20px;
            transition: 0.3s;
        }

        .service-card:hover .icon-box {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        /* Why Choose Us Section */
        .why-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .why-icon {
            color: var(--mint-primary);
            font-size: 1.8rem;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: #ccc;
            padding: 80px 0 20px;
        }

        footer h5 {
            color: white;
            margin-bottom: 25px;
        }

        .social-icons a {
            font-size: 1.2rem;
            color: white;
            margin-right: 15px;
            transition: 0.3s;
        }

        .social-icons a:hover {
            color: var(--mint-secondary);
        }
        
    
    /* Default: hide mobile-only element on larger screens */
  .mobile-phone {
    display: none;
  }

  /* Mobile styles */
  @media (max-width: 768px) {
    .mobile-phone {
      display: flex;
      position: fixed;
      top: 0px;
      left: 0;
      right: 0;
      height: 56px;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 16px;
      background: linear-gradient(90deg, #313e31, #08dda4);
      color: white;
      font-weight: 800;
      z-index: 9;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      -webkit-backdrop-filter: blur(6px);
      backdrop-filter: blur(6px);
      /* if you want safe-area for iPhones with notch */
      padding-top: env(safe-area-inset-top);
    }

    .mobile-phone a.phone-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      background: rgba(255,255,255,0.12);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 23px;
    }

    /* body content should not hide under fixed header */
    body { padding-top: 56px; }
  }
  
  /* Hide by default */
  .mobile-callbar {
    display: none;
  }

  /* Show and style on mobile only */
  @media (max-width: 768px) {
    .mobile-callbar {
      display: flex;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      height: 60px;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #313e31, #08dda4);
      color: #fff;
      font-weight: 800;
      z-index: 9999;
      box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
      padding: 0 16px;
      /*padding-bottom: calc(env(safe-area-inset-bottom) + 10px);*/
      text-align: center;
    }

    .mobile-callbar span.label {
      margin-right: 8px;
      font-weight: 700;
    }

    .mobile-callbar a.call-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      color: #fff;
      background: rgba(255,255,255,0.15);
      padding: 8px 14px;
      border-radius: 10px;
      font-size: 23px;
    }

  }
  
        
        
