  :root {
      --primary-color: #4f46e5;
      --primary-gradient: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
      --accent-color: #0ea5e9;
      --accent-gradient: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
      --text-main: #0f172a;
      --text-muted: #475569;
      --bg-main: #f8fafc;
      --bg-card: #ffffff;
      --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --radius-lg: 1.75rem;
      --radius-md: 1.25rem;
    }

    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.7;
      padding: 24px;
    }

    .container {
      max-width: 1200px;
    }

    /* Premium Header */
    .header {
      text-align: center;
      margin: 3rem 0;
      background: var(--bg-card);
      padding: 4.5rem 2.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(229, 231, 235, 1);
      position: relative;
      overflow: hidden;
    }

    .header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 6px;
      background: var(--primary-gradient);
    }

    .header h1 {
      font-size: 3.2rem;
      font-weight: 800;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 0.75rem;
      letter-spacing: -0.03em;
    }

    .header p {
      font-size: 1.2rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }

    /* Premium Services Grid */
    .services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 32px;
      margin-bottom: 4.5rem;
    }

    .box {
      background: var(--bg-card);
      padding: 45px 30px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(243, 244, 246, 1);
      text-align: center;
      position: relative;
    }

    .box:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-xl);
      border-color: rgba(99, 102, 241, 0.3);
    }

    .box::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      width: 0;
      height: 4px;
      background: var(--primary-gradient);
      transition: all 0.4s ease;
      border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .box:hover::after {
      width: 100%;
      left: 0;
    }

    .box h2 {
      font-size: 1.45rem;
      font-weight: 700;
      color: var(--primary-color);
      margin-bottom: 1.25rem;
      letter-spacing: -0.02em;
    }

    .box p {
      color: var(--text-muted);
      font-size: 0.95rem;
      margin-bottom: 0;
    }

    /* SEO Article Section */
    .seo-box {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      padding: 3rem;
      border: 1px solid rgba(243, 244, 246, 1);
      transition: all 0.3s ease;
    }

    .seo-box:hover {
      box-shadow: var(--shadow-lg);
    }

    .seo-img img {
      width: 100%;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      transition: transform 0.3s ease;
    }

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

    .cta-btn {
      background: var(--primary-gradient);
      color: #fff;
      border-radius: 50px;
      padding: 14px 38px;
      text-decoration: none;
      font-weight: 600;
      display: inline-block;
      box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cta-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
      color: #fff;
    }

    /* Pricing Section */
    .plans {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 36px;
      margin: 4rem 0;
    }

    .plan {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      padding: 45px 32px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(243, 244, 246, 1);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .plan:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
      border-color: rgba(14, 165, 233, 0.4);
    }

    .plan h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .plan .price {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 1.75rem;
      letter-spacing: -0.04em;
    }

    .plan ul {
      list-style: none;
      padding: 0;
      margin-bottom: 2.25rem;
      text-align: left;
    }

    .plan ul li {
      margin-bottom: 14px;
      color: var(--text-muted);
      font-size: 0.98rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .plan ul li::before {
      content: "→";
      color: var(--accent-color);
      font-weight: bold;
      font-size: 1.25rem;
    }

    .plan button {
      background: var(--primary-gradient);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 14px 32px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    }

    .plan button:hover {
      filter: brightness(1.1);
      box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
      transform: translateY(-1px);
    }

    /* Support Section */
    .support {
      background: var(--bg-card);
      padding: 55px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(243, 244, 246, 1);
      margin: 4rem 0;
      text-align: center;
    }

    .support h3 {
      color: var(--primary-color);
      font-weight: 800;
    }

    /* Enquiry Form Section */
    .enquiry-form {
      background: var(--bg-card);
      padding: 45px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      border: 1px solid rgba(243, 244, 246, 1);
      max-width: 680px;
      margin: 2.5rem auto 0;
    }

    .enquiry-form h2 {
      margin-bottom: 1.75rem;
      font-weight: 800;
      color: var(--text-main);
    }

    .enquiry-form input, 
    .enquiry-form select, 
    .enquiry-form textarea {
      width: 100%;
      padding: 16px 20px;
      margin-bottom: 18px;
      border: 1px solid #cbd5e1;
      border-radius: 1rem;
      background: #fafafa;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    .enquiry-form input:focus, 
    .enquiry-form select:focus, 
    .enquiry-form textarea:focus {
      outline: none;
      border-color: var(--primary-color);
      box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.15);
      background: #ffffff;
    }

    .enquiry-form button {
      width: 100%;
      padding: 18px;
      background: var(--primary-gradient);
      color: white;
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1.05rem;
      box-shadow: 0 6px 16px rgba(79, 70, 229, 0.3);
      transition: all 0.3s ease;
    }

    .enquiry-form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(79, 70, 229, 0.4);
    }

    /* Premium Footer */
    .footer {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 65px 50px 40px;
      margin-top: 5rem;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(229, 231, 235, 1);
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 50px;
      margin-bottom: 50px;
    }

    .footer-box h3, .footer-box h4 {
      font-size: 1.35rem;
      color: var(--text-main);
      margin-bottom: 24px;
      font-weight: 800;
    }

    .footer-box p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }

    .footer-box ul {
      list-style: none;
      padding-left: 0;
    }

    .footer-box ul li {
      margin-bottom: 12px;
    }

    .footer-box ul li a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.25s ease;
    }

    .footer-box ul li a:hover {
      color: var(--primary-color);
    }

    .social-icons {
      display: flex;
      gap: 14px;
    }

    .social-icons a {
      width: 44px;
      height: 44px;
      background-color: #f1f5f9;
      color: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .social-icons a:hover {
      background-color: var(--primary-color);
      color: #ffffff;
      transform: scale(1.1) rotate(6deg);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 35px;
      border-top: 1px solid #e2e8f0;
      color: var(--text-muted);
      font-size: 0.9rem;
    }

    /* Premium Pop-up Ad Overlay */
    .ad-popup-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(12px);
    }

    .ad-popup-overlay.show {
      opacity: 1;
      visibility: visible;
    }

    .ad-popup-content {
      background: #ffffff;
      width: 90%;
      max-width: 460px;
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
      position: relative;
      text-align: center;
      transform: scale(0.85);
      transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .ad-popup-overlay.show .ad-popup-content {
      transform: scale(1);
    }

    .ad-close-btn {
      position: absolute;
      top: 18px;
      right: 18px;
      background: rgba(255, 255, 255, 0.92);
      color: #0f172a;
      border: none;
      font-size: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.25s ease;
      z-index: 10;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .ad-close-btn:hover {
      background: #ffffff;
      transform: scale(1.15) rotate(90deg);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    }

    .ad-popup-image {
      width: 100%;
      height: auto;
      display: block;
      max-height: 250px;
      object-fit: cover;
    }

    .ad-popup-text {
      padding: 32px 28px 36px;
    }

    .ad-popup-text h3 {
      font-size: 1.45rem;
      font-weight: 800;
      margin-bottom: 10px;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .ad-popup-text p {
      color: #475569;
      font-size: 0.98rem;
      line-height: 1.6;
      margin-bottom: 24px;
    }

    .ad-popup-cta {
      display: inline-block;
      background: var(--primary-gradient);
      color: #ffffff !important;
      font-size: 1rem;
      font-weight: 700;
      text-decoration: none;
      padding: 14px 42px;
      border-radius: 50px;
      box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ad-popup-cta:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 12px 28px rgba(79, 70, 229, 0.45);
    }

    @media (max-width: 768px) {
      .header h1 {
        font-size: 2.25rem;
      }
      .plans {
        grid-template-columns: 1fr;
      }
      body {
        padding: 12px;
      }
      .header {
        padding: 2.5rem 1.5rem;
      }
      .box {
        padding: 35px 20px;
      }
      .seo-box {
        padding: 1.5rem !important;
      }
    }
    
    
    
    /*new design*/
           :root {
            --nws-blue: #0066FF;
            --nws-dark: #0b0d17;
            --nws-card: #161b22;
        }
    
        body {
            background-color: var(--nws-dark);
            color: #ffffff;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .service-header {
            padding: 80px 0 50px;
            text-align: center;
            background: linear-gradient(180deg, rgba(0,102,255,0.1) 0%, transparent 100%);
        }

        .category-title {
            color: var(--nws-blue);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 30px;
            border-bottom: 2px solid var(--nws-blue);
            display: inline-block;
            padding-bottom: 5px;
        }

        .service-card {
            background-color: var(--nws-card);
            border: 1px solid rgba(255,255,255,0.05);
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--nws-blue);
            box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--nws-blue), #00F0FF);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .service-list {
            list-style: none;
            padding: 0;
            color: #a0a0a0;
            font-size: 0.95rem;
        }

        .service-list li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }

        .service-list li i {
            color: var(--nws-blue);
            margin-right: 10px;
            font-size: 0.8rem;
        }

        .price-badge {
            background: rgba(0, 102, 255, 0.1);
            color: var(--nws-blue);
            padding: 5px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }
        
        
  /*ai chat css code*/
  
        :root {
            --nws-orange: #FF6600; /* NWS Orange Style */
            --nws-blue: #0066FF;   /* NWS Blue Style */
            --whatsapp-green: #25D366;
            --white: #ffffff;
        }

        /* Container for Floating Buttons */
        .nws-floating-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 9999;
        }

        /* Base Styling for Buttons */
        .float-btn {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            position: relative;
            transition: transform 0.3s ease;
        }

        .float-btn:hover {
            transform: scale(1.1) rotate(5deg);
            color: var(--white);
        }

        /* AI Chat Button Styling (Orange) */
        .ai-chat-btn {
            background: linear-gradient(135deg, var(--nws-orange), #ff9933);
            border: 2px solid rgba(255,255,255,0.2);
        }

        /* WhatsApp Button Styling (Blue/Green Mix) */
        .wa-leads-btn {
            background: linear-gradient(135deg, var(--nws-blue), #00d2ff);
            border: 2px solid rgba(255,255,255,0.2);
        }

        /* Glow & Pulse Animation Effect */
        .pulse-effect::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: inherit;
            opacity: 0.6;
            z-index: -1;
            animation: nwsPulse 2s infinite;
        }

        @keyframes nwsPulse {
            0% { transform: scale(1); opacity: 0.6; }
            100% { transform: scale(1.8); opacity: 0; }
        }

        /* Tooltip Text */
        .float-btn .tooltip-text {
            position: absolute;
            right: 80px;
            background: rgba(0,0,0,0.8);
            color: #fff;
            padding: 8px 15px;
            border-radius: 8px;
            font-size: 14px;
            font-family: sans-serif;
            white-space: nowrap;
            visibility: hidden;
            opacity: 0;
            transition: 0.3s;
        }

        .float-btn:hover .tooltip-text {
            visibility: visible;
            opacity: 1;
            right: 75px;
        }

        /* Label for Lead Button */
        .lead-badge {
            position: absolute;
            top: -5px;
            left: -10px;
            background: red;
            color: white;
            font-size: 10px;
            padding: 2px 8px;
            border-radius: 10px;
            font-weight: bold;
            text-transform: uppercase;
        }
        
        /*header video auto play*/
        
        
        
        
       /*  :root {
           * --nws-blue: #0066FF;
           * --nws-orange: #FF6600;
           * --dark-overlay: rgba(11, 12, 16, 0.7);
        }*/

        body {
            background-color:sky-blue;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            overflow-x: hidden;
        }

        /* --- Hostinger Style Navbar --- */
        .navbar {
            transition: 0.4s;
            padding: 20px 0;
            background: transparent;
        }
        .navbar.scrolled {
            background: rgba(5, 7, 10, 0.98);
            backdrop-filter: blur(15px);
            padding: 12px 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .navbar-brand img {
            height: 55px; /* NWS Logo Size */
            filter: drop-shadow(0 0 5px rgba(0, 102, 255, 0.3));
        }

        /* --- Auto-Play Video Hero --- */
        .hero-section {
            position: relative;
            height: 100vh;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        #hero-video {
            position: absolute;
            top: 50%; left: 50%;
            min-width: 100%; min-height: 100%;
            width: auto; height: auto;
            transform: translate(-50%, -50%);
            z-index: -2;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            background: var(--dark-overlay);
            z-index: -1;
        }

        .hero-content h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 4rem;
            line-height: 1.1;
        }

        /* --- UI Components --- */
        .btn-orange {
            background: var(--nws-orange);
            color: white;
            padding: 16px 45px;
            font-weight: 800;
            border-radius: 8px;
            border: none;
            transition: 0.3s;
            text-decoration: none;
            display: inline-block;
        }
        .btn-orange:hover {
            background: #e65c00;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 102, 0, 0.4);
            color: white;
        }

        .trust-link {
            display: block;
            margin-top: 20px;
            color: #a0a0a0;
            text-decoration: none;
            font-size: 0.95rem;
        }
        .trust-link:hover { color: #fff; }

        @media (max-width: 768px) {
            .hero-content h1 { font-size: 2.5rem; }
            .navbar-brand img { height: 45px; }
        }
        
        .mp-4{
            colour: yellow;
            
            
        }
        
    
    
    
    

  </style>
  
  <!-- Bootstrap & Font Awesome -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">

<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,400;14..32,500;14..32,600;14..32,700;14..32,800&display=swap" rel="stylesheet">

<style>
/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #050816;
  color: #fff;
  overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
  background: rgba(5, 8, 22, 0.92);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.navbar-brand {
  color: #fff !important;
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.navbar .nav-link {
  color: #d7d7d7 !important;
  font-weight: 600;
  font-size: 15px;
  margin: 0 8px;
  transition: 0.3s;
}
.navbar .nav-link:hover {
  color: #2563eb !important;
}
.navbar-toggler {
  border-color: rgba(255,255,255,0.1);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ===== HERO HEADER WITH VIDEO ===== */
.hero-header {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 76px;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay for better readability */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(5, 8, 22, 0.85) 0%, rgba(5, 8, 22, 0.4) 50%, rgba(5, 8, 22, 0.85) 100%);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #60a5fa;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  animation: pulse 2s ease-in-out infinite;
}
.hero-badge i {
  margin-right: 8px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.hero-content h1 {
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-content h1 span {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 20px;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 35px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}
.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.4s;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn-outline-custom:hover {
  background: rgba(255,255,255,0.08);
  border-color: #2563eb;
  transform: translateY(-3px);
  color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-indicator i {
  font-size: 24px;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}
.section-title h2 span {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-title p {
  font-size: 18px;
  color: #94a3b8;
  max-width: 600px;
  margin: auto;
}

.service-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 35px 30px;
  text-align: center;
  transition: 0.4s;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.05);
}
.service-card .icon {
  font-size: 48px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  display: inline-block;
}
.service-card h4 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}
.service-card p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
}
.service-card .learn-more {
  display: inline-block;
  margin-top: 15px;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.service-card .learn-more:hover {
  color: #2563eb;
  transform: translateX(5px);
}

/* ===== STATS ===== */
.stats-section {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0;
}
.stat-item {
  text-align: center;
}
.stat-item .number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-item .label {
  color: #94a3b8;
  font-size: 16px;
  margin-top: 5px;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
}
.testimonial-card .stars {
  color: #f59e0b;
  margin-bottom: 15px;
}
.testimonial-card p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.8;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}
.testimonial-card .author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-card .author .name {
  color: #fff;
  font-weight: 600;
}
.testimonial-card .author .role {
  color: #94a3b8;
  font-size: 14px;
}

/* ===== FOOTER ===== */
footer {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 50px 0 30px;
}
footer h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
footer p, footer a {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
}
footer a:hover {
  color: #2563eb;
}
footer .social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #94a3b8;
  font-size: 18px;
  transition: 0.3s;
}
footer .social-links a:hover {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  transform: translateY(-3px);
}
footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 30px;
  color: #64748b;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 42px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .hero-header {
    height: 90vh;
    min-height: 500px;
  }
  .section-title h2 {
    font-size: 36px;
  }
  .stat-item .number {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }
  .hero-content p {
    font-size: 16px;
  }
  .hero-header {
    height: 80vh;
    min-height: 450px;
    margin-top: 60px;
  }
  .btn-primary-custom, .btn-outline-custom {
    padding: 14px 28px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
  }
  .service-card {
    padding: 25px 20px;
  }
  .stat-item .number {
    font-size: 30px;
  }
  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 26px;
  }
  .hero-content p {
    font-size: 15px;
  }
  .hero-header {
    height: 70vh;
    min-height: 400px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 16px;
  }
  .btn-primary-custom, .btn-outline-custom {
    padding: 12px 20px;
    font-size: 14px;
  }
  .section-title h2 {
    font-size: 24px;
  }
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-buttons a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: 0.3s;
}
.floating-buttons a:hover {
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-btn { background: #25D366; }
.jobs-btn { background: linear-gradient(135deg, #2563eb, #7c3aed); }
































/* ===== GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: #050816;
  color: #fff;
  padding: 40px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===== MAIN TITLE ===== */
.main-title {
  text-align: center;
  margin-bottom: 50px;
}
.main-title h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.main-title h1 span {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-title p {
  color: #94a3b8;
  font-size: 18px;
  margin-top: 12px;
}

/* ===== KEYWORD SECTION WRAPPER ===== */
.keyword-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ===== 1. DOMAIN & HOSTING DIV ===== */
.keyword-div-1 {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(37, 99, 235, 0.02));
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 20px;
  padding: 30px 35px;
  transition: 0.4s;
}
.keyword-div-1:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.05);
  border-color: rgba(37, 99, 235, 0.3);
}
.keyword-div-1 .div-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.keyword-div-1 .div-header .icon {
  font-size: 32px;
  color: #2563eb;
}
.keyword-div-1 .div-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.keyword-div-1 .div-header .badge {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.keyword-div-1 .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.keyword-div-1 .keyword-tag {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.keyword-div-1 .keyword-tag:hover {
  background: rgba(37, 99, 235, 0.2);
  transform: scale(1.03);
  border-color: #2563eb;
}
.keyword-div-1 .keyword-tag i {
  color: #2563eb;
  font-size: 14px;
}

/* ===== 2. PLATFORM SELECTION DIV ===== */
.keyword-div-2 {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(124, 58, 237, 0.02));
  border: 1px solid rgba(124, 58, 237, 0.15);
  border-radius: 20px;
  padding: 30px 35px;
  transition: 0.4s;
}
.keyword-div-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.05);
  border-color: rgba(124, 58, 237, 0.3);
}
.keyword-div-2 .div-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.keyword-div-2 .div-header .icon {
  font-size: 32px;
  color: #7c3aed;
}
.keyword-div-2 .div-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.keyword-div-2 .div-header .badge {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.keyword-div-2 .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.keyword-div-2 .keyword-tag {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.keyword-div-2 .keyword-tag:hover {
  background: rgba(124, 58, 237, 0.2);
  transform: scale(1.03);
  border-color: #7c3aed;
}
.keyword-div-2 .keyword-tag i {
  color: #7c3aed;
  font-size: 14px;
}

/* ===== 3. MOBILE FRIENDLY DIV ===== */
.keyword-div-3 {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: 20px;
  padding: 30px 35px;
  transition: 0.4s;
}
.keyword-div-3:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.3);
}
.keyword-div-3 .div-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.keyword-div-3 .div-header .icon {
  font-size: 32px;
  color: #10b981;
}
.keyword-div-3 .div-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.keyword-div-3 .div-header .badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.keyword-div-3 .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.keyword-div-3 .keyword-tag {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.keyword-div-3 .keyword-tag:hover {
  background: rgba(16, 185, 129, 0.2);
  transform: scale(1.03);
  border-color: #10b981;
}
.keyword-div-3 .keyword-tag i {
  color: #10b981;
  font-size: 14px;
}

/* ===== 4. GOOGLE LINKING & SEO DIV ===== */
.keyword-div-4 {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.02));
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 20px;
  padding: 30px 35px;
  transition: 0.4s;
}
.keyword-div-4:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.05);
  border-color: rgba(245, 158, 11, 0.3);
}
.keyword-div-4 .div-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.keyword-div-4 .div-header .icon {
  font-size: 32px;
  color: #f59e0b;
}
.keyword-div-4 .div-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.keyword-div-4 .div-header .badge {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.keyword-div-4 .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.keyword-div-4 .keyword-tag {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.keyword-div-4 .keyword-tag:hover {
  background: rgba(245, 158, 11, 0.2);
  transform: scale(1.03);
  border-color: #f59e0b;
}
.keyword-div-4 .keyword-tag i {
  color: #f59e0b;
  font-size: 14px;
}

/* ===== 5. DIGITAL MARKETING DIV ===== */
.keyword-div-5 {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.08), rgba(236, 72, 153, 0.02));
  border: 1px solid rgba(236, 72, 153, 0.15);
  border-radius: 20px;
  padding: 30px 35px;
  transition: 0.4s;
}
.keyword-div-5:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(236, 72, 153, 0.05);
  border-color: rgba(236, 72, 153, 0.3);
}
.keyword-div-5 .div-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}
.keyword-div-5 .div-header .icon {
  font-size: 32px;
  color: #ec4899;
}
.keyword-div-5 .div-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.keyword-div-5 .div-header .badge {
  background: rgba(236, 72, 153, 0.15);
  color: #f472b6;
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
}
.keyword-div-5 .keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}
.keyword-div-5 .keyword-tag {
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.12);
  padding: 10px 22px;
  border-radius: 50px;
  color: #cbd5e1;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.keyword-div-5 .keyword-tag:hover {
  background: rgba(236, 72, 153, 0.2);
  transform: scale(1.03);
  border-color: #ec4899;
}
.keyword-div-5 .keyword-tag i {
  color: #ec4899;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body { padding: 20px 12px; }
  .main-title h1 { font-size: 32px; }
  .main-title p { font-size: 16px; }
  .keyword-div-1, .keyword-div-2, .keyword-div-3, .keyword-div-4, .keyword-div-5 {
    padding: 22px 20px;
  }
  .keyword-div-1 .div-header h2,
  .keyword-div-2 .div-header h2,
  .keyword-div-3 .div-header h2,
  .keyword-div-4 .div-header h2,
  .keyword-div-5 .div-header h2 {
    font-size: 20px;
  }
  .keyword-div-1 .keyword-tag,
  .keyword-div-2 .keyword-tag,
  .keyword-div-3 .keyword-tag,
  .keyword-div-4 .keyword-tag,
  .keyword-div-5 .keyword-tag {
    padding: 8px 16px;
    font-size: 13px;
  }
  .keyword-div-1 .div-header .badge,
  .keyword-div-2 .div-header .badge,
  .keyword-div-3 .div-header .badge,
  .keyword-div-4 .div-header .badge,
  .keyword-div-5 .div-header .badge {
    font-size: 10px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .main-title h1 { font-size: 26px; }
  .keyword-div-1, .keyword-div-2, .keyword-div-3, .keyword-div-4, .keyword-div-5 {
    padding: 18px 14px;
  }
  .keyword-div-1 .div-header h2,
  .keyword-div-2 .div-header h2,
  .keyword-div-3 .div-header h2,
  .keyword-div-4 .div-header h2,
  .keyword-div-5 .div-header h2 {
    font-size: 17px;
  }
  .keyword-div-1 .keyword-tag,
  .keyword-div-2 .keyword-tag,
  .keyword-div-3 .keyword-tag,
  .keyword-div-4 .keyword-tag,
  .keyword-div-5 .keyword-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  .keyword-div-1 .div-header .icon,
  .keyword-div-2 .div-header .icon,
  .keyword-div-3 .div-header .icon,
  .keyword-div-4 .div-header .icon,
  .keyword-div-5 .div-header .icon {
    font-size: 24px;
  }
}

/* ===== SEO DESCRIPTION DIV ===== */
.seo-description {
  margin-top: 40px;
  padding: 30px 35px;
  background: rgba(255,255,255,0.03);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}
.seo-description h3 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 15px;
}
.seo-description h3 span {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.seo-description p {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 12px;
}
.seo-description .highlight {
  color: #60a5fa;
  font-weight: 600;
}

/*vip div*/

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

body {
  /*font-family: 'Inter', sans-serif;*/
  /*background: #050816;*/
  /*padding: 50px 20px;*/
  /*min-height: 100vh;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}

/* ===== VIP SERVICES SECTION ===== */
.vip-services {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.vip-header {
  text-align: center;
  margin-bottom: 50px;
}
.vip-header .vip-badge {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.vip-header .vip-badge i {
  margin-right: 8px;
}
.vip-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.vip-header h2 span {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vip-header p {
  color: #94a3b8;
  font-size: 18px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== VIP GRID ===== */
.vip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* ===== VIP BOX ===== */
.vip-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 35px 28px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  cursor: default;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* VIP Glow Border Effect */
.vip-box::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.5s;
}

/* VIP Hover Effect */
.vip-box:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* VIP Glow on Hover - Different Colors */
.vip-box:hover::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 215, 0, 0.06), transparent 60%);
  animation: glowPulse 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

/* VIP Box - Different Colors */
.vip-box.box-1 { border-color: rgba(37, 99, 235, 0.2); }
.vip-box.box-1:hover { box-shadow: 0 30px 80px rgba(37, 99, 235, 0.12); }
.vip-box.box-1 .icon { color: #2563eb; }

.vip-box.box-2 { border-color: rgba(124, 58, 237, 0.2); }
.vip-box.box-2:hover { box-shadow: 0 30px 80px rgba(124, 58, 237, 0.12); }
.vip-box.box-2 .icon { color: #7c3aed; }

.vip-box.box-3 { border-color: rgba(16, 185, 129, 0.2); }
.vip-box.box-3:hover { box-shadow: 0 30px 80px rgba(16, 185, 129, 0.12); }
.vip-box.box-3 .icon { color: #10b981; }

.vip-box.box-4 { border-color: rgba(245, 158, 11, 0.2); }
.vip-box.box-4:hover { box-shadow: 0 30px 80px rgba(245, 158, 11, 0.12); }
.vip-box.box-4 .icon { color: #f59e0b; }

/* VIP Icon */
.vip-box .icon {
  font-size: 48px;
  margin-bottom: 18px;
  display: inline-block;
  transition: 0.4s;
}
.vip-box:hover .icon {
  transform: scale(1.1) rotate(-5deg);
}

/* VIP Number Badge */
.vip-box .vip-number {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  letter-spacing: 1px;
}

/* VIP Title */
.vip-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  transition: 0.3s;
}
.vip-box:hover h3 {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* VIP Description */
.vip-box p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

/* VIP Learn More Button */
.vip-box .vip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #60a5fa;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0;
  transform: translateY(10px);
}
.vip-box:hover .vip-link {
  opacity: 1;
  transform: translateY(0);
}
.vip-box .vip-link:hover {
  color: #fbbf24;
  gap: 14px;
}

/* VIP Crown Decoration */
.vip-box .crown {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: #fbbf24;
  opacity: 0;
  transition: 0.4s;
}
.vip-box:hover .crown {
  opacity: 1;
  top: -15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .vip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vip-header h2 {
    font-size: 36px;
  }
  .vip-box {
    min-height: 240px;
    padding: 28px 20px;
  }
  .vip-box h3 {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .vip-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vip-header h2 {
    font-size: 28px;
  }
  .vip-header p {
    font-size: 16px;
  }
  .vip-box {
    min-height: 200px;
    padding: 24px 18px;
  }
  .vip-box .icon {
    font-size: 36px;
  }
  .vip-box h3 {
    font-size: 18px;
  }
  .vip-box p {
    font-size: 14px;
  }
  .vip-box .vip-link {
    opacity: 1;
    transform: translateY(0);
    font-size: 13px;
  }
  .vip-box .crown {
    display: none;
  }
  .vip-box .vip-number {
    font-size: 10px;
    top: 10px;
    right: 12px;
  }
}

/* ===== ANIMATION ON LOAD ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vip-box {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}
.vip-box:nth-child(1) { animation-delay: 0.1s; }
.vip-box:nth-child(2) { animation-delay: 0.2s; }
.vip-box:nth-child(3) { animation-delay: 0.3s; }
.vip-box:nth-child(4) { animation-delay: 0.4s; }




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

body {
  /*font-family: 'Inter', sans-serif;*/
  background: #050816;
  /*padding: 50px 20px;*/
  /*min-height: 100vh;*/
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: center;*/
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Section Header */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}
.pricing-header .badge-premium {
  display: inline-block;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.pricing-header .badge-premium i {
  margin-right: 8px;
}
.pricing-header h2 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
}
.pricing-header h2 span {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-header p {
  color: #94a3b8;
  font-size: 18px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PLANS GRID ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

/* ===== PLAN CARD ===== */
.plan-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 35px 30px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
  overflow: hidden;
}

/* Glow Border */
.plan-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.5s;
}

/* Hover Effect */
.plan-card:hover {
  transform: translateY(-12px);
  border-color: transparent;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

/* Plan Colors */
.plan-card.basic { border-color: rgba(37, 99, 235, 0.2); }
.plan-card.basic:hover { box-shadow: 0 30px 80px rgba(37, 99, 235, 0.12); }
.plan-card.basic .plan-icon { color: #2563eb; }
.plan-card.basic .plan-btn { background: linear-gradient(135deg, #2563eb, #3b82f6); }

.plan-card.standard { border-color: rgba(124, 58, 237, 0.2); }
.plan-card.standard:hover { box-shadow: 0 30px 80px rgba(124, 58, 237, 0.12); }
.plan-card.standard .plan-icon { color: #7c3aed; }
.plan-card.standard .plan-btn { background: linear-gradient(135deg, #7c3aed, #8b5cf6); }

.plan-card.premium { border-color: rgba(245, 158, 11, 0.2); }
.plan-card.premium:hover { box-shadow: 0 30px 80px rgba(245, 158, 11, 0.12); }
.plan-card.premium .plan-icon { color: #f59e0b; }
.plan-card.premium .plan-btn { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #0f172a; }

/* Popular Badge */
.plan-card .popular-badge {
  position: absolute;
  top: -1px;
  right: 30px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.plan-card .popular-badge i {
  margin-right: 6px;
}

/* Plan Icon */
.plan-card .plan-icon {
  font-size: 42px;
  margin-bottom: 12px;
  display: inline-block;
  transition: 0.4s;
}
.plan-card:hover .plan-icon {
  transform: scale(1.1) rotate(-5deg);
}

/* Plan Title */
.plan-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

/* Price */
.plan-card .price {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px;
}
.plan-card .price span {
  font-size: 18px;
  font-weight: 600;
  color: #94a3b8;
}
.plan-card .price-sub {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 18px;
}

/* Features List */
.plan-card .features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  flex: 1;
}
.plan-card .features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cbd5e1;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: 0.3s;
}
.plan-card .features li:last-child {
  border-bottom: none;
}
.plan-card .features li i {
  color: #4ade80;
  font-size: 14px;
  min-width: 20px;
}
.plan-card:hover .features li {
  color: #fff;
}

/* Button */
.plan-card .plan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  border-radius: 60px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-decoration: none;
}
.plan-card .plan-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.plan-card .plan-btn:active {
  transform: scale(0.97);
}
.plan-card .plan-btn i {
  font-size: 18px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .pricing-header h2 {
    font-size: 36px;
  }
  .plan-card {
    min-height: 440px;
    padding: 28px 22px;
  }
  .plan-card .price {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pricing-header h2 {
    font-size: 30px;
  }
  .pricing-header p {
    font-size: 16px;
  }
  .plan-card {
    min-height: auto;
    padding: 24px 18px;
  }
  .plan-card .price {
    font-size: 34px;
  }
  .plan-card h3 {
    font-size: 20px;
  }
  .plan-card .features li {
    font-size: 14px;
    padding: 6px 0;
  }
  .plan-card .plan-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
  .plan-card .popular-badge {
    font-size: 10px;
    padding: 4px 14px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  body { padding: 30px 12px; }
  .pricing-header h2 {
    font-size: 24px;
  }
  .plan-card .price {
    font-size: 28px;
  }
  .plan-card .plan-icon {
    font-size: 32px;
  }
}

/* ===== ANIMATION ON LOAD ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.plan-card {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}
.plan-card.basic { animation-delay: 0.1s; }
.plan-card.standard { animation-delay: 0.2s; }
.plan-card.premium { animation-delay: 0.3s; }

/*blog css cod*/

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

body {
  font-family: 'Inter', sans-serif;
  background: #050816;
  padding: 50px 20px;
  min-height: 100vh;
}

/* ===== SEO SECTION ===== */
.seo-section {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== SEO BOX ===== */
.seo-box {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  padding: 50px 45px;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  margin-bottom: 30px;
}

/* Glow Effect */
.seo-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04), transparent 70%);
  pointer-events: none;
}

/* Glow Border */
.seo-box::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: 0.5s;
}

/* Hover Effect */
.seo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: transparent;
}
.seo-box:hover::after {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.3), rgba(124, 58, 237, 0.3));
}

/* Box 1 - Blue Theme */
.seo-box.box-1 {
  border-color: rgba(37, 99, 235, 0.15);
}
.seo-box.box-1 .seo-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
  border-color: rgba(37, 99, 235, 0.2);
  color: #2563eb;
}
.seo-box.box-1 .cta-btn {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}
.seo-box.box-1 .cta-btn:hover {
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.35);
}

/* Box 2 - Purple Theme */
.seo-box.box-2 {
  border-color: rgba(124, 58, 237, 0.15);
}
.seo-box.box-2 .seo-icon {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(124, 58, 237, 0.05));
  border-color: rgba(124, 58, 237, 0.2);
  color: #7c3aed;
}
.seo-box.box-2 .cta-btn {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6);
}
.seo-box.box-2 .cta-btn:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35);
}

/* ===== SEO ICON ===== */
.seo-box .seo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  font-size: 24px;
  border: 1px solid;
  margin-bottom: 18px;
  transition: 0.4s;
}
.seo-box:hover .seo-icon {
  transform: scale(1.05) rotate(-5deg);
}

/* ===== SEO IMAGE ===== */
.seo-box .seo-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.seo-box .seo-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  transition: 0.5s;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.seo-box:hover .seo-img img {
  transform: scale(1.02);
}

/* Image Badge */
.seo-box .seo-img .img-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.seo-box .seo-img .img-badge i {
  margin-right: 6px;
  color: #fbbf24;
}

/* ===== SEO CONTENT ===== */
.seo-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 18px;
}
.seo-box h2 .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-box h2 .highlight-blue {
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.seo-box h2 .highlight-purple {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.seo-box p {
  color: #94a3b8;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 16px;
}
.seo-box p strong {
  color: #e2e8f0;
  font-weight: 600;
}
.seo-box p:last-of-type {
  margin-bottom: 24px;
}

/* ===== CTA BUTTON ===== */
.seo-box .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 60px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.seo-box .cta-btn:hover {
  transform: translateX(6px);
  color: #fff;
}
.seo-box .cta-btn i {
  font-size: 18px;
  transition: 0.3s;
}
.seo-box .cta-btn:hover i {
  transform: translateX(4px);
}

/* ===== KEYWORD TAGS ===== */
.seo-box .keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.seo-box .keyword-tags span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 12px;
  color: #94a3b8;
  transition: 0.3s;
}
.seo-box .keyword-tags span:hover {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .seo-box {
    padding: 35px 28px;
  }
  .seo-box h2 {
    font-size: 28px;
  }
  .seo-box .seo-img img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .seo-box {
    padding: 28px 20px;
    border-radius: 24px;
  }
  .seo-box h2 {
    font-size: 24px;
  }
  .seo-box p {
    font-size: 15px;
  }
  .seo-box .seo-img img {
    height: 220px;
  }
  .seo-box .seo-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .seo-box .cta-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .seo-box .keyword-tags span {
    font-size: 11px;
    padding: 3px 10px;
  }
}

@media (max-width: 480px) {
  .seo-box {
    padding: 20px 15px;
    border-radius: 20px;
  }
  .seo-box h2 {
    font-size: 20px;
  }
  .seo-box p {
    font-size: 14px;
  }
  .seo-box .seo-img img {
    height: 180px;
  }
  .seo-box .seo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  .seo-box .cta-btn {
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .seo-box .keyword-tags {
    gap: 5px;
  }
  .seo-box .keyword-tags span {
    font-size: 10px;
    padding: 2px 8px;
  }
}

/* ===== ANIMATION ON LOAD ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.seo-box {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 0;
}
.seo-box.box-1 {
  animation-delay: 0.1s;
}
.seo-box.box-2 {
  animation-delay: 0.2s;
}

/* ===== FLOATING DECORATION ===== */
.seo-box .float-deco {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
  pointer-events: none;
}
.seo-box.box-1 .float-deco {
  background: #2563eb;
  top: -50px;
  right: -50px;
}
.seo-box.box-2 .float-deco {
  background: #7c3aed;
  bottom: -50px;
  left: -50px;
}

/*footer*/

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

body {
  font-family: 'Inter', sans-serif;
  background: #050816;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================
   PREMIUM FOOTER DESIGN
   ============================================ */
.footer {
  background: linear-gradient(180deg, #0a0e1a 0%, #050816 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 20px 0;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

/* Glow Effect Behind Footer */
.footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.04), transparent 70%);
  pointer-events: none;
}

/* Animated Gradient Line on Top */
.footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    #2563eb, 
    #7c3aed, 
    #f59e0b, 
    #2563eb, 
    transparent
  );
  background-size: 300% 100%;
  animation: gradientMove 4s ease-in-out infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===== FOOTER CONTAINER ===== */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}

/* ===== FOOTER BOX ===== */
.footer-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.footer-box h3 i {
  -webkit-text-fill-color: initial;
  color: #fbbf24;
  margin-right: 8px;
}

.footer-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.footer-box h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 10px;
}

.footer-box p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
  max-width: 350px;
}

/* ===== FOOTER LINKS ===== */
.footer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-box ul li {
  margin-bottom: 12px;
}

.footer-box ul li a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-box ul li a::before {
  content: '›';
  font-size: 18px;
  color: #2563eb;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #fff;
  transform: translateX(6px);
}

.footer-box ul li a:hover::before {
  color: #fbbf24;
  transform: translateX(4px);
}

/* ===== SOCIAL ICONS ===== */
.footer-box .social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-box .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #94a3b8;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Social Icon Hover Glow */
.footer-box .social-icons a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.footer-box .social-icons a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.footer-box .social-icons a:hover {
  color: #fff;
  transform: translateY(-4px) scale(1.05);
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.footer-box .social-icons a i {
  position: relative;
  z-index: 1;
}

/* Individual Social Colors on Hover */
.footer-box .social-icons a:hover .fa-facebook-f { color: #1877f2; }
.footer-box .social-icons a:hover .fa-instagram { color: #e4405f; }
.footer-box .social-icons a:hover .fa-twitter { color: #1da1f2; }
.footer-box .social-icons a:hover .fa-linkedin-in { color: #0a66c2; }

/* ===== FOOTER BOTTOM ===== */
.footer-bottom {
  text-align: center;
  padding: 25px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: #64748b;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.footer-bottom .heart {
  color: #ef4444;
  display: inline-block;
  animation: heartBeat 1.5s ease-in-out infinite;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.footer-bottom a {
  color: #60a5fa;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #fbbf24;
}

/* ===== FOOTER DECORATION DOTS ===== */
.footer .deco-dots {
  position: absolute;
  right: 40px;
  bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 8px);
  gap: 12px;
  opacity: 0.06;
  pointer-events: none;
}

.footer .deco-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .footer-box:first-child {
    grid-column: 1 / -1;
  }
  .footer-box p {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .footer {
    padding: 40px 16px 0;
  }
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
  }
  .footer-box:first-child {
    grid-column: 1;
  }
  .footer-box h3 {
    font-size: 24px;
  }
  .footer-box h4 {
    font-size: 16px;
  }
  .footer-box p {
    font-size: 15px;
  }
  .footer-box ul li a {
    font-size: 14px;
  }
  .footer-box .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .footer-bottom {
    font-size: 13px;
    padding: 20px 16px;
  }
  .footer .deco-dots {
    display: none;
  }
}

@media (max-width: 380px) {
  .footer-box .social-icons {
    gap: 8px;
  }
  .footer-box .social-icons a {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}



<!-- ===== CSS STYLES ===== -->

/* Contact Section */
#contact {
  padding: 80px 0;
  background: #050816;
}

.enquiry-form {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 30px;
  padding: 45px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.enquiry-form .section-title {
  text-align: center;
  margin-bottom: 35px;
}
.enquiry-form .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
}
.enquiry-form .section-title h2 span {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.enquiry-form .section-title p {
  color: #94a3b8;
  font-size: 17px;
  margin-top: 8px;
}

/* Form Grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group label i {
  color: #2563eb;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #64748b;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.05);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
}

.form-group select {
  color: #cbd5e1;
  cursor: pointer;
}
.form-group select option {
  background: #1a1a3e;
  color: #fff;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 32px;
  margin-top: 25px;
  border-radius: 60px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(37, 99, 235, 0.35);
}
.submit-btn:active {
  transform: scale(0.97);
}
.submit-btn i {
  font-size: 20px;
}

/* Response Message */
#responseMsg {
  color: #4ade80;
  font-size: 16px;
  font-weight: 600;
  padding: 12px;
  border-radius: 12px;
  display: none;
}
#responseMsg.error {
  color: #f87171;
  display: block;
}
#responseMsg.success {
  color: #4ade80;
  display: block;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.15);
}
#responseMsg.error {
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

/* Loading State */
.submit-btn.loading {
  opacity: 0.7;
  pointer-events: none;
}
.submit-btn.loading .btn-text {
  visibility: hidden;
}
.submit-btn.loading::after {
  content: '';
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.2);
  border-top: 3px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: absolute;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.submit-btn {
  position: relative;
}

/* Responsive */
@media (max-width: 768px) {
  .enquiry-form {
    padding: 30px 20px;
    margin: 0 10px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .form-group.full-width {
    grid-column: 1;
  }
  .enquiry-form .section-title h2 {
    font-size: 32px;
  }
  .submit-btn {
    font-size: 16px;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .enquiry-form {
    padding: 20px 15px;
  }
  .enquiry-form .section-title h2 {
    font-size: 26px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .submit-btn {
    font-size: 15px;
    padding: 12px 20px;
  }
}



/*popap box*/

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

/*body {*/
/*  font-family: 'Inter', sans-serif;*/
/*  background: #050816;*/
/*  min-height: 100vh;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  padding: 20px;*/
/*}*/

/* ============================================
   PREMIUM POPUP DESIGN
   ============================================ */

/* Overlay */
.ad-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 22, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: overlayFadeIn 0.5s ease;
  padding: 20px;
}

@keyframes overlayFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== POPUP CONTENT ===== */
.ad-popup-content {
  position: relative;
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  max-width: 750px;
  width: 100%;
  padding: 40px;
  box-shadow: 
    0 50px 150px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  animation: popupSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

/* Animated Glow Border */
.ad-popup-content::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  padding: 2px;
  background: linear-gradient(135deg, 
    rgba(37, 99, 235, 0.3), 
    rgba(124, 58, 237, 0.3), 
    rgba(245, 158, 11, 0.3),
    rgba(37, 99, 235, 0.3)
  );
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes popupSlideUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== CLOSE BUTTON ===== */
.ad-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 24px;
  font-weight: 300;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.ad-close-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
  transform: rotate(90deg);
}

.ad-close-btn:active {
  transform: rotate(90deg) scale(0.9);
}

/* ===== POPUP IMAGE ===== */
.ad-popup-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.ad-popup-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.ad-popup-image-wrapper:hover .ad-popup-image {
  transform: scale(1.03);
}

/* Image Badge */
.ad-popup-image-wrapper .image-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 600;
  color: #fbbf24;
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-popup-image-wrapper .image-badge i {
  font-size: 12px;
}

/* ===== POPUP TEXT ===== */
.ad-popup-text {
  text-align: center;
}

.ad-popup-text .offer-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.15);
  padding: 4px 18px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #fbbf24;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.ad-popup-text h3 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ad-popup-text h3 .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ad-popup-text .price-tag {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 58, 237, 0.15));
  padding: 4px 20px;
  border-radius: 30px;
  border: 1px solid rgba(37, 99, 235, 0.15);
  margin-bottom: 14px;
}

.ad-popup-text .price-tag span {
  color: #60a5fa;
}

.ad-popup-text p {
  color: #94a3b8;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CTA BUTTON ===== */
.ad-popup-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border-radius: 60px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

/* Button Shine Effect */
.ad-popup-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.ad-popup-cta:hover::before {
  left: 100%;
}

.ad-popup-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 45px rgba(37, 99, 235, 0.4);
  color: #fff;
}

.ad-popup-cta:active {
  transform: scale(0.97);
}

.ad-popup-cta i {
  font-size: 18px;
  transition: 0.3s;
}

.ad-popup-cta:hover i {
  transform: translateX(4px);
}

/* ===== FEATURES ROW ===== */
.ad-popup-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ad-popup-features span {
  color: #94a3b8;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ad-popup-features span i {
  color: #4ade80;
  font-size: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .ad-popup-content {
    padding: 28px 20px;
    border-radius: 24px;
    max-width: 95%;
  }
  
  .ad-popup-image {
    height: 200px;
  }
  
  .ad-popup-text h3 {
    font-size: 20px;
  }
  
  .ad-popup-text p {
    font-size: 14px;
  }
  
  .ad-popup-cta {
    padding: 14px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .ad-close-btn {
    width: 38px;
    height: 38px;
    font-size: 20px;
    top: 12px;
    right: 14px;
  }
  
  .ad-popup-features {
    gap: 8px 14px;
  }
  
  .ad-popup-features span {
    font-size: 12px;
  }
  
  .ad-popup-text .price-tag {
    font-size: 17px;
    padding: 3px 16px;
  }
}

@media (max-width: 480px) {
  .ad-popup-content {
    padding: 20px 14px;
    border-radius: 20px;
    max-width: 100%;
    margin: 10px;
  }
  
  .ad-popup-image {
    height: 160px;
  }
  
  .ad-popup-text h3 {
    font-size: 17px;
  }
  
  .ad-popup-text p {
    font-size: 13px;
  }
  
  .ad-popup-cta {
    padding: 12px 20px;
    font-size: 14px;
  }
  
  .ad-close-btn {
    width: 34px;
    height: 34px;
    font-size: 18px;
    top: 10px;
    right: 10px;
  }
  
  .ad-popup-features span {
    font-size: 11px;
  }
  
  .ad-popup-image-wrapper .image-badge {
    font-size: 9px;
    padding: 4px 12px;
    top: 10px;
    left: 10px;
  }
}

/* ===== POPUP OPEN/CLOSE ANIMATIONS ===== */
.ad-popup-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.ad-popup-overlay.hidden .ad-popup-content {
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

/* ===== SHOW POPUP AFTER DELAY ===== */
.ad-popup-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.ad-popup-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.ad-popup-overlay.show .ad-popup-content {
  animation: popupSlideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* ===== TRIGGER BUTTON ===== */
.popup-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.popup-trigger-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 45px rgba(37, 99, 235, 0.4);
}


