/* Google font (if installed locally, adjust path) */

* { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
  overflow-x: hidden;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(45deg, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Navbar styling */
.navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background-color: #111 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}





.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: #fff !important;
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(45deg, #0072ff, #00c6ff);
  border: none;
  color: #fff;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  transform: translateY(-2px);
  background: linear-gradient(45deg, #00c6ff, #0072ff);
}


  /* Navbar */
    .navbar {
      background: rgba(0, 0, 0, 0.8);
      transition: all 0.3s ease;
    }
    .navbar.scrolled {
      background: #000;
    }
    .navbar-brand img {
      height: 40px;
      width: auto;
      margin-right: 8px;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('https://images.unsplash.com/photo-1521790797524-b2497295b8a0?auto=format&fit=crop&w=1600&q=80')
                  center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
      animation: fadeInDown 1s ease-in-out;
    }

    .hero p {
      font-size: 1.2rem;
      margin-top: 1rem;
      animation: fadeInUp 1s ease-in-out;
    }

    .btn-main {
      background: #007bff;
      border: none;
      padding: 12px 30px;
      color: #fff;
      border-radius: 50px;
      transition: 0.3s;
    }

    .btn-main:hover {
      background: #0056b3;
    }

    section h2 {
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }
    section h2::after {
      content: '';
      position: absolute;
      width: 60%;
      height: 3px;
      background-color: #007bff;
      left: 20%;
      bottom: -10px;
      border-radius: 5px;
    }

    .service-card {
      background: #fff;
      border: none;
      border-radius: 15px;
      transition: all 0.4s;
      padding: 25px;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .testimonial {
      background-color: #f8f9fa;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: all 0.3s;
    }

    .testimonial:hover {
      transform: scale(1.03);
    }

    .contact input, .contact textarea {
      border-radius: 10px;
    }

 

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

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



