/* ✅ Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    position: relative;
    overflow-x: hidden;
    background: linear-gradient(to right, #f5f7fa, #e3ecf7);
  }
  
  /* ✅ Blurred Background Image Overlay */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pic.jpg') center center / cover no-repeat fixed;
    filter: blur(0.2px);
    opacity: 0.5;
    z-index: -2;
  }
  
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
  }
  
  a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  
  /* ✅ Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
  }
  
  /* ✅ Header (Enhanced) */
  .header {
    background-color: #333a56;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }
  
  .header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo img {
    height: 42px;
    transition: transform 0.3s ease;
  }
  
  .logo img:hover {
    transform: scale(1.05);
  }
  
  /* ✅ Navbar */
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
  }
  
  .navbar ul li a {
    font-weight: 500;
    padding: 10px 15px;
    color: #fff;
    transition: color 0.3s ease;
  }
  
  .navbar ul li a:hover {
    color: #f0c040;
  }
  
  .navbar ul li a.active {
    font-weight: 600;
  }
  
  /* ✅ Section Title */
  .section-title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 50px;
    color: #222;
    position: relative;
  }
  
  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #f0c040;
    margin: 12px auto 0;
    border-radius: 2px;
  }
  
  /* ✅ Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
  }
  
  /* ✅ Service Card - Frosted Glass Style */
  .service-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 40px 25px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    color: #333;
    position: relative;
    overflow: hidden;
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
    color: #1e2a38;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.15), transparent 70%);
    transform: rotate(25deg);
    transition: all 0.5s;
    opacity: 0;
  }
  
  .service-card:hover::before {
    opacity: 1;
  }
  
  .service-card i {
    font-size: 2.6rem;
    margin-bottom: 18px;
    color: #f0c040;
  }
  
  .service-card span {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #444;
  }
  
  /* ✅ Responsive Design */
  @media (max-width: 1024px) {
    .container {
      padding: 30px 16px;
    }
  
    .section-title {
      font-size: 2.2rem;
    }
  
    .service-card {
      padding: 32px 20px;
    }
  }
  
  @media (max-width: 768px) {
    .header .container {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .navbar ul {
      flex-direction: column;
      width: 100%;
      gap: 10px;
      margin-top: 10px;
    }
  
    .navbar ul li a {
      padding: 12px 10px;
      font-size: 1rem;
    }
  
    .service-card {
      padding: 28px 16px;
    }
  
    .logo img {
      height: 34px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      padding: 20px 12px;
    }
  
    .section-title {
      font-size: 1.8rem;
    }
  
    .service-card {
      padding: 24px 14px;
    }
  
    .service-card i {
      font-size: 2rem;
    }
  
    .service-card span {
      font-size: 1rem;
    }
  
    .navbar ul {
      gap: 8px;
    }
  
    .navbar ul li a {
      padding: 10px 8px;
      font-size: 0.95rem;
    }
  }
  