/* General Styles */
    body {
      font-family: 'Arial', sans-serif;
      line-height: 1.6;
      color: #333;
    }

    h1, h2, h3, h4, h5, h6 {
      font-weight: bold;
    }

    /* Navigation Bar */
    .navbar {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-brand {
      font-weight: bold;
      font-size: 1.5rem;
      color: #007bff !important;
    }

    .nav-link {
      font-weight: 500;
      color: #333 !important;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #007bff !important;
    }

    .dropdown-menu {
      border: none;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    header {
      background: linear-gradient(135deg, #007bff, #00bfff);
      color: #fff;
      padding: 150px 0;
      text-align: center;
    }

    header h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      animation: fadeInDown 1s ease;
    }

    header p {
      font-size: 1.25rem;
      margin-bottom: 30px;
      animation: fadeInUp 1s ease;
    }

    header .btn {
      font-size: 1.1rem;
      padding: 10px 30px;
      animation: fadeIn 1.5s ease;
    }

    /* Portfolio Section */
    #portfolio {
      padding: 100px 0;
      background: #f8f9fa;
    }

    #portfolio .card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #portfolio .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    #portfolio .card-img-top {
      height: 200px;
      object-fit: cover;
    }

    #portfolio .card-body {
      padding: 20px;
    }

    /* Packages Section */
    #packages {
      padding: 100px 0;
      background: #fff;
    }

    #packages .card {
      border: none;
      border-radius: 10px;
      background: #f8f9fa;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #packages .card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    #packages .card-body {
      padding: 30px;
    }

    /* About Me Section */
    #about {
      padding: 100px 0;
      background: linear-gradient(135deg, #007bff, #00bfff);
      color: #fff;
      text-align: center;
    }

    #about h2 {
      margin-bottom: 30px;
      animation: fadeInDown 1s ease;
    }

    #about p {
      font-size: 1.1rem;
      max-width: 800px;
      margin: 0 auto;
      animation: fadeInUp 1s ease;
    }

    /* Contact Section */
    #contact {
      padding: 100px 0;
      background: #f8f9fa;
    }

    #contact h2 {
      margin-bottom: 40px;
      animation: fadeInDown 1s ease;
    }

    #contact form {
      max-width: 600px;
      margin: 0 auto;
      animation: fadeInUp 1s ease;
    }

    #contact .form-control {
      border-radius: 10px;
      padding: 10px 15px;
      border: 1px solid #ddd;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    #contact .form-control:focus {
      border-color: #007bff;
      box-shadow: 0 0 10px rgba(0, 123, 255, 0.25);
    }

    #contact .btn {
      padding: 10px 30px;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background: #333;
      color: #fff;
      padding: 40px 0;
      text-align: center;
    }

    footer a {
      color: #007bff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: #00bfff;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @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);
      }
    }