
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
  }



  /* Navbar Base */
  .custom-navbar {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: all 0.3s ease;
    padding: 12px 0;
  }

  /* Brand */
  .navbar-brand {
    font-weight: 700;
    transition: color 0.3s ease;
  }
  .navbar-brand:hover {
    color: #0072ff !important;
  }

  /* Nav Links */
  .nav-link {
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    color: #333 !important;
    transition: color 0.3s ease;
  }
  .nav-link:hover {
    color: #0061ff !important;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #0061ff;
    transition: width 0.3s ease;
  }
  .nav-link:hover::after {
    width: 100%;
  }

  /* Active Link */
  .nav-link.active {
    color: #0061ff !important;
  }
  .nav-link.active::after {
    width: 100%;
  }

  /* CTA Button */
  .nav-btn {
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    background: linear-gradient(45deg, #0061ff, #60efff);
    border: none;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0,97,255,.3);
    transition: all 0.3s ease;
  }
  .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,97,255,.4);
  }

  /* Sticky Scroll Effect */
  .scrolled {
    background: rgba(255,255,255,0.95) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
  }



  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, #e3f2fd, #f5f9fc);
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.8rem;
    color: #002244;
    line-height: 1.3;
  }
  .hero p {
    font-size: 1.1rem;
    color: #555;
  }
  .hero img {
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform .3s;
  }
  .hero img:hover {
    transform: scale(1.03);
  }

  /* Buttons */
  .btn-primary {
    background: linear-gradient(45deg, #0061ff, #60efff);
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,97,255,.3);
    transition: all 0.3s ease;
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,97,255,.4);
  }
  .btn-outline-secondary {
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .btn-outline-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
  }

  /* Services */
  .services {
    padding: 80px 0;
    background: linear-gradient(135deg, #0061ff, #60efff);
    border-radius: 40px;
    margin: 50px auto;
  }
  .services h2 {
    font-weight: 700;
    margin-bottom: 50px;
    color: #fff;
  }
  .services i {
    transition: transform .3s;
  }
  .services i:hover {
    transform: scale(1.2);
  }

  /* Pricing */
  .pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,.1);
    transition: transform .3s, box-shadow .3s;
  }
  .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,.15);
  }
  .pricing-card h4 {
    color: #0061ff;
    font-weight: 700;
    margin: 15px 0;
  }
  .btn-glow {
    display: inline-block;
    background: linear-gradient(45deg, #00c6ff, #0072ff);
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 114, 255, .4);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  .btn-glow:hover {
    box-shadow: 0 8px 25px rgba(0, 114, 255, .6);
    transform: translateY(-3px);
  }

  /* Blog Cards */
  .card {
    border-radius: 20px !important;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
  }
  .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
  }
  .card img {
    object-fit: cover;
  }

  /* About Section */
  #about {
    background: #fdfdfd;
  }
  #about h2 {
    font-weight: 700;
    color: #002244;
  }

  /* Contact Section */
  #contact .form-control {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px;
  }
  #contact button {
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 600;
  }
  
    .pricing-section {
      background: #fff;
      padding: 70px 0;
    }

    .pricing-card {
      background: #fff;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 30px;
      transition: 0.4s ease;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
      backdrop-filter: blur(16px);
      color: #000;
      text-align: center;
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
      border: 1px solid #38bdf8;
    }

    .pricing-card h4 {
      font-size: 1.6rem;
      font-weight: 600;
    }

    .pricing-card h2 {
      font-size: 2.8rem;
      font-weight: 700;
      color: #000;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .pricing-card ul li {
      margin-bottom: 12px;
      font-size: 1rem;
    }

    .footer {
      background-color: #fff;
      padding: 20px 0;
      color: #000;
      text-align: center;
    }

