 :root {
      --primary: #2563eb;
      --secondary: #1e40af;
      --accent: #f59e0b;
      --light: #f8fafc;
      --dark: #1e293b;
      --success: #10b981;
      --danger: #ef4444;
      --gray: #64748b;
    }
    * {margin: 0; padding: 0; box-sizing: border-box;}
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
      color: var(--dark);
      line-height: 1.6;
      padding-bottom: 60px; /* Space for sticky contact bar */
    }

    nav {
      background: white;
      padding: 15px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    nav img { height: 70px; }
    nav ul { display: flex; list-style: none; gap: 20px; }
    nav ul li a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s;
    }
    
    nav ul li a:hover { color: var(--accent); }

    /* Burger menu styles */
    .burger-menu {
      display: none;
      flex-direction: column;
      justify-content: space-around;
      width: 30px;
      height: 25px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1000;
    }
    
    .burger-menu span {
      width: 100%;
      height: 3px;
      background-color: var(--primary);
      border-radius: 10px;
      transition: all 0.3s linear;
    }
    
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active span:nth-child(2) {
      opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 75%;
      max-width: 300px;
      height: 100%;
      background: white;
      box-shadow: -5px 0 15px rgba(0,0,0,0.1);
      z-index: 999;
      transition: right 0.3s ease-in-out;
      padding: 80px 20px 20px;
    }
    
    .mobile-nav.active {
      right: 0;
    }
    
    .mobile-nav ul {
      flex-direction: column;
      gap: 15px;
    }
    
    .mobile-nav ul li a {
      display: block;
      padding: 10px;
      border-radius: 5px;
      transition: background 0.3s;
    }
    
    .mobile-nav ul li a:hover {
      background: #f0f9ff;
    }
    
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }
    
    .overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* Smaller header */
    header {
      text-align: center;
      padding: 30px 20px;
      background: linear-gradient(to right, var(--primary), var(--secondary));
      color: white;
    }
    header h1 { font-size: 2rem; margin-bottom: 8px; }
    header p { font-size: 1.1rem; font-weight: 300; }

    .container { max-width: 1200px; margin: 0 auto; padding: 20px; }

    /* Compact Service Card */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }
    .service-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      opacity: 1;
      transform: translateY(0);
      position: relative;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    .card-header {
      padding: 15px;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .card-icon {
      font-size: 2rem;
      width: 50px;
      height: 50px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .card-icon i {
      font-size: 1.8rem;
    }
    .card-title { font-size: 1.2rem; font-weight: 600; }
    .card-body { padding: 15px; flex-grow: 1; }
    .service-tagline {
      font-style: italic;
      color: var(--secondary);
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px dashed #e2e8f0;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .features { margin-bottom: 20px; }
    .feature { display: flex; align-items: flex-start; margin-bottom: 10px; font-size: 0.9rem; }
    .feature i {
      color: var(--success);
      margin-right: 8px;
      margin-top: 3px;
      font-size: 1rem;
    }
    .price {
      background: #f1f5f9;
      padding: 10px;
      border-radius: 10px;
      font-weight: 700;
      color: var(--secondary);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1rem;
    }
    .price i {
      color: var(--accent);
    }

    /* CTA */
    .cta {
      margin-top: 20px;
      background: linear-gradient(90deg, #facc15, #f59e0b);
      padding: 15px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }
    .cta p {
      font-weight: 700;
      font-size: 1rem;
      color: #1e293b;
      margin-bottom: 10px;
    }
    .cta a {
      position: relative;
      overflow: hidden;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--success);
      color: white;
      padding: 8px 14px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      margin: 5px;
      font-size: 0.9rem;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      transition: background 0.3s ease, color 0.3s ease;
    }
    .cta a.email-btn { background: var(--primary); }
    .cta a:hover { background: var(--accent); color: var(--dark); }
    .cta a.email-btn:hover { background: var(--secondary); color: #fff; }

    /* Animate only icons */
    .cta a i {
      animation: pulseIcon 1.8s infinite ease-in-out;
    }
    @keyframes pulseIcon {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.85; }
    }

    /* Typing dots animation */
    .typing-dots {
      display: inline-flex;
      align-items: center;
      margin-left: 4px;
    }
    .typing-dots span {
      width: 4px;
      height: 4px;
      margin: 0 1px;
      background-color: white;
      border-radius: 50%;
      display: inline-block;
      animation: blink 1.4s infinite both;
    }
    .typing-dots span:nth-child(2) { animation-delay: 0.2s; }
    .typing-dots span:nth-child(3) { animation-delay: 0.4s; }
    @keyframes blink {
      0%, 80%, 100% { opacity: 0.2; transform: translateY(0); }
      40% { opacity: 1; transform: translateY(-1px); }
    }

    /* Ripple */
    .ripple {
      position: absolute;
      border-radius: 50%;
      transform: scale(0);
      animation: rippleEffect 0.6s linear;
      background-color: rgba(255, 255, 255, 0.6);
      pointer-events: none;
    }
    @keyframes rippleEffect {
      to { transform: scale(4); opacity: 0; }
    }
/***********Footer************************/
footer {
      background: var(--dark);
      color: white;
      padding: 60px 0 30px;
      margin-top: 80px;
    }
    
    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
    }
    
    .footer-column h3 {
      font-size: 1.4rem;
      margin-bottom: 25px;
      color: var(--accent);
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }
    
    .footer-column p {
      color: #cbd5e1;
      margin-bottom: 20px;
      line-height: 1.7;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.3s;
      display: flex;
      align-items: center;
    }
    
    .footer-links a i {
      margin-right: 10px;
      width: 20px;
      color: var(--accent);
    }
    
    .footer-links a:hover {
      color: var(--accent);
    }
    
    .copyright {
      text-align: center;
      padding-top: 40px;
      margin-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: #94a3b8;
      font-size: 0.9rem;
    }
   

    /* Sticky contact bar for mobile */
    .sticky-contact-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background: white;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
      z-index: 1000;
      display: flex;
      justify-content: space-around;
      padding: 12px 10px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
    }
    
    .sticky-contact-bar.visible {
      transform: translateY(0);
    }
    
    .contact-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 0.75rem;
      flex: 1;
      padding: 5px;
      transition: all 0.3s;
    }
    
    .contact-btn i {
      font-size: 1.5rem;
      margin-bottom: 5px;
      transition: transform 0.3s;
    }
    
    .contact-btn:hover i {
      transform: scale(1.1);
    }
    
    .contact-btn.whatsapp {
      color: #25D366;
    }
    
    .contact-btn.email {
      color: var(--primary);
    }
    
    .contact-btn.call {
      color: var(--success);
    }
    
    .contact-btn:hover {
      background: #f8fafc;
      border-radius: 8px;
    }

    @media (max-width: 768px) {
      nav ul { display: none; }
      .burger-menu {
        display: flex;
      }
      header h1 { font-size: 1.6rem; }
      header p { font-size: 1rem; }
      .services-grid { grid-template-columns: 1fr; }
      
      .sticky-contact-bar {
        display: flex;
      }
    }
    
    @media (min-width: 769px) {
      .mobile-nav, .overlay {
        display: none;
      }
      .sticky-contact-bar {
        display: none;
      }
    }
    
    .section-intro {
      text-align: center;
      margin-bottom: 2.5rem;
      padding: 0 1rem;
    }

    .section-intro .headline {
      font-size: 2rem;
      font-weight: 700;
      color: #007bff;
      margin-bottom: 0.5rem;
      line-height: 1.3;
    }

    .subtext {
      font-size: 0.85rem;       /* smaller font size */
      color: #666666;           /* muted/dark gray color */
      font-weight: 400;         /* normal weight */
      font-style: italic;       /* optional, for a softer tone */
      letter-spacing: 0.02em;   /* slight spacing */
      line-height: 1.3;         /* tighter line height */
      margin-top: 0.25em;       /* space above subtext */
    }
    
    /* Psychological pricing styles */
    .strike {
      text-decoration: line-through;
      color: var(--gray);
      margin-right: 5px;
    }

    .discount-badge {
      background: var(--accent);
      color: white;
      padding: 2px 8px;
      border-radius: 10px;
      font-size: 0.75rem;
      margin-left: 8px;
      font-weight: bold;
    }

    .disclaimer {
      font-size: 0.7rem;
      color: var(--gray);
      margin-top: 10px;
      font-style: italic;
    }
    
    .urgency-badge {
      position: absolute;
      top: 10px;
      right: -10px;
      background: var(--danger);
      color: white;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: bold;
      transform: rotate(5deg);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
      z-index: 10;
    }
    
    .trust-badges {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin: 20px 0;
      flex-wrap: wrap;
    }
    
    .trust-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      background: white;
      padding: 8px 15px;
      border-radius: 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      font-size: 0.85rem;
    }
    
    .trust-badge i {
      color: var(--success);
      font-size: 1.2rem;
    }
    
    .results {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      padding: 10px 15px;
      border-radius: 10px;
      text-align: center;
      margin: 20px 0;
      font-weight: 600;
    }
    
    .results i {
      margin-right: 8px;
    }
    
    .testimonial {
      background: white;
      padding: 15px;
      border-radius: 10px;
      margin: 20px 0;
      position: relative;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      font-style: italic;
      border-left: 4px solid var(--accent);
    }
    
    .testimonial::before {
      content: """;
      position: absolute;
      top: -10px;
      left: 10px;
      font-size: 4rem;
      color: rgba(0,0,0,0.05);
      font-family: serif;
    }
    
    .testimonial-author {
      text-align: right;
      font-weight: 600;
      font-style: normal;
      margin-top: 10px;
      color: var(--secondary);
    }
     .card-icon {
      width: 50px;
      height: 50px;
      background: white;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .card-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      padding: 5px;
    }
    /* Remove bullets */
    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    /* Remove underline from links */
    nav a {
      text-decoration: none;
    }

    /* Optional: make links inherit your font color */
    nav a {
      color: inherit; /* Or set a specific color like #000 */
    }
    nav ul,
    .mobile-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    nav a,
    .mobile-nav a {
      text-decoration: none;
      color: inherit;
    }
body {
      background: url("images/handshake.jpg") no-repeat center center fixed;
      background-size: cover;
    }

